agile-context-engineering 0.3.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/.claude-plugin/marketplace.json +18 -0
  2. package/.claude-plugin/plugin.json +10 -0
  3. package/CHANGELOG.md +7 -1
  4. package/LICENSE +51 -51
  5. package/README.md +330 -318
  6. package/agents/ace-code-discovery-analyst.md +245 -245
  7. package/agents/ace-code-integration-analyst.md +248 -248
  8. package/agents/ace-code-reviewer.md +375 -375
  9. package/agents/ace-product-owner.md +365 -361
  10. package/agents/ace-project-researcher.md +606 -606
  11. package/agents/ace-research-synthesizer.md +228 -228
  12. package/agents/ace-technical-application-architect.md +315 -315
  13. package/agents/ace-wiki-mapper.md +449 -445
  14. package/bin/install.js +605 -195
  15. package/hooks/ace-check-update.js +71 -62
  16. package/hooks/ace-statusline.js +107 -89
  17. package/hooks/hooks.json +14 -0
  18. package/package.json +7 -5
  19. package/shared/lib/ace-core.js +361 -0
  20. package/shared/lib/ace-core.test.js +308 -0
  21. package/shared/lib/ace-github.js +753 -0
  22. package/shared/lib/ace-story.js +400 -0
  23. package/shared/lib/ace-story.test.js +250 -0
  24. package/{agile-context-engineering → shared}/utils/questioning.xml +110 -110
  25. package/{agile-context-engineering → shared}/utils/ui-formatting.md +299 -299
  26. package/{commands/ace/execute-story.md → skills/execute-story/SKILL.md} +116 -138
  27. package/skills/execute-story/script.js +291 -0
  28. package/skills/execute-story/script.test.js +261 -0
  29. package/{agile-context-engineering/templates/product/story.xml → skills/execute-story/story-template.xml} +451 -451
  30. package/skills/execute-story/walkthrough-template.xml +255 -0
  31. package/{agile-context-engineering/workflows/execute-story.xml → skills/execute-story/workflow.xml} +1221 -1219
  32. package/skills/help/SKILL.md +71 -0
  33. package/skills/help/script.js +315 -0
  34. package/skills/help/script.test.js +183 -0
  35. package/{agile-context-engineering/workflows/help.xml → skills/help/workflow.xml} +544 -533
  36. package/{commands/ace/init-coding-standards.md → skills/init-coding-standards/SKILL.md} +91 -83
  37. package/{agile-context-engineering/templates/wiki/coding-standards.xml → skills/init-coding-standards/coding-standards-template.xml} +531 -531
  38. package/skills/init-coding-standards/script.js +50 -0
  39. package/skills/init-coding-standards/script.test.js +70 -0
  40. package/{agile-context-engineering/workflows/init-coding-standards.xml → skills/init-coding-standards/workflow.xml} +381 -386
  41. package/skills/map-cross-cutting/SKILL.md +126 -0
  42. package/{agile-context-engineering/templates/wiki → skills/map-cross-cutting}/system-cross-cutting.xml +197 -197
  43. package/skills/map-cross-cutting/workflow.xml +330 -0
  44. package/skills/map-guide/SKILL.md +126 -0
  45. package/{agile-context-engineering/templates/wiki → skills/map-guide}/guide.xml +137 -137
  46. package/skills/map-guide/workflow.xml +320 -0
  47. package/skills/map-pattern/SKILL.md +125 -0
  48. package/{agile-context-engineering/templates/wiki → skills/map-pattern}/pattern.xml +159 -159
  49. package/skills/map-pattern/workflow.xml +331 -0
  50. package/{commands/ace/map-story.md → skills/map-story/SKILL.md} +180 -165
  51. package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/decizions.xml +115 -115
  52. package/skills/map-story/templates/guide.xml +137 -0
  53. package/skills/map-story/templates/pattern.xml +159 -0
  54. package/skills/map-story/templates/system-cross-cutting.xml +197 -0
  55. package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/system.xml +381 -381
  56. package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/tech-debt-index.xml +125 -125
  57. package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/walkthrough.xml +255 -255
  58. package/{agile-context-engineering/workflows/map-story.xml → skills/map-story/workflow.xml} +1046 -1046
  59. package/{commands/ace/map-subsystem.md → skills/map-subsystem/SKILL.md} +155 -140
  60. package/skills/map-subsystem/script.js +51 -0
  61. package/skills/map-subsystem/script.test.js +68 -0
  62. package/skills/map-subsystem/templates/decizions.xml +115 -0
  63. package/skills/map-subsystem/templates/guide.xml +137 -0
  64. package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/module-discovery.xml +174 -174
  65. package/skills/map-subsystem/templates/pattern.xml +159 -0
  66. package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-architecture.xml +343 -343
  67. package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-structure.xml +234 -234
  68. package/skills/map-subsystem/templates/system-cross-cutting.xml +197 -0
  69. package/skills/map-subsystem/templates/system.xml +381 -0
  70. package/skills/map-subsystem/templates/walkthrough.xml +255 -0
  71. package/{agile-context-engineering/workflows/map-subsystem.xml → skills/map-subsystem/workflow.xml} +1173 -1178
  72. package/skills/map-sys-doc/SKILL.md +125 -0
  73. package/skills/map-sys-doc/system.xml +381 -0
  74. package/skills/map-sys-doc/workflow.xml +336 -0
  75. package/{commands/ace/map-system.md → skills/map-system/SKILL.md} +103 -92
  76. package/skills/map-system/script.js +75 -0
  77. package/skills/map-system/script.test.js +73 -0
  78. package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-architecture.xml +254 -254
  79. package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-structure.xml +177 -177
  80. package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/testing-framework.xml +283 -283
  81. package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/wiki-readme.xml +296 -296
  82. package/{agile-context-engineering/workflows/map-system.xml → skills/map-system/workflow.xml} +667 -672
  83. package/{commands/ace/map-walkthrough.md → skills/map-walkthrough/SKILL.md} +140 -127
  84. package/skills/map-walkthrough/walkthrough.xml +255 -0
  85. package/{agile-context-engineering/workflows/map-walkthrough.xml → skills/map-walkthrough/workflow.xml} +457 -457
  86. package/{commands/ace/plan-backlog.md → skills/plan-backlog/SKILL.md} +93 -83
  87. package/{agile-context-engineering/templates/product/product-backlog.xml → skills/plan-backlog/product-backlog-template.xml} +231 -231
  88. package/skills/plan-backlog/script.js +121 -0
  89. package/skills/plan-backlog/script.test.js +83 -0
  90. package/{agile-context-engineering/workflows/plan-backlog.xml → skills/plan-backlog/workflow.xml} +1348 -1356
  91. package/{commands/ace/plan-feature.md → skills/plan-feature/SKILL.md} +99 -89
  92. package/{agile-context-engineering/templates/product/feature.xml → skills/plan-feature/feature-template.xml} +361 -361
  93. package/skills/plan-feature/script.js +131 -0
  94. package/skills/plan-feature/script.test.js +80 -0
  95. package/{agile-context-engineering/workflows/plan-feature.xml → skills/plan-feature/workflow.xml} +1487 -1495
  96. package/{commands/ace/plan-product-vision.md → skills/plan-product-vision/SKILL.md} +91 -81
  97. package/{agile-context-engineering/templates/product/product-vision.xml → skills/plan-product-vision/product-vision-template.xml} +227 -227
  98. package/skills/plan-product-vision/script.js +51 -0
  99. package/skills/plan-product-vision/script.test.js +69 -0
  100. package/{agile-context-engineering/workflows/plan-product-vision.xml → skills/plan-product-vision/workflow.xml} +337 -342
  101. package/{commands/ace/plan-story.md → skills/plan-story/SKILL.md} +139 -159
  102. package/skills/plan-story/script.js +295 -0
  103. package/skills/plan-story/script.test.js +240 -0
  104. package/skills/plan-story/story-template.xml +458 -0
  105. package/{agile-context-engineering/workflows/plan-story.xml → skills/plan-story/workflow.xml} +1301 -944
  106. package/{commands/ace/research-external-solution.md → skills/research-external-solution/SKILL.md} +120 -138
  107. package/{agile-context-engineering/templates/product/external-solution.xml → skills/research-external-solution/external-solution-template.xml} +832 -832
  108. package/skills/research-external-solution/script.js +229 -0
  109. package/skills/research-external-solution/script.test.js +134 -0
  110. package/{agile-context-engineering/workflows/research-external-solution.xml → skills/research-external-solution/workflow.xml} +657 -659
  111. package/{commands/ace/research-integration-solution.md → skills/research-integration-solution/SKILL.md} +121 -135
  112. package/{agile-context-engineering/templates/product/story-integration-solution.xml → skills/research-integration-solution/integration-solution-template.xml} +1015 -1015
  113. package/skills/research-integration-solution/script.js +223 -0
  114. package/skills/research-integration-solution/script.test.js +134 -0
  115. package/{agile-context-engineering/workflows/research-integration-solution.xml → skills/research-integration-solution/workflow.xml} +711 -713
  116. package/{commands/ace/research-story-wiki.md → skills/research-story-wiki/SKILL.md} +101 -116
  117. package/skills/research-story-wiki/script.js +223 -0
  118. package/skills/research-story-wiki/script.test.js +138 -0
  119. package/{agile-context-engineering/templates/product/story-wiki.xml → skills/research-story-wiki/story-wiki-template.xml} +194 -194
  120. package/{agile-context-engineering/workflows/research-story-wiki.xml → skills/research-story-wiki/workflow.xml} +473 -475
  121. package/{commands/ace/research-technical-solution.md → skills/research-technical-solution/SKILL.md} +131 -147
  122. package/skills/research-technical-solution/script.js +223 -0
  123. package/skills/research-technical-solution/script.test.js +134 -0
  124. package/{agile-context-engineering/templates/product/story-technical-solution.xml → skills/research-technical-solution/technical-solution-template.xml} +1025 -1025
  125. package/{agile-context-engineering/workflows/research-technical-solution.xml → skills/research-technical-solution/workflow.xml} +761 -763
  126. package/{commands/ace/review-story.md → skills/review-story/SKILL.md} +99 -109
  127. package/skills/review-story/script.js +249 -0
  128. package/skills/review-story/script.test.js +169 -0
  129. package/skills/review-story/story-template.xml +451 -0
  130. package/{agile-context-engineering/workflows/review-story.xml → skills/review-story/workflow.xml} +279 -281
  131. package/{commands/ace/update.md → skills/update/SKILL.md} +65 -56
  132. package/{agile-context-engineering/workflows/update.xml → skills/update/workflow.xml} +33 -18
  133. package/agile-context-engineering/src/ace-tools.js +0 -2881
  134. package/agile-context-engineering/src/ace-tools.test.js +0 -1089
  135. package/agile-context-engineering/templates/_command.md +0 -54
  136. package/agile-context-engineering/templates/_workflow.xml +0 -17
  137. package/agile-context-engineering/templates/config.json +0 -0
  138. package/agile-context-engineering/templates/product/integration-solution.xml +0 -0
  139. package/commands/ace/help.md +0 -93
