maxsimcli 4.0.2 → 4.2.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 (127) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/assets/CHANGELOG.md +16 -0
  3. package/dist/assets/dashboard/client/assets/{index-C_eAetZJ.js → index-BcRHShXD.js} +59 -59
  4. package/dist/assets/dashboard/client/assets/index-C199D4Eb.css +32 -0
  5. package/dist/assets/dashboard/client/index.html +2 -2
  6. package/dist/assets/dashboard/server.js +26 -11
  7. package/dist/assets/templates/agents/AGENTS.md +18 -69
  8. package/dist/assets/templates/agents/maxsim-code-reviewer.md +17 -92
  9. package/dist/assets/templates/agents/maxsim-codebase-mapper.md +57 -694
  10. package/dist/assets/templates/agents/maxsim-debugger.md +80 -925
  11. package/dist/assets/templates/agents/maxsim-executor.md +94 -431
  12. package/dist/assets/templates/agents/maxsim-integration-checker.md +51 -319
  13. package/dist/assets/templates/agents/maxsim-phase-researcher.md +63 -429
  14. package/dist/assets/templates/agents/maxsim-plan-checker.md +79 -568
  15. package/dist/assets/templates/agents/maxsim-planner.md +125 -855
  16. package/dist/assets/templates/agents/maxsim-project-researcher.md +32 -472
  17. package/dist/assets/templates/agents/maxsim-research-synthesizer.md +25 -134
  18. package/dist/assets/templates/agents/maxsim-roadmapper.md +66 -480
  19. package/dist/assets/templates/agents/maxsim-spec-reviewer.md +13 -55
  20. package/dist/assets/templates/agents/maxsim-verifier.md +95 -450
  21. package/dist/assets/templates/commands/maxsim/artefakte.md +122 -0
  22. package/dist/assets/templates/commands/maxsim/batch.md +42 -0
  23. package/dist/assets/templates/commands/maxsim/check-todos.md +1 -0
  24. package/dist/assets/templates/commands/maxsim/sdd.md +39 -0
  25. package/dist/assets/templates/references/thinking-partner.md +33 -0
  26. package/dist/assets/templates/workflows/batch.md +420 -0
  27. package/dist/assets/templates/workflows/check-todos.md +85 -1
  28. package/dist/assets/templates/workflows/discuss-phase.md +31 -0
  29. package/dist/assets/templates/workflows/execute-plan.md +96 -27
  30. package/dist/assets/templates/workflows/help.md +47 -0
  31. package/dist/assets/templates/workflows/sdd.md +426 -0
  32. package/dist/backend/index.d.ts +4 -0
  33. package/dist/backend/index.d.ts.map +1 -0
  34. package/dist/backend/index.js +12 -0
  35. package/dist/backend/index.js.map +1 -0
  36. package/dist/backend/lifecycle.d.ts +13 -0
  37. package/dist/backend/lifecycle.d.ts.map +1 -0
  38. package/dist/backend/lifecycle.js +168 -0
  39. package/dist/backend/lifecycle.js.map +1 -0
  40. package/dist/backend/server.d.ts +13 -0
  41. package/dist/backend/server.d.ts.map +1 -0
  42. package/dist/backend/server.js +1013 -0
  43. package/dist/backend/server.js.map +1 -0
  44. package/dist/backend/terminal.d.ts +49 -0
  45. package/dist/backend/terminal.d.ts.map +1 -0
  46. package/dist/backend/terminal.js +209 -0
  47. package/dist/backend/terminal.js.map +1 -0
  48. package/dist/backend/types.d.ts +77 -0
  49. package/dist/backend/types.d.ts.map +1 -0
  50. package/dist/backend/types.js +6 -0
  51. package/dist/backend/types.js.map +1 -0
  52. package/dist/backend-server.cjs +80636 -0
  53. package/dist/backend-server.cjs.map +1 -0
  54. package/dist/backend-server.d.cts +2 -0
  55. package/dist/backend-server.d.ts +11 -0
  56. package/dist/backend-server.d.ts.map +1 -0
  57. package/dist/backend-server.js +43 -0
  58. package/dist/backend-server.js.map +1 -0
  59. package/dist/cli.cjs +378 -172
  60. package/dist/cli.cjs.map +1 -1
  61. package/dist/cli.js +28 -8
  62. package/dist/cli.js.map +1 -1
  63. package/dist/core/artefakte.d.ts.map +1 -1
  64. package/dist/core/artefakte.js +16 -0
  65. package/dist/core/artefakte.js.map +1 -1
  66. package/dist/core/context-loader.d.ts +1 -0
  67. package/dist/core/context-loader.d.ts.map +1 -1
  68. package/dist/core/context-loader.js +58 -0
  69. package/dist/core/context-loader.js.map +1 -1
  70. package/dist/core/core.d.ts +6 -0
  71. package/dist/core/core.d.ts.map +1 -1
  72. package/dist/core/core.js +238 -0
  73. package/dist/core/core.js.map +1 -1
  74. package/dist/core/index.d.ts +1 -1
  75. package/dist/core/index.d.ts.map +1 -1
  76. package/dist/core/index.js +5 -3
  77. package/dist/core/index.js.map +1 -1
  78. package/dist/core/phase.d.ts +11 -11
  79. package/dist/core/phase.d.ts.map +1 -1
  80. package/dist/core/phase.js +88 -73
  81. package/dist/core/phase.js.map +1 -1
  82. package/dist/core/roadmap.d.ts +2 -2
  83. package/dist/core/roadmap.d.ts.map +1 -1
  84. package/dist/core/roadmap.js +11 -10
  85. package/dist/core/roadmap.js.map +1 -1
  86. package/dist/core/skills.d.ts +4 -3
  87. package/dist/core/skills.d.ts.map +1 -1
  88. package/dist/core/skills.js +14 -15
  89. package/dist/core/skills.js.map +1 -1
  90. package/dist/core/state.d.ts +11 -11
  91. package/dist/core/state.d.ts.map +1 -1
  92. package/dist/core/state.js +60 -54
  93. package/dist/core/state.js.map +1 -1
  94. package/dist/{core-TFSlUjV1.cjs → core-RRjCSt0G.cjs} +1 -9
  95. package/dist/{core-TFSlUjV1.cjs.map → core-RRjCSt0G.cjs.map} +1 -1
  96. package/dist/esm-iIOBzmdz.cjs +1561 -0
  97. package/dist/esm-iIOBzmdz.cjs.map +1 -0
  98. package/dist/install.cjs +2 -2
  99. package/dist/lifecycle-0M4VqOMm.cjs +136 -0
  100. package/dist/lifecycle-0M4VqOMm.cjs.map +1 -0
  101. package/dist/mcp/config-tools.d.ts +13 -0
  102. package/dist/mcp/config-tools.d.ts.map +1 -0
  103. package/dist/mcp/config-tools.js +66 -0
  104. package/dist/mcp/config-tools.js.map +1 -0
  105. package/dist/mcp/context-tools.d.ts +13 -0
  106. package/dist/mcp/context-tools.d.ts.map +1 -0
  107. package/dist/mcp/context-tools.js +176 -0
  108. package/dist/mcp/context-tools.js.map +1 -0
  109. package/dist/mcp/index.d.ts +0 -1
  110. package/dist/mcp/index.d.ts.map +1 -1
  111. package/dist/mcp/index.js +6 -1
  112. package/dist/mcp/index.js.map +1 -1
  113. package/dist/mcp/phase-tools.js +3 -3
  114. package/dist/mcp/phase-tools.js.map +1 -1
  115. package/dist/mcp/roadmap-tools.d.ts +13 -0
  116. package/dist/mcp/roadmap-tools.d.ts.map +1 -0
  117. package/dist/mcp/roadmap-tools.js +79 -0
  118. package/dist/mcp/roadmap-tools.js.map +1 -0
  119. package/dist/mcp-server.cjs +799 -38
  120. package/dist/mcp-server.cjs.map +1 -1
  121. package/dist/server-G1MIg_Oe.cjs +2980 -0
  122. package/dist/server-G1MIg_Oe.cjs.map +1 -0
  123. package/dist/{skills-BOSxYUzf.cjs → skills-MYlMkYNt.cjs} +41 -29
  124. package/dist/skills-MYlMkYNt.cjs.map +1 -0
  125. package/package.json +7 -1
  126. package/dist/assets/dashboard/client/assets/index-CmiJKqOU.css +0 -32
  127. package/dist/skills-BOSxYUzf.cjs.map +0 -1
