| description | Create a git commit following project standards | |
|---|---|---|
| argument-hint |
|
- Never explicitly mention TDD in code, comments, commits, PRs, or issues
- Write natural, descriptive code without meta-commentary about the development process
- The code should speak for itself - TDD is the process, not the product
Beads is available for task tracking. Use mcp__beads__* tools to manage issues (the user interacts via bd commands).
NEVER create, read, or update plan.md files. Claude Code's internal planning files are disabled for this project. Use other methods to track implementation progress (e.g., comments, todo lists, or external tools).
Create a git commit following project standards
User arguments:
Commit: $ARGUMENTS
End of user arguments
Follows Conventional Commits standard.
-
Format:
type(#issue): description- Use
#123for local repo issues - Use
owner/repo#123for cross-repo issues - Common types:
feat,fix,docs,refactor,test,chore
- Use
-
AI Credits: NEVER include AI credits in commit messages
- No "Generated with Claude Code"
- No "Co-Authored-By: Claude" or "Co-Authored-By: Happy"
- Focus on the actual changes made, not conversation history
-
Content: Write clear, concise commit messages describing what changed and why
- Run
git statusandgit diffto review changes - Run
git log --oneline -5to see recent commit style - Stage relevant files with
git add - Create commit with descriptive message
- Verify with
git status
git add <files>
git commit -m "feat(#123): add validation to user input form"