agile-context-engineering 0.2.2 → 0.3.0

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 (51) hide show
  1. package/CHANGELOG.md +82 -0
  2. package/LICENSE +51 -51
  3. package/README.md +324 -323
  4. package/agents/ace-research-synthesizer.md +228 -228
  5. package/agents/ace-technical-application-architect.md +28 -0
  6. package/agents/ace-wiki-mapper.md +445 -334
  7. package/agile-context-engineering/src/ace-tools.test.js +1089 -1089
  8. package/agile-context-engineering/templates/_command.md +53 -53
  9. package/agile-context-engineering/templates/_workflow.xml +16 -16
  10. package/agile-context-engineering/templates/product/product-backlog.xml +231 -231
  11. package/agile-context-engineering/templates/product/story-integration-solution.xml +1 -0
  12. package/agile-context-engineering/templates/product/story-wiki.xml +4 -0
  13. package/agile-context-engineering/templates/wiki/coding-standards.xml +38 -0
  14. package/agile-context-engineering/templates/wiki/decizions.xml +115 -115
  15. package/agile-context-engineering/templates/wiki/guide.xml +137 -137
  16. package/agile-context-engineering/templates/wiki/module-discovery.xml +174 -174
  17. package/agile-context-engineering/templates/wiki/pattern.xml +159 -159
  18. package/agile-context-engineering/templates/wiki/system-architecture.xml +254 -254
  19. package/agile-context-engineering/templates/wiki/system-cross-cutting.xml +197 -197
  20. package/agile-context-engineering/templates/wiki/system.xml +381 -381
  21. package/agile-context-engineering/templates/wiki/walkthrough.xml +255 -0
  22. package/agile-context-engineering/templates/wiki/wiki-readme.xml +297 -276
  23. package/agile-context-engineering/utils/questioning.xml +110 -110
  24. package/agile-context-engineering/workflows/execute-story.xml +1219 -1145
  25. package/agile-context-engineering/workflows/help.xml +540 -540
  26. package/agile-context-engineering/workflows/init-coding-standards.xml +386 -386
  27. package/agile-context-engineering/workflows/map-story.xml +1046 -797
  28. package/agile-context-engineering/workflows/map-subsystem.xml +2 -1
  29. package/agile-context-engineering/workflows/map-walkthrough.xml +457 -0
  30. package/agile-context-engineering/workflows/plan-feature.xml +1495 -1495
  31. package/agile-context-engineering/workflows/plan-story.xml +36 -1
  32. package/agile-context-engineering/workflows/research-integration-solution.xml +1 -0
  33. package/agile-context-engineering/workflows/research-story-wiki.xml +2 -1
  34. package/agile-context-engineering/workflows/research-technical-solution.xml +1 -0
  35. package/agile-context-engineering/workflows/review-story.xml +281 -281
  36. package/agile-context-engineering/workflows/update.xml +238 -207
  37. package/bin/install.js +8 -0
  38. package/commands/ace/execute-story.md +1 -0
  39. package/commands/ace/help.md +93 -93
  40. package/commands/ace/init-coding-standards.md +83 -83
  41. package/commands/ace/map-story.md +165 -156
  42. package/commands/ace/map-subsystem.md +140 -138
  43. package/commands/ace/map-system.md +92 -92
  44. package/commands/ace/map-walkthrough.md +127 -0
  45. package/commands/ace/plan-feature.md +89 -89
  46. package/commands/ace/plan-story.md +15 -1
  47. package/commands/ace/review-story.md +109 -109
  48. package/commands/ace/update.md +56 -54
  49. package/hooks/ace-check-update.js +62 -62
  50. package/hooks/ace-statusline.js +89 -89
  51. package/package.json +4 -3