@@ -138,7 +138,91 @@ Display: `/maxsim:add-phase [description from todo]`
138
138
  Keep in pending. User runs command in fresh context.
139
139
 
140
140
  **Brainstorm approach:**
141
- Keep in pending. Start discussion about problem and approaches.
141
+ Keep in pending. Enter structured thinking-partner discussion to clarify and enrich the todo.
142
+
143
+ ```
144
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
145
+ MAXSIM ► TODO BRAINSTORM
146
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
147
+ ```
148
+
149
+ Apply thinking-partner behaviors from `@./references/thinking-partner.md` to explore the todo before deciding next steps.
150
+
151
+ **Round 1 — Problem clarity (2-3 questions):**
152
+
153
+ Use AskUserQuestion to probe:
154
+ - What exactly is the problem? (Challenge vagueness — if the todo description is abstract, push for specifics)
155
+ - What does "done" look like? (Make abstract concrete — what observable change marks completion?)
156
+ - Is this one thing or multiple? (Surface hidden scope — does this todo contain sub-tasks?)
157
+
158
+ Build on the todo's existing Problem and Solution sections. Quote specifics from the todo to ground the discussion.
159
+
160
+ **Round 2 — Approach exploration (2-3 questions):**
161
+
162
+ Use AskUserQuestion to explore:
163
+ - What approaches have you considered? (Propose 2-3 alternatives with trade-offs if the user has no strong opinion)
164
+ - What constraints exist? (Surface unstated assumptions — time, dependencies, tech debt, team knowledge)
165
+ - What could go wrong? (Make consequences visible — breaking changes, performance, migration risk)
166
+
167
+ Follow the thread from Round 1. React to the user's energy — if they are excited about an approach, dig into it. If uncertain, help narrow options.
168
+
169
+ **Round 3 — Readiness check:**
170
+
171
+ Use AskUserQuestion:
172
+ - header: "Todo"
173
+ - question: "Ready to refine this todo with what we discussed?"
174
+ - options:
175
+ - "Refine todo" — Update with discussion insights
176
+ - "Keep discussing" — Explore more
177
+ - "Split into multiple" — This is actually several todos
178
+
179
+ If "Keep discussing": ask 2-3 more probing questions focusing on the most important open question, then check readiness again.
180
+ If "Split into multiple": help the user define 2-3 separate todos. For each, create a new todo file in `.planning/todos/pending/` using the enriched format below. Commit all new files.
181
+ If "Refine todo": continue to enrichment below.
182
+
183
+ **After discussion — enrich the todo file:**
184
+
185
+ Rewrite the selected todo's markdown file with enriched content:
186
+
187
+ ```markdown
188
+ ---
189
+ created: [preserve original]
190
+ title: [preserve or refine from discussion]
191
+ area: [preserve or update]
192
+ mode: discussed
193
+ files:
194
+ - [preserve and add any new files surfaced]
195
+ ---
196
+
197
+ ## Problem
198
+
199
+ [Problem description enriched with discussion insights from Round 1]
200
+
201
+ ## Scope
202
+
203
+ [What is in scope and out of scope — from Round 1 clarity questions]
204
+
205
+ ## Approach
206
+
207
+ [Chosen approach with trade-offs explored — from Round 2]
208
+ [Include alternatives considered and why this approach was chosen]
209
+
210
+ ## Risks
211
+
212
+ [What could go wrong — from Round 2 consequences discussion]
213
+
214
+ ## Solution
215
+
216
+ [Concrete next steps or "TBD"]
217
+ ```
218
+
219
+ Commit the updated todo:
220
+
221
+ ```bash
222
+ node ~/.claude/maxsim/bin/maxsim-tools.cjs commit "docs: enrich todo after brainstorm - [title]" --files [todo-file-path] .planning/STATE.md
223
+ ```
224
+
225
+ **Time budget:** 20-30 minutes max. After 6 rounds of questions, offer to file what you have.
142
226
 
