Loading...
Loading...
Git Commit Generator - Generate standardized commit messages following Conventional Commits specification
npx skill4agent add arcblock/agent-skills commit<type>(<scope>): <subject>
<body>
<footer>| Type | Description | Example |
|---|---|---|
| New feature | |
| Bug fix | |
| Documentation only | |
| Code style (formatting, semicolons, etc.) | |
| Code refactoring (no feature change) | |
| Performance improvement | |
| Add or modify tests | |
| Build process or auxiliary tools | |
| CI/CD configuration | |
| Build system changes | |
feat(agentloop): add verification skill
fix(auth): resolve token refresh issueagentloopblockletarcblock-contextblocklet-dev-setupblocklet-prfeat: add blocklet-branch skill for branch managementfix: resolve gh command order issuedocs: update installation guidefeat: Added new feature.Fix bugfeat: This commit adds a new feature that...Closes #123BREAKING CHANGE: descriptiongit status
git diff --staged
git diffChanges not staged for commitUntracked files{
"questions": [{
"question": "There are unstaged changes. How would you like to proceed?",
"header": "Unstaged",
"options": [
{"label": "Stage all", "description": "Run `git add .` to stage all changes"},
{"label": "Abort", "description": "Cancel the commit and handle changes manually"}
],
"multiSelect": false
}]
}git add .Proposed commit message:
<type>(<scope>): <subject>
<body if needed>
Co-Authored-By: Claude <noreply@anthropic.com>ApproveEdit messageCancel{
"questions": [{
"question": "Proceed with this commit message?",
"header": "Commit",
"options": [
{"label": "Approve", "description": "Create the commit with this message"},
{"label": "Edit message", "description": "Modify the commit message"},
{"label": "Cancel", "description": "Abort the commit"}
],
"multiSelect": false
}]
}git commit -m "$(cat <<'EOF'
<type>(<scope>): <subject>
<body if needed>
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"git log -1 --onelinefeat: parse blocklet urls from dev output instead of constructing from did
feat: add blocklet-branch skill for branch management
feat: enhance blocklet-server-dev-setup skill with GitHub CLI authentication guidance
feat(agentloop): add verification skill (#1)
fix: gh move top
docs: prefer git URL format for marketplace installation
chore: initial commit
chore: cleanup hello world plugin(#123)