docs(agents): create commit message style guide

This commit is contained in:
2026-02-18 13:11:25 -05:00
parent 542f97f865
commit f5f8cda9f6
2 changed files with 9 additions and 0 deletions

8
agents/COMMITS.md Normal file
View File

@@ -0,0 +1,8 @@
Commits
## Commit Message Format
Follow conventional commits style (all lowercase).
- `feat(scope): description` - New feature
- `fix(scope): description` - Bug fix
- `refactor(scope): description` - Code refactoring
- `docs(scope): description` - Documentation changes
- Example: `feat(zsh): update dotfiles` or `fix(scripts): use correct pass entry`