143
227
  **Put it back:**
144
228
  Return to list_todos step.
@@ -50,6 +50,8 @@ Every question directed at the user MUST use a structured tool. NEVER write a qu
50
50
  **Your job:** Capture decisions clearly enough that downstream agents can act on them without asking the user again.
51
51
 
52
52
  **Not your job:** Figure out HOW to implement. That's what research and planning do with the decisions you capture.
53
+
54
+ **Phase-scoped artefakte:** In addition to project-level artefakte (DECISIONS.md, ACCEPTANCE-CRITERIA.md, NO-GOS.md), this workflow creates phase-scoped copies in the phase directory. These contain ONLY the entries from this phase's discussion, giving downstream agents focused context without needing to parse the full project-level files.
53
55
  </downstream_awareness>
54
56
 
55
57
  <philosophy>
@@ -484,6 +486,35 @@ If no no-gos emerged from discussion, skip this append.
484
486
  node ~/.claude/maxsim/bin/maxsim-tools.cjs commit "docs(${padded_phase}): update artefakte from phase discussion" --files .planning/DECISIONS.md .planning/ACCEPTANCE-CRITERIA.md .planning/NO-GOS.md
485
487
  ```
486
488
 
489
+ **Create phase-scoped artefakte:**
490
+
491
+ After appending to project-level artefakte, create phase-scoped copies containing ONLY the entries from this phase's discussion. These give downstream agents (researcher, planner, executor) focused phase-specific context without parsing the full project-level files.
492
+
493
+ For each artefakte type that had entries appended in the previous step:
494
+
495
+ **Decisions (if phase decisions were captured):**
496
+ ```bash
497
+ node ~/.claude/maxsim/bin/maxsim-tools.cjs artefakte-write decisions --phase ${phase_num} --content "# Phase ${phase_num}: ${phase_name} — Decisions\n\n| # | Decision | Rationale | Alternatives Considered | Status |\n|---|----------|-----------|------------------------|--------|\n[phase-specific decision entries from the discussion above]"
498
+ ```
499
+
500
+ **Acceptance Criteria (if phase criteria were defined):**
501
+ ```bash
502
+ node ~/.claude/maxsim/bin/maxsim-tools.cjs artefakte-write acceptance-criteria --phase ${phase_num} --content "# Phase ${phase_num}: ${phase_name} — Acceptance Criteria\n\n[phase-specific criteria entries from the discussion above, each as a - [ ] checkbox line]"
503
+ ```
504
+
505
+ **No-Gos (if phase no-gos emerged):**
506
+ ```bash
507
+ node ~/.claude/maxsim/bin/maxsim-tools.cjs artefakte-write no-gos --phase ${phase_num} --content "# Phase ${phase_num}: ${phase_name} — No-Gos\n\n[phase-specific no-go entries from the discussion above, each as a - bullet]"
508
+ ```
509
+
510
+ Only create artefakte files for types that actually had entries — skip any type where no relevant decisions/criteria/no-gos emerged.
511
+
512
+ Include the phase-scoped artefakte files in the same git commit as the project-level artefakte:
513
+
514
+ ```bash
515
+ node ~/.claude/maxsim/bin/maxsim-tools.cjs commit "docs(${padded_phase}): create phase-scoped artefakte from discussion" --files "${phase_dir}/"
516
+ ```
517
+
487
518
  </step>
488
519
 
489
520
  <step name="confirm_creation">
@@ -411,45 +411,114 @@ Task(
411
411
 
412
412
  **Stage 3: Simplify** — Spawn 3 parallel reviewers to catch reuse opportunities, quality issues, and inefficiencies.
413
413
 
414
+ **Reviewer 1 — Code Reuse:**
415
+
414
416
  ```