@@ -0,0 +1,125 @@
1
+ ---
2
+ name: map-sys-doc
3
+ description: Create or update a system document in .docs/wiki/subsystems/[name]/systems/ — describes WHAT exists, HOW it works, WHERE things live
4
+ argument-hint: "text='Drawing system - manages all drawing tools on chart' subsystem='qarc-charts-v2' commits=3"
5
+ disable-model-invocation: false
6
+ allowed-tools:
7
+ - Read
8
+ - Bash
9
+ - Glob
10
+ - Grep
11
+ - Write
12
+ - Edit
13
+ - AskUserQuestion
14
+ model: opus
15
+ effort: max
16
+ context: fork
17
+ agent: ace-wiki-mapper
18
+ ---
19
+
20
+ ## Supporting Resources (auto-loaded)
21
+
22
+ !`cat "${CLAUDE_SKILL_DIR}/workflow.xml"`
23
+
24
+ !`cat "${CLAUDE_SKILL_DIR}/system.xml"`
25
+
26
+ !`cat "${CLAUDE_SKILL_DIR}/../../shared/utils/questioning.xml"`
27
+
28
+ !`cat "${CLAUDE_SKILL_DIR}/../../shared/utils/ui-formatting.md"`
29
+
30
+ ```xml
31
+ <command>
32
+
33
+ <execution-time>
34
+ <runs-after>
35
+ <trigger>When a coherent domain system needs dedicated documentation</trigger>
36
+ <trigger>After implementing a new system or significantly changing an existing one</trigger>
37
+ <trigger>When an AI agent needs a reference doc for a domain system before implementing stories</trigger>
38
+ </runs-after>
39
+ <use-when>
40
+ <condition>A logical grouping of components delivers one domain capability</condition>
41
+ <condition>The system spans multiple files with entry points, data flow, and state</condition>
42
+ <condition>A system doc would benefit from dedicated focused analysis outside map-story</condition>
43
+ </use-when>
44
+ </execution-time>
45
+
46
+ <input>
47
+ <flags>
48
+ </flags>
49
+
50
+ <parameters>
51
+ <required>
52
+ <param name="text" type="text">
53
+ Natural language description of the system to document. Describes WHAT
54
+ the system does, its domain concern, and key components.
55
+
56
+ E.g.:
57
+ - "Drawing system - manages all drawing tools on the chart"
58
+ - "User authentication and authorization system"
59
+ - "Order processing pipeline from cart to confirmation"
60
+
61
+ If not provided, pause and ask the user.
62
+ </param>
63
+ <param name="subsystem" type="path | text">
64
+ Subsystem where this system doc belongs.
65
+ Wiki location: `.docs/wiki/subsystems/[subsystem]/systems/`.
66
+ If not provided, pause and ask the user.
67
+ </param>
68
+ </required>
69
+
70
+ <optional>
71
+ <param name="story-context" type="path | GitHub issue">
72
+ Path to story artifacts folder (in `.ace/artifacts/`) OR GitHub issue
73
+ number/URL. Provides intent context for WHY the system was built/changed.
74
+ When not provided, the agent relies solely on code analysis.
75
+ </param>
76
+ <param name="commits" type="number | comma-separated commit SHAs">
77
+ Specifies which commits to analyze for understanding what was built/changed.
78
+ As a number: analyze the N most recent commits (e.g., commits=3).
79
+ As commit SHAs: analyze specific commits (e.g., commits='abc123,def456').
80
+ When not provided: search the codebase directly using the text description.
81
+ </param>
82
+ </optional>
83
+ </parameters>
84
+ </input>
85
+
86
+ <execution-context>
87
+ <!-- All supporting files are auto-loaded in the Supporting Resources section above.
88
+ The model does NOT need to Read these files — they are already in context. -->
89
+ </execution-context>
90
+
91
+ <output>
92
+ <objective>
93
+ Create or update a system document that describes a coherent domain system —
94
+ WHAT exists, HOW it works, WHERE things live. Includes file tree, system boundary
95
+ diagram, class hierarchy, entry points, data flow sequence diagrams (mandatory),
96
+ components, key behaviors, state management, error propagation, and constants/enums.
97
+
98
+ The primary document an AI agent reads before implementing a related story.
99
+ </objective>
100
+
101
+ <artifacts>
102
+ .docs/wiki/subsystems/[subsystem-name]/systems/[system-name].md
103
+ </artifacts>
104
+ </output>
105
+
106
+ <process>
107
+ For this command use the `ace-wiki-mapper` agent
108
+ that's specialized in wiki exploration and documentation writing.
109
+
110
+ Execute the map-sys-doc workflow from
111
+ `workflow.xml` end-to-end.
112
+ Preserve all workflow gates (validation, user questions, commits).
113
+ </process>
114
+
115
+ <next-steps>
116
+ <step>/clear first for a fresh context window</step>
117
+ <step>/ace:map-sys-doc — create another system document</step>
118
+ <step>/ace:map-pattern — document a pattern used by this system</step>
119
+ <step>/ace:map-guide — create a how-to guide for this system</step>
120
+ <step>/ace:map-cross-cutting — document a cross-cutting concern</step>
121
+ <step>Review file at .docs/wiki/subsystems/[subsystem-name]/systems/</step>
122
+ </next-steps>
123
+
124
+ </command>
125
+ ```
@@ -0,0 +1,381 @@
1
+ <system>
2
+ <purpose>
3
+ Template for `.docs/wiki/subsystems/[subsystem-name]/systems/<system-name>.md` — a coherent
4
+ domain system within a codebase subsystem. Answers "How does this system work RIGHT NOW?"
5
+
6
+ Each system doc describes WHAT exists, HOW it works, and WHERE things live for one
7
+ domain concern. It is the primary document an AI agent reads before implementing a
8
+ related story.
9
+
10
+ A "system" is a logical grouping of components that together deliver one domain capability
11
+ (e.g., Drawing System, User Management, Order Processing). A codebase subsystem may
12
+ contain multiple systems.
13
+
14
+ Complements:
15
+ - patterns/ docs (HOW to apply reusable implementation patterns)
16
+ - cross-cutting/ docs (concerns spanning multiple systems)
17
+ - guides/ docs (step-by-step recipes combining multiple patterns)
18
+ - decisions/ docs (WHY significant choices were made)
19
+ </purpose>
20
+
21
+ <template>
22
+ <overview>
23
+ # [System Name]
24
+
25
+ ## Overview
26
+ One paragraph: what this system does, why it exists.
27
+ </overview>
28
+
29
+ <file-tree>
30
+ ## File Tree
31
+
32
+ All files belonging to this system with purpose annotations.
33
+ Update when new files are added by a story.
34
+
35
+ ```
36
+ src/[layer]/[area]/
37
+ |-- FileA.ts # Brief purpose
38
+ |-- FileB.ts # Brief purpose
39
+ `-- subfolder/
40
+ |-- FileC.ts # Brief purpose
41
+ `-- FileD.ts # Brief purpose
42
+ ```
43
+ </file-tree>
44
+
45
+ <system-boundary>
46
+ ## System Boundary
47
+
48
+ Mermaid diagram showing what is INSIDE this system vs what it connects to OUTSIDE.
49
+ Helps agents understand scope — what to touch, what NOT to touch.
50
+
51
+ ```mermaid
52
+ graph TB
53
+ subgraph "System Name"
54
+ A[Component A]
55
+ B[Component B]
56
+ C[Component C]
57
+ end
58
+ External[External System]
59
+ B --&gt; External
60
+ ```
61
+ </system-boundary>
62
+
63
+ <class-and-interface-hierarchy>
64
+ ## Class and Interface Hierarchy
65
+
66
+ Inheritance chains and interface implementations.
67
+
68
+ ```mermaid
69
+ classDiagram
70
+ class IExample {
71
+ &lt;&lt;interface&gt;&gt;
72
+ }
73
+ class BaseClass {
74
+ &lt;&lt;abstract&gt;&gt;
75
+ }
76
+ IExample &lt;|.. BaseClass
77
+ BaseClass &lt;|-- ConcreteA
78
+ BaseClass &lt;|-- ConcreteB
79
+ ```
80
+
81
+ Key contracts INLINE (only interfaces/types that define the API shape):
82
+
83
+ ```typescript
84
+ export interface IExample {
85
+ // Only the contract shape — not implementation code
86
+ }
87
+ ```
88
+ </class-and-interface-hierarchy>
89
+
90
+ <entry-points>
91
+ ## Entry Points
92
+
93
+ Where flows begin. Each entry point is a "front door" into this system.
94
+ - User action: Click on chart -&gt; `file:MouseHandler.onClick`
95
+ - API endpoint: POST /api/resource -&gt; `file:ResourceController.create`
96
+ - Event handler: onTimeframeChange -&gt; `file:VisibilityManager.handleTimeframeChange`
97
+ </entry-points>
98
+
99
+ <data-flow-and-sequence-diagrams required="true">
100
+ ## Data Flow and Sequence Diagrams
101
+
102
+ **MANDATORY — every system doc MUST have at least one mermaid sequenceDiagram.**
103
+ This is the most critical section. Without E2E flow diagrams, an agent cannot
104
+ understand how data moves through the system.
105
+
106
+ How data moves through this system for each key behavior.
107
+ Use mermaid sequence diagrams showing the complete flow through all layers.
108
+
109
+ ### Flow: [Behavior Name]
110
+
111
+ ```mermaid
112
+ sequenceDiagram
113
+ participant User
114
+ participant Entry as EntryPoint
115
+ participant Svc as Service
116
+ participant Domain as DomainEntity
117
+ participant Repo as Repository
118
+ participant DB as DataStore
119
+
120
+ User-&gt;&gt;Entry: action
121
+ Entry-&gt;&gt;Svc: command/query
122
+ Svc-&gt;&gt;Domain: business logic
123
+ Domain--&gt;&gt;Svc: result
124
+ Svc-&gt;&gt;Repo: persist/retrieve
125
+ Repo-&gt;&gt;DB: SQL/query
126
+ DB--&gt;&gt;Repo: result
127
+ Repo--&gt;&gt;Svc: domain object
128
+ Svc--&gt;&gt;Entry: response
129
+ Entry--&gt;&gt;User: feedback
130
+ ```
131
+ </data-flow-and-sequence-diagrams>
132
+
133
+ <components>
134
+ ## Components
135
+
136
+ ### [Component A]
137
+ - **Location**: `src/infrastructure/primitives/trend-line/TrendLine.ts:TrendLine`
138
+ - **Purpose**: One line
139
+ - **Key interface**: `src/domain/interfaces/IDrawing.ts:IDrawing`
140
+ - **Implements**: ISeriesPrimitive, IDrawing
141
+
142
+ ### [Component B]
143
+ ...
144
+ </components>
145
+
146
+ <key-behaviors>
147
+ ## Key Behaviors
148
+
149
+ ### [Behavior 1]
150
+ - **Trigger**: What causes this behavior
151
+ - **Logic**: Where the logic lives (`file:ClassName.method`), brief description
152
+ - **Effect**: What happens as a result
153
+
154
+ ### [Behavior 2]
155
+ ...
156
+ </key-behaviors>
157
+
158
+ <state-management>
159
+ ## State Management
160
+
161
+ What state this system owns, where it lives, how it flows.
162
+ - **State location**: Redux store at `file:drawingSlice` / local state in `file:DrawingManager`
163
+ - **Key state shape**: (inline only if non-obvious)
164
+ - **State transitions**: What actions/events cause state changes
165
+ </state-management>
166
+
167
+ <error-propagation>
168
+ ## Error Propagation
169
+
170
+ What errors this system throws/handles and how they propagate through layers.
171
+ - `DrawingValidationError` at `file:Path.validate` -&gt; caught by `file:DrawingFactory` -&gt; user notification
172
+ - `RepositoryError` at `file:ResourceRepository.save` -&gt; propagates to controller -&gt; HTTP 500
173
+ </error-propagation>
174
+
175
+ <constants-and-enums>
176
+ ## Constants and Enums
177
+
178
+ Where constants and enums for this system are defined. Agent MUST use these, never hardcode.
179
+ - **Constants**: `src/domain/constants/DrawingConstants.ts:DrawingConstants`
180
+ - **Enums**: `src/domain/enums/DrawingType.ts:DrawingType`
181
+ - **Config lookup**: `src/domain/configs/DrawingConfigLookup.ts:DrawingConfigLookup`
182
+ </constants-and-enums>
183
+
184
+ <related-systems>
185
+ ## Related Systems
186
+
187
+ What other systems this one interacts with. Agent should read these docs before modifying.
188
+ - [Event System](../cross-cutting/event-system.md) — publishes/subscribes to events
189
+ - [Settings System](./settings-system.md) — configuration modal
190
+ </related-systems>
191
+
192
+ <integration-points>
193
+ ## Integration Points
194
+
195
+ - Connects to: [other system] via [mechanism] at `file:ClassName.method`
196
+ - Consumed by: [component] at `file:ClassName.method`
197
+ </integration-points>
198
+
199
+ <configuration-and-options>
200
+ ## Configuration and Options
201
+
202
+ Options interface shape and defaults. Agent needs this to implement new variants.
203
+
204
+ ```typescript
205
+ export interface ISystemOptions {
206
+ // Contract shape — what options this system accepts
207
+ }
208
+ ```
209
+
210
+ Default values: `file:SystemDefaults.ts:SYSTEM_DEFAULTS`
211
+ </configuration-and-options>
212
+
213
+ <database>
214
+ ## Database
215
+
216
+ Include ONLY if this system has database interactions. Omit entirely for pure frontend systems.
217
+
218
+ - **Table**: `table_name` — migration at `file:migrations/20240101_CreateTable.sql`
219
+ - **Key columns**: id, type, data (jsonb), created_at
220
+ - **Indexes**: `idx_table_column` on `column`
221
+ </database>
222
+
223
+ <gotchas>
224
+ ## Gotchas
225
+
226
+ Things that commonly go wrong or are easy to forget when working with this system.
227
+ - Constructor timing: factory methods called from `super()` BEFORE subclass fields initialize
228
+ - Button IDs have NO hyphens, registry types DO have hyphens
229
+ </gotchas>
230
+
231
+ <tech-debt>
232
+ ## Tech Debt
233
+
234
+ Known quality issues in this system discovered during story code reviews.
235
+ Items are added by the wiki mapper and removed when fixed by a future story.
236
+ Include ONLY if this system has known tech debt items. Omit section entirely if clean.
237
+
238
+ ### [Short descriptive title of the issue]
239
+ - **Severity:** high | medium | low
240
+ - **File:** `[file-path:SymbolName]`
241
+ - **Description:** What the issue is, why it matters, and what could go wrong
242
+ if left unfixed. Reference specific code constructs where applicable.
243
+ - **Discovered during:** [story-id] — [story title]
244
+
245
+ ### [Another issue]
246
+ - **Severity:** ...
247
+ - **File:** ...
248
+ - **Description:** ...
249
+ - **Discovered during:** ...
250
+ </tech-debt>
251
+ </template>
252
+
253
+ <guidelines>
254
+
255
+ **Documentation Style:**
256
+ - EXTREMELY SUCCINCT — every word must add value
257
+ - NO FLUFF — direct, actionable information only
258
+ - Bullet points over paragraphs
259
+ - File trees: ASCII only (`|--`, backtick-dash-dash) — never Unicode box-drawing characters
260
+ - **ALL visual representations of architecture, dependencies, flows, or relationships MUST be ```mermaid fenced code blocks. NO ASCII arrows (->), NO dependency trees, NO PlantUML. Only mermaid. The ONLY ASCII exception is file trees (directory listings).**
261
+ - Code references as `file-path:ClassName.methodName` or `file-path:functionName` (not line numbers)
262
+ - Inline snippets ONLY for interfaces, types, and short patterns that define contracts
263
+ - When referencing a whole class/module: `file-path:ClassName`
264
+ - When referencing a specific method: `file-path:ClassName.methodName`
265
+ - When referencing a standalone function: `file-path:functionName`
266
+ - When referencing a type/interface: `file-path:InterfaceName`
267
+
268
+ **Overview:**
269
+ - ONE paragraph. If you need more, the system boundary is too large — split it.
270
+ - State what the system DOES, not what it IS.
271
+
272
+ **File Tree:**
273
+ - List ALL files belonging to this system, grouped by directory.
274
+ - Every file gets a `# Brief purpose` comment.
275
+ - Use ASCII only: `|--` for branches, backtick-dash-dash for last item, `|` for continuation.
276
+ - Paths relative to subsystem root.
277
+
278
+ **System Boundary:**
279
+ - The mermaid diagram must clearly separate INSIDE from OUTSIDE.
280
+ - An agent reading this knows: "If my change touches something inside, I'm in scope.
281
+ If it touches something outside, I need to read that system's doc too."
282
+
283
+ **Class and Interface Hierarchy:**
284
+ - Use mermaid `classDiagram` for inheritance and interface implementation.
285
+ - Inline code snippets ONLY for interface/type contracts — never implementation code.
286
+ - If the hierarchy is trivial (1 class, no inheritance), omit this section.
287
+
288
+ **Entry Points:**
289
+ - Every "front door" into this system. An agent needs to know WHERE flows start.
290
+ - Use `file:ClassName.methodName` references.
291
+
292
+ **Data Flow and Sequence Diagrams (MANDATORY — never skip):**
293
+ - Every system doc MUST have at least one ```mermaid sequenceDiagram.
294
+ - One sequence diagram per key behavior (1-5 behaviors typically).
295
+ - Show COMPLETE E2E flow through all layers — entry to data store and back.
296
+ - Participants = components, not files. Keep it at the right abstraction level.
297
+ - If you cannot trace the flow, read more source files until you can. Do NOT skip.
298
+
299
+ **Components:**
300
+ - One subsection per major component. Location + Purpose + Key interface.
301
+ - Skip trivial components (DTOs, simple value objects) unless they define important contracts.
302
+
303
+ **Key Behaviors:**
304
+ - Trigger -&gt; Logic -&gt; Effect format. Concise.
305
+ - Reference code locations with `file:ClassName.method`.
306
+
307
+ **State Management:**
308
+ - Where state lives (Redux, local, database) and what causes transitions.
309
+ - Omit if the system is stateless or state is trivial.
310
+
311
+ **Error Propagation:**
312
+ - How errors flow through layers. What gets caught where.
313
+ - Omit if error handling follows a system-wide pattern documented in cross-cutting.
314
+
315
+ **Constants and Enums:**
316
+ - CRITICAL for AI agents — they must NEVER hardcode values.
317
+ - Always list the exact file paths where constants and enums are defined.
318
+
319
+ **Related Systems:**
320
+ - Cross-reference with markdown links to other docs.
321
+ - Agent should read these before modifying this system.
322
+
323
+ **Tech Debt:**
324
+ - One `###` subsection per known issue — NOT a table. Each issue needs enough context
325
+ for an agent to understand the problem without reading the code.
326
+ - Severity: `high` (security, data loss, production instability), `medium` (quality,
327
+ maintainability), `low` (cosmetic, minor inefficiency).
328
+ - Always link to the discovering story for traceability.
329
+ - REMOVE items when fixed by a future story.
330
+ - Omit the entire section if no tech debt exists in this system.
331
+
332
+ **Section Inclusion:**
333
+ - Include ALL sections that are relevant to the system.
334
+ - OMIT sections that genuinely don't apply (e.g., no Database for pure frontend).
335
+ - **NEVER omit Data Flow and Sequence Diagrams** — this section is always required.
336
+ - When updating, ADD or expand sections — don't rewrite sections that haven't changed.
337
+
338
+ **What does NOT belong here:**
339
+ - Story numbers, sprint context, or agile artifacts
340
+ - Planned vs Actual comparisons
341
+ - Acceptance criteria checklists
342
+ - Revision history (git handles this)
343
+ - Duplicated implementation code (reference it, don't copy it)
344
+ - Line numbers in references (they go stale)
345
+ - Testing docs, coverage metrics, test code
346
+ - Performance benchmarks
347
+ - Debugging utilities
348
+ - ASCII arrows or dependency trees (use mermaid; exception: file trees use ASCII)
349
+
350
+ </guidelines>
351
+
352
+ <evolution>
353
+
354
+ This is a LIVING document — updated after each story that touches this system.
355
+
356
+ **Update triggers:**
357
+ - New component added to this system
358
+ - New behavior or entry point introduced
359
+ - Existing behavior changed significantly
360
+ - New integration point or dependency added
361
+ - Class hierarchy changed (new subclass, interface change)
362
+ - State management approach changed
363
+ - New constants or enums added
364
+ - File tree changed (new files, removed files, moved files)
365
+ - Tech debt discovered or resolved in this system's files
366
+
367
+ **NOT an update trigger:**
368
+ - Bug fixes that don't change system behavior
369
+ - Internal refactoring within existing components
370
+ - New test files
371
+ - Style/formatting changes
372
+
373
+ **Update rules:**
374
+ - ADD new sections or expand existing ones — don't rewrite unchanged sections
375
+ - UPDATE file tree to reflect current state
376
+ - REMOVE references to deleted files or components
377
+ - The document must always reflect the CURRENT state, not history
378
+
379
+ </evolution>
380
+
381
+ </system>