@@ -0,0 +1,255 @@
1
+ <walkthrough>
2
+ <purpose>
3
+ Template for `.docs/wiki/subsystems/[subsystem-name]/walkthroughs/<flow-name>.md` — a deep,
4
+ tutorial-style explanation of a complex end-to-end flow. Answers "Walk me through EXACTLY
5
+ what happens when X."
6
+
7
+ Each walkthrough traces a single flow from entry point to exit point, showing ACTUAL code
8
+ from the codebase at every step, explaining what each piece does and WHY, and calling out
9
+ framework/library concepts with info boxes when external tools are involved.
10
+
11
+ Written for humans (especially new developers and interns) who need to UNDERSTAND a flow
12
+ before they can work with it. Unlike system docs (terse references for AI agents),
13
+ walkthroughs prioritize completeness of information — but deliver it in minimal words.
14
+
15
+ A "walkthrough" is a traced execution flow through multiple classes and layers:
16
+ e.g., "Message arrives via SignalR until it reaches the LLM", "LLM calls a tool until
17
+ the drawing appears on the chart", "User places an order until it's confirmed".
18
+
19
+ Create a walkthrough when:
20
+ - A flow spans 3+ classes across multiple architectural layers
21
+ - External frameworks/libraries are involved that need explanation (MAF, SignalR, EF Core)
22
+ - A system doc would need paragraphs of explanation with code snippets (that's a walkthrough, not a system doc)
23
+ - An intern reading the code alone would not understand what's happening without guidance
24
+
25
+ **Emphasis Frameworks:**
26
+ Walkthroughs can specify one or more "emphasis frameworks" — external frameworks,
27
+ libraries, APIs, or SDKs that deserve deep explanation throughout the walkthrough.
28
+ When an emphasis framework is specified:
29
+ - EVERY step where the flow touches that framework MUST have a framework info box
30
+ - The info box explains the specific framework concept used in that step
31
+ - ALL code from ALL steps that interact with the emphasis framework is shown and explained
32
+ - The agent researches the framework (via WebSearch/context7 or provided docs) if needed
33
+ - The Framework Concepts Reference table at the end is MANDATORY
34
+
35
+ Examples of emphasis frameworks: SignalR, EF Core, MAF (Microsoft Agent Framework),
36
+ React Query, gRPC, MediatR, AutoMapper. Can be specified by name (agent researches)
37
+ or with documentation paths/URLs (agent reads provided docs).
38
+
39
+ Complements:
40
+ - systems/ docs (terse WHAT reference — walkthroughs explain the HOW in depth)
41
+ - patterns/ docs (reusable structural patterns — walkthroughs trace specific flows through them)
42
+ - guides/ docs (procedural recipes for DOING — walkthroughs explain for UNDERSTANDING)
43
+ - cross-cutting/ docs (shared infrastructure — walkthroughs show how flows pass through them)
44
+ </purpose>
45
+
46
+ <template>
47
+ <title>
48
+ # [Flow Name]
49
+
50
+ One line: what this flow does and when it triggers.
51
+ </title>
52
+
53
+ <file-map>
54
+ ## Files Involved
55
+
56
+ Every file this flow touches, in execution order.
57
+
58
+ ```
59
+ src/[layer]/[area]/
60
+ |-- FileA.cs # Entry point
61
+ |-- FileB.cs # Orchestrates flow
62
+ |-- FileC.cs # Core logic
63
+ `-- FileD.cs # Sends result
64
+ ```
65
+ </file-map>
66
+
67
+ <flow-diagram>
68
+ ## Flow Overview
69
+
70
+ ```mermaid
71
+ sequenceDiagram
72
+ participant A as ComponentA
73
+ participant B as ComponentB
74
+ participant C as ComponentC
75
+ participant D as ExternalSystem
76
+
77
+ A->>B: step description
78
+ B->>C: step description
79
+ C->>D: step description
80
+ D-->>C: response
81
+ C-->>B: result
82
+ B-->>A: result
83
+ ```
84
+
85
+ Participants = real classes/components. Arrows = real method calls.
86
+ Steps below explain each arrow.
87
+ </flow-diagram>
88
+
89
+ <steps>
90
+ ## Step-by-Step
91
+
92
+ ### Step 1: [What happens]
93
+
94
+ **File:** `path/to/File.cs:ClassName.MethodName`
95
+
96
+ [1-2 sentences: what this step does and WHY. No filler.]
97
+
98
+ ```csharp
99
+ // Actual code from the codebase
100
+ public async Task MethodName(string param1, string param2)
101
+ {
102
+ var result = await _dependency.DoSomething(param1);
103
+ }
104
+ ```
105
+
106
+ `_dependency` — injected via constructor, does X.
107
+ `param1` — the Y received from Z.
108
+ [Only explain what's non-obvious. Skip what the code already says clearly.]
109
+
110
+ ---
111
+
112
+ ### Step 2: [What happens]
113
+
114
+ **File:** `path/to/AnotherFile.cs:ClassName.MethodName`
115
+
116
+ [What and why — terse.]
117
+
118
+ ```csharp
119
+ // Actual code...
120
+ ```
121
+
122
+ > **[Framework]: [Concept]**
123
+ >
124
+ > [Succinct explanation of the framework concept. What it is, what it does for us.
125
+ > No history, no alternatives, no "in general" — just what the reader needs to
126
+ > understand THIS code.]
127
+ >
128
+ > *Source: [link to official docs]*
129
+
130
+ ---
131
+
132
+ ### Step 3: [What happens]
133
+
134
+ ...continue for every step in the flow...
135
+ </steps>
136
+
137
+ <framework-concepts>
138
+ ## Framework Concepts Reference
139
+
140
+ Consolidated lookup for framework concepts explained inline above.
141
+
142
+ | Concept | Framework | What It Does | First Appearance |
143
+ |---------|-----------|-------------|------------------|
144
+ | `AIFunctionFactory.Create()` | MS Agent Framework | C# method -> LLM tool | [Step N](#step-n) |
145
+ | `ChatClientAgent` | MS Agent Framework | Wraps IChatClient with auto tool loop | [Step M](#step-m) |
146
+
147
+ Include ONLY if external frameworks/libraries are involved.
148
+ </framework-concepts>
149
+
150
+ <related-docs>
151
+ ## Related Documentation
152
+
153
+ - [System Doc](../systems/relevant-system.md) — terse reference
154
+ - [Guide](../guides/relevant-guide.md) — recipe for adding to this flow
155
+ - [Official Docs](../framework-docs/relevant-page.md) — framework docs
156
+ </related-docs>
157
+ </template>
158
+
159
+ <guidelines>
160
+
161
+ ### Density Over Prose
162
+ - **EXTREMELY SUCCINCT** — every word must add value. If a word does not add value, remove it.
163
+ - **NO FLUFF** — no introductions, no summaries of what the section will contain, no transitions
164
+ - Bullet points over paragraphs. Tables over bullet points when comparing.
165
+ - If you can say it in 3 words, don't use 10. Then try to say it in 2.
166
+ - **BUT: ALL needed information MUST be present.** Succinctness means cutting WORDS, not cutting INFORMATION. Every concept, every parameter, every non-obvious behavior must be explained — just in fewer words.
167
+
168
+ ### Complete but Dense Explanations
169
+ - Explain the WHY, not just the WHAT — "X because Y" not "X happens"
170
+ - After each code snippet: explain ONLY what's non-obvious. If the code says `price > 0`, don't write "checks that price is positive" — the code already says that. DO explain hidden behaviors, framework magic, non-obvious field origins.
171
+ - Use inline code references for fields/params: `` `_connectionId` — captured from `Context.ConnectionId` in AgentHub ``
172
+ - One-line explanations preferred. Multi-line only when genuinely complex.
173
+
174
+ ### Code Snippets (MANDATORY per step)
175
+ - ALWAYS from the actual codebase — verified by reading the file
176
+ - NEVER pseudocode, NEVER summaries, NEVER fabricated
177
+ - Use correct language tag: ```csharp, ```typescript, ```json
178
+ - **FOCUSED**: show ONLY the lines relevant to what the step is explaining. If a method has 50 lines but this step is about lines 10-15, show lines 10-15 with a `// ... (validation above)` or `// ... (setup omitted)` comment for context. The snippet serves the step's explanation, not the other way around.
179
+ - Short methods (under 20 lines) where the ENTIRE method is relevant: show entirely
180
+ - Long methods: show the relevant portion only. Use `// ...` comments to indicate omitted sections above/below.
181
+
182
+ ### Flow Diagram (MANDATORY)
183
+ - Every walkthrough MUST start with a mermaid sequenceDiagram
184
+ - Participants = real classes/components, not abstract concepts
185
+ - Arrows = real method calls, labeled with method name
186
+ - The diagram is the map; the steps are the guided tour
187
+
188
+ ### Framework Info Boxes (when applicable)
189
+ - Use markdown blockquotes (`>`) with `> **[Framework]: [Concept]**` header
190
+ - Explain as if the reader has NEVER used this framework — but in minimal words
191
+ - Place IMMEDIATELY after the first code snippet that uses the concept
192
+ - Each concept explained ONCE — do not repeat
193
+ - Link to official docs with `*Source: [link]*`
194
+ - Keep it dense: what it is, what it does for us, done. No history, no alternatives.
195
+
196
+ ### Emphasis Frameworks (when specified)
197
+ - When emphasis-frameworks are specified, framework info boxes become MANDATORY
198
+ for EVERY step that touches the emphasis framework — not just the first occurrence
199
+ - ALL code that interacts with the emphasis framework must be shown in full
200
+ - The Framework Concepts Reference table is MANDATORY (not optional)
201
+ - If the agent does not know the framework: use WebSearch or context7 MCP to research it
202
+ - If framework docs are provided (file paths or URLs): read them BEFORE writing any steps
203
+
204
+ ### Minimum Length
205
+ - At least 300 lines — length comes from code snippets and completeness, not from prose
206
+ - Complex flows (3+ frameworks, 10+ classes): 500-1000 lines
207
+ - Under 200 lines = not enough information, add more steps/explanations
208
+
209
+ ### Section Inclusion
210
+ - Title, File Map, Flow Diagram, Step-by-Step: ALWAYS required
211
+ - Framework Concepts Reference: MANDATORY if emphasis-frameworks specified; otherwise ONLY if external frameworks involved
212
+ - Related Documentation: ALWAYS required
213
+
214
+ ### What Does NOT Belong Here
215
+ - Terse bullet-point references (that's systems/)
216
+ - Structural pattern descriptions (that's patterns/)
217
+ - Procedural "how to add X" recipes (that's guides/)
218
+ - Architecture decision rationale (that's decisions/)
219
+ - Story numbers, sprint context, revision history
220
+ - Testing instructions or test code
221
+ - Frontend code in a backend walkthrough (or vice versa) — scope to ONE side
222
+ - Speculation about future changes — document what IS, not what might be
223
+ - Filler phrases: "Let's look at", "Now we'll examine", "As mentioned above", "It's worth noting"
224
+
225
+ </guidelines>
226
+
227
+ <evolution>
228
+
229
+ This is a LIVING document — updated when the flow it describes changes.
230
+
231
+ **Update triggers:**
232
+ - New step added to the flow
233
+ - Step removed from the flow
234
+ - Step logic changed significantly
235
+ - Framework/library upgraded, APIs changed
236
+ - Code snippets no longer match codebase
237
+ - New framework concept introduced
238
+
239
+ **NOT an update trigger:**
240
+ - Bug fixes that don't change flow structure
241
+ - Internal refactoring within a single step
242
+ - New feature using a DIFFERENT flow (create a new walkthrough)
243
+ - Style/formatting changes to the code
244
+
245
+ **Update rules:**
246
+ - UPDATE code snippets to match current codebase — stale snippets are worse than no docs
247
+ - ADD new steps when the flow gains a stage
248
+ - REMOVE steps that no longer exist
249
+ - UPDATE framework info boxes when APIs change
250
+ - UPDATE mermaid diagram to reflect current flow
251
+ - Document must always reflect CURRENT code state, not history
252
+
253
+ </evolution>
254
+
255
+ </walkthrough>