Skip to content

Commit c8c070e

Browse files
committed
docs(AGENTS): update with instructions about conventional commit prefixes
1 parent 9fe0dd6 commit c8c070e

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

AGENTS.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,17 @@ cd ./.worktrees/<feature-name>/
3434
- Use `feature/<descriptive-name>` (not `feat/`)
3535
- Worktrees go in `./.worktrees/` directory
3636

37+
#### Commit Message Prefixes
38+
39+
Use [Conventional Commits](https://www.conventionalcommits.org/) format with **only** these prefixes:
40+
41+
- `feat` - New features or enhancements
42+
- `fix` - Bug fixes
43+
- `docs` - Documentation changes (including `site/` docs)
44+
- `chore` - Everything else (refactoring, dependencies, tooling, etc.)
45+
46+
**Do NOT use** `refactor`, `style`, `perf`, `test`, `ci`, or other prefixes. When in doubt, use `chore`.
47+
3748
### Code Style
3849

3950
#### Testing
@@ -124,7 +135,7 @@ class MyReporter implements Reporter {
124135
## Quality Standards
125136

126137
- All tests must pass: `npm test`
127-
- No linting errors: Check with `eslint`
138+
- No linting errors: Check with `npm run lint`
128139
- Linear git history (no merge commits)
129140
- Comprehensive test coverage for new features
130141
- Documentation updates for user-facing changes

0 commit comments

Comments
 (0)