@@ -15,6 +15,8 @@ Read `AGENTS.md` (root + relevant module) before making changes.
1515| ` CHANGELOG.md ` | End users | Version history, breaking changes |
1616| ` docs/TESTING.md ` | Contributors / AI agents | Testing strategy, base classes, patterns, commands |
1717| ` docs/KOTLIN.md ` | Contributors / AI agents | Kotlin idioms, naming conventions, anti-patterns, KDoc |
18+ | ` docs/SPRING.md ` | Contributors / AI agents | Spring Boot patterns, DI, controllers, exception handling |
19+ | ` docs/JAVA.md ` | Contributors / AI agents | Java idioms, naming conventions, anti-patterns, Javadoc |
1820| ` AGENTS.md ` (root + modules) | AI agents | Architecture, conventions, guardrails |
1921| ` .github/CONTRIBUTING.md ` | Contributors | Dev setup, code reviews |
2022
@@ -26,6 +28,10 @@ Read `AGENTS.md` (root + relevant module) before making changes.
2628
2729** Architecture change** : relevant module's ` AGENTS.md ` , root ` AGENTS.md ` if cross-cutting, ` CHANGELOG.md ` .
2830
31+ ** Spring Boot pattern change** : ` docs/SPRING.md ` , ` server/AGENTS.md ` if the change affects how controllers/services/stores are structured.
32+
33+ ** Kotlin/Java style change** : ` docs/KOTLIN.md ` or ` docs/JAVA.md ` , root ` AGENTS.md ` DO/DON'T section if it introduces a new guardrail.
34+
2935## CHANGELOG Format
3036
3137Follow existing pattern: group under current version heading, clear user-facing language, note breaking changes, reference issues/PRs.
0 commit comments