415
417
  Task(
416
- subagent_type="maxsim-executor",
418
+ subagent_type="maxsim-code-reviewer",
417
419
  prompt="
418
420
  <objective>
419
- Run simplification review on plan {phase}-{plan} with 3 parallel reviewers.
421
+ Review plan {phase}-{plan} for code reuse opportunities.
420
422
  </objective>
421
423
 
424
+ <files_to_review>
425
+ {List all files created/modified during execution from SUMMARY.md key-files}
426
+ </files_to_review>
427
+
422
428
  <instructions>
423
- Spawn 3 parallel review agents for the files modified in this plan:
424
-
425
- Agent 1 Code Reuse:
426
- - Find duplicated logic across the codebase
427
- - Identify copy-paste from other files that should be extracted
428
- - Suggest shared helpers for patterns appearing 3+ times
429
- - Check if existing utilities could replace new code
430
-
431
- Agent 2 — Code Quality:
432
- - Check naming consistency with codebase conventions
433
- - Verify error handling covers all external calls
434
- - Look for dead code: unused imports, unreachable branches, commented-out code
435
- - Check for unnecessary abstractions or premature generalizations
436
-
437
- Agent 3 — Efficiency:
438
- - Find O(n^2) operations where O(n) is straightforward
439
- - Identify repeated computations that could be cached or hoisted
440
- - Check for unnecessary allocations in hot paths
441
- - Look for redundant data transformations
442
-
443
- After all 3 agents report:
444
- 1. Consolidate findings into a single list
445
- 2. Apply fixes for all actionable items (skip speculative optimizations)
446
- 3. Run tests to confirm fixes do not break anything
447
- 4. Report: CLEAN (no issues found), FIXED (issues found and resolved), or BLOCKED (issues found but cannot fix without architectural change)
429
+ 1. Scan all changed files for duplicated patterns
430
+ 2. Cross-reference against existing shared utilities and helpers
431
+ 3. Flag any logic that appears 3+ times without extraction
432
+ 4. Check if existing utilities could replace new code
433
+ 5. Output: list of reuse opportunities with file paths and line ranges
434
+ 6. Verdict: CLEAN (no issues) or ISSUES_FOUND (list)
448
435
  </instructions>
436
+ "
437
+ )
438
+ ```
439
+
440
+ **Reviewer 2 — Code Quality:**
441
+
442
+ ```
443
+ Task(
444
+ subagent_type="maxsim-code-reviewer",
445
+ prompt="
446
+ <objective>
447
+ Review plan {phase}-{plan} for code quality issues.
448
+ </objective>
449
449
 
450
450
  <files_to_review>
451
451
  {List all files created/modified during execution from SUMMARY.md key-files}
452
452
  </files_to_review>
453
+
454
+ <instructions>
455
+ 1. Check naming consistency with codebase conventions
456
+ 2. Verify error handling covers all external calls
457
+ 3. Look for dead code: unused imports, unreachable branches, commented-out code
458
+ 4. Check for unnecessary abstractions or premature generalizations
459
+ 5. Output: list of quality issues categorized by severity (BLOCKER/HIGH/MEDIUM)
460
+ 6. Verdict: CLEAN (no issues) or ISSUES_FOUND (list)
461
+ </instructions>
462
+ "
463
+ )
464
+ ```
465
+
466
+ **Reviewer 3 — Efficiency:**
467
+
468
+ ```
469
+ Task(
470
+ subagent_type="maxsim-code-reviewer",
471
+ prompt="
472
+ <objective>
473
+ Review plan {phase}-{plan} for efficiency issues.
474
+ </objective>
475
+
476
+ <files_to_review>
477
+ {List all files created/modified during execution from SUMMARY.md key-files}
478
+ </files_to_review>
479
+
480
+ <instructions>
481
+ 1. Find over-engineered solutions (parametrization serving one case, generic interfaces with one implementor)
482
+ 2. Identify repeated computations that could be cached or hoisted
483
+ 3. Check for unnecessary allocations in hot paths
484
+ 4. Look for redundant data transformations
485
+ 5. Output: list of efficiency issues with suggested removals
486
+ 6. Verdict: CLEAN (no issues) or ISSUES_FOUND (list)
487
+ </instructions>
488
+ "
489
+ )
490
+ ```
491
+
492
+ **Consolidation (after all 3 reviewers complete):**
493
+
494
+ After all three reviewers report:
495
+ - If ALL returned CLEAN: report CLEAN immediately, skip to next stage
496
+ - If ANY returned ISSUES_FOUND:
497
+ 1. Merge findings into deduplicated list
498
+ 2. Spawn single executor to apply fixes:
499
+
500
+ ```
501
+ Task(
502
+ subagent_type="maxsim-executor",
503
+ prompt="
504
+ <objective>
505
+ Apply simplification fixes for plan {phase}-{plan} based on reviewer findings.
506
+ </objective>
507
+
508
+ <findings>
509
+ {Merged deduplicated list of ISSUES_FOUND from all reviewers — BLOCKER and HIGH first, skip speculative optimizations}
510
+ </findings>
511
+
512
+ <files_to_review>
513
+ {List all files created/modified during execution from SUMMARY.md key-files}
514
+ </files_to_review>
515
+
516
+ <instructions>
517
+ 1. Apply fixes for all actionable items (BLOCKER and HIGH severity first)
518
+ 2. Skip speculative optimizations that lack clear evidence
519
+ 3. Run tests to confirm fixes do not break anything
520
+ 4. Report: FIXED (issues found and resolved) or BLOCKED (cannot fix without architectural change)
521
+ </instructions>
453
522
  "
454
523
  )
