Skills
Agent skills for Claude Code, OpenCode, and GitHub Copilot.
Skills are stored in .agents/skills/ and symlinked into .claude/skills/
for Claude Code compatibility.
/std-commit
Author a conventional commit for staged changes.
Invoke with /std-commit in your agent.
The skill:
- Checks
git stdis installed — offers to install via./bootstrapor the install script if not. - Runs
git std --contextto read project config, valid types, scopes, and the staged diff. - Proposes a
git std commit --type X [--scope Y] --message Zcommand. - For
featandfixcommits, asks for a related issue number and pre-fills it from the branch name when available (e.g.feat/123-my-feature→#123). - Requires your approval before running.
/std-bump
Orchestrate a version bump.
Invoke with /std-bump in your agent.
The skill:
- Checks
git stdis installed — offers to install if not. - Runs
git std --contextto assess stability, branch, and tag state. - Runs
git std bump --dry-runand shows the full plan. - Asks for confirmation, package selection (monorepo), and whether to push.
- Requires your approval before running.