From dev-workflow
Commit staged changes following Conventional Commits v1.0.0. Activate when user asks to commit, create a commit, or says /commit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-workflow:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Follow the [Conventional Commits v1.0.0](https://www.conventionalcommits.org/en/v1.0.0/) specification.
Follow the Conventional Commits v1.0.0 specification.
<type>[optional scope]: <description>
Single-line message only.
| Type | Meaning |
|---|---|
feat | New feature (MINOR in semver) |
fix | Bug fix (PATCH in semver) |
build | Build system or external dependencies |
chore | Other changes (no src/test modification) |
ci | CI configuration files/scripts |
docs | Documentation only |
perf | Performance improvement |
refactor | Code change that neither fixes a bug nor adds a feature |
revert | Reverts a previous commit |
style | Formatting, whitespace, semicolons (no code change) |
test | Adding or correcting tests |
bump | Version bump (include old → new version in description) |
Append ! before the colon to indicate a breaking change:
feat!: drop support for python 3.11
Optional. Describes the section of the codebase affected, in parentheses:
fix(payments): resolve decimal rounding
feat(auth): add oauth2 support
git diff --staged to analyze staged changesgit add path/to/file1 path/to/file2 && git commit -m "<scoped message>"
Co-Authored-By trailerAsk whether to push via AskUserQuestion. Preview = actual output of git log @{u}..HEAD --oneline. If no upstream, show only the new commit and note that push will require --set-upstream.
feat: add user authentication endpoint
fix(payments): resolve decimal rounding
refactor: extract validation logic into helpers
docs: update API changelog
test: add unit tests for order service
chore: update ruff config
feat!: drop support for python 3.11
bump: v0.4.0 → v0.5.0
bump(deps): upgrade pydantic to 2.10.0
build: migrate from pip to uv
ci: add staging deployment step
perf(queries): optimize merchant lookup query
style: fix indentation in config files
revert: undo migration changes from previous commit
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub alex-kopylov/zweihander --plugin dev-workflow