Create a commit using chez_commit, which stages the specified files and commits them.
Usage
chez_commit <tag> <message> <file>...
Valid Tags (in order of preference)
- •feat - New feature, feature improvement, or feature removal
- •fix - User-facing bug fix (not linting errors unless they caught a real bug)
- •ref - Refactor/restructure production code without changing external behavior. IMPORTANT: Only use 'ref' when there are ZERO user-facing changes. If users would notice any difference in behavior, use 'feat' or 'fix' instead.
- •chore - Other changes (build scripts, CI/CD, deps, linting, formatting, documentation) not modifying production code
Instructions
- •Run
chez_commit <tag> "<message>" <file>... - •The specified files will be staged automatically
- •The message can contain newlines for multi-line commits
- •NEVER mention "Claude" or "Claude Code" in commit messages - write as if a human authored the commit
Example
chez_commit feat "Add user authentication
This adds login and logout functionality." src/auth.py src/login.py