Loading...
Loading...
Use when the user wants to commit changes. Stages files, updates CHANGELOG.md, and creates a commit following project conventions.
npx skill4agent add rootspec/skills commitcommit-msgfeat:fix:scripts/setup.shgit statusgit diffCHANGELOG.mdfeat:fix:## [Unreleased]<type>(<optional scope>): <short description>
<optional body>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>| Type | When to use | Requires CHANGELOG? |
|---|---|---|
| New feature or user-visible change | Yes |
| Bug fix | Yes |
| Maintenance, deps, config, tooling | No |
| Documentation only | No |
| Formatting, whitespace | No |
| Tests only | No |
| CI/CD changes | No |
| Build system changes | No |
| Reverting a commit | No |
git add -Agit add .CHANGELOG.mdfeat:fix:git commit -m "$(cat <<'EOF'
feat: short description
Longer explanation if needed.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
EOF
)"git status