455
524
  ```
@@ -111,6 +111,30 @@ Execute all plans in a phase.
111
111
 
112
112
  Usage: `/maxsim:execute-phase 5`
113
113
 
114
+ **`/maxsim:sdd <phase-number>`**
115
+ Execute a phase using Spec-Driven Dispatch — fresh agent per task with 2-stage review.
116
+
117
+ - Each task dispatched to a fresh subagent with minimal context
118
+ - Mandatory two-stage review (spec compliance + code quality) between every task
119
+ - No task starts until the previous passes both review stages
120
+ - Fix agents spawned for failed reviews (up to 3 attempts)
121
+
122
+ Use when context rot is a concern or for sequential tasks requiring strict quality gates.
123
+
124
+ Usage: `/maxsim:sdd 3`
125
+
126
+ **`/maxsim:batch <task description>`**
127
+ Decompose a large task into independent units and execute each in an isolated git worktree.
128
+
129
+ - Spawns planner to decompose task into 5-30 independent units
130
+ - Validates no file overlap between units
131
+ - Each unit runs in its own worktree with its own branch and PR
132
+ - Tracks progress via status table, handles failures with retries
133
+
134
+ Use for large parallelizable changes where each unit can be independently merged.
135
+
136
+ Usage: `/maxsim:batch "Migrate all API endpoints to new auth middleware"`
137
+
114
138
  ### Quick Mode
115
139
 
116
140
  **`/maxsim:quick`**
@@ -243,6 +267,7 @@ Capture idea or task as todo from current conversation.
243
267
 
244
268
  Usage: `/maxsim:add-todo` (infers from conversation)
245
269
  Usage: `/maxsim:add-todo Add auth token refresh`
270
+ Usage: `/maxsim:add-todo --discuss Refactor auth module` (collaborative discussion before filing)
246
271
 
247
272
  **`/maxsim:check-todos [area]`**
248
273
  List pending todos and select one to work on.
@@ -256,6 +281,25 @@ List pending todos and select one to work on.
256
281
  Usage: `/maxsim:check-todos`
257
282
  Usage: `/maxsim:check-todos api`
258
283
 
284
+ ### Artefakte Management
285
+
286
+ **`/maxsim:artefakte [type] [--phase <N>]`**
287
+ View and manage project decisions, acceptance criteria, and no-gos.
288
+
289
+ - No arguments: lists all artefakte documents with status
290
+ - With type (`decisions`, `acceptance-criteria`, `no-gos`): view specific document
291
+ - With `--phase N`: scope to phase-level artefakte
292
+ - Interactive: add entries, view documents, switch between types
293
+
294
+ Artefakte documents:
295
+ - `DECISIONS.md` — Architectural and design decisions with rationale
296
+ - `ACCEPTANCE-CRITERIA.md` — Conditions that must be met for deliverables
297
+ - `NO-GOS.md` — Things explicitly out of scope or forbidden
298
+
299
+ Usage: `/maxsim:artefakte`
300
+ Usage: `/maxsim:artefakte decisions`
301
+ Usage: `/maxsim:artefakte no-gos --phase 3`
302
+
259
303
  ### User Acceptance Testing
260
304
 
261
305
  **`/maxsim:verify-work [phase]`**
@@ -343,6 +387,9 @@ Usage: `/maxsim:update`
343
387
  ├── PROJECT.md # Project vision
344
388
  ├── ROADMAP.md # Current phase breakdown
345
389
  ├── STATE.md # Project memory & context
390
+ ├── DECISIONS.md # Architectural decisions with rationale
391
+ ├── ACCEPTANCE-CRITERIA.md # Success conditions for deliverables
392
+ ├── NO-GOS.md # Explicit exclusions and boundaries
346
393
  ├── config.json # Workflow mode & gates
347
394
  ├── todos/ # Captured ideas and tasks
348
395
  │ ├── pending/ # Todos waiting to be worked on