Skip to content

Commit f3c3566

Browse files
author
vp
committed
docs: add commit guidance section to AGENTS.md
1 parent 5069b75 commit f3c3566

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,31 @@ This document provides AI agents with concise, high-signal context about this re
4545

4646
This ensures all agents follow the same high-quality, tested patterns that the project relies on.
4747

48+
## Commit Guidance
49+
50+
- Use conventional commit format: type(scope): description
51+
- Use imperative mood: 'Add feature' not 'Added feature'
52+
- Keep subject line under 50 characters
53+
- Use types: feat, fix, docs, style, refactor, perf, test, chore, ci
54+
- Include scope when relevant (e.g., api, ui, auth, docs, frontend, backend, database, config)
55+
- Reference issue numbers with # prefix
56+
57+
When committing changes:
58+
59+
Commit messages should follow:
60+
61+
```text
62+
type: short description
63+
```
64+
65+
Examples
66+
67+
```text
68+
feat: implement task creation use case
69+
fix: correct repository filtering behavior
70+
test: add domain tests for task status transitions
71+
```
72+
4873
## Coding Standards
4974

5075
- Please follow the rules in [.editorconfig](.editorconfig).

0 commit comments

Comments
 (0)