hool-cli 0.7.4 → 0.9.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 (166) hide show
  1. package/dist/adapters/adapters.test.js +88 -10
  2. package/dist/adapters/adapters.test.js.map +1 -1
  3. package/dist/adapters/claude-code.js +48 -31
  4. package/dist/adapters/claude-code.js.map +1 -1
  5. package/dist/adapters/types.d.ts +2 -0
  6. package/dist/core/scaffold.d.ts +4 -4
  7. package/dist/core/scaffold.js +151 -48
  8. package/dist/core/scaffold.js.map +1 -1
  9. package/dist/core/templates.d.ts +2 -0
  10. package/dist/core/templates.js +31 -0
  11. package/dist/core/templates.js.map +1 -1
  12. package/dist/e2e.test.js +241 -1
  13. package/dist/e2e.test.js.map +1 -1
  14. package/dist/index.js +23 -12
  15. package/dist/index.js.map +1 -1
  16. package/dist/mcps/mcps.test.js +1 -0
  17. package/dist/mcps/mcps.test.js.map +1 -1
  18. package/package.json +4 -8
  19. package/presets/solo/NEXT-v0.1-context-mcp.md +95 -0
  20. package/presets/solo/docs/workflow-reference.md +784 -0
  21. package/presets/solo/mcps/README.md +129 -0
  22. package/presets/solo/mcps/testing-by-domain.md +138 -0
  23. package/presets/solo/memory/be-dev/best-practices.md +0 -0
  24. package/presets/solo/memory/be-dev/cold.md +4 -0
  25. package/presets/solo/memory/be-dev/hot.md +0 -0
  26. package/presets/solo/memory/be-dev/issues.md +0 -0
  27. package/presets/solo/memory/be-tech-lead/best-practices.md +0 -0
  28. package/presets/solo/memory/be-tech-lead/cold.md +4 -0
  29. package/presets/solo/memory/be-tech-lead/hot.md +0 -0
  30. package/presets/solo/memory/be-tech-lead/issues.md +0 -0
  31. package/presets/solo/memory/fe-dev/best-practices.md +0 -0
  32. package/presets/solo/memory/fe-dev/cold.md +4 -0
  33. package/presets/solo/memory/fe-dev/hot.md +0 -0
  34. package/presets/solo/memory/fe-dev/issues.md +0 -0
  35. package/presets/solo/memory/fe-tech-lead/best-practices.md +0 -0
  36. package/presets/solo/memory/fe-tech-lead/cold.md +4 -0
  37. package/presets/solo/memory/fe-tech-lead/hot.md +0 -0
  38. package/presets/solo/memory/fe-tech-lead/issues.md +0 -0
  39. package/presets/solo/memory/forensic/best-practices.md +0 -0
  40. package/presets/solo/memory/forensic/cold.md +4 -0
  41. package/presets/solo/memory/forensic/hot.md +0 -0
  42. package/presets/solo/memory/forensic/issues.md +0 -0
  43. package/presets/solo/memory/product-lead/best-practices.md +0 -0
  44. package/presets/solo/memory/product-lead/cold.md +5 -0
  45. package/presets/solo/memory/product-lead/hot.md +0 -0
  46. package/presets/solo/memory/product-lead/issues.md +0 -0
  47. package/presets/solo/memory/qa/best-practices.md +0 -0
  48. package/presets/solo/memory/qa/cold.md +4 -0
  49. package/presets/solo/memory/qa/hot.md +0 -0
  50. package/presets/solo/memory/qa/issues.md +0 -0
  51. package/presets/solo/operations/bugs.md +10 -0
  52. package/presets/solo/operations/current-phase.md +8 -0
  53. package/presets/solo/operations/inconsistencies.md +8 -0
  54. package/presets/solo/operations/issues.md +11 -0
  55. package/presets/solo/operations/metrics.md +4 -0
  56. package/presets/solo/operations/needs-human-review.md +8 -0
  57. package/presets/solo/operations/task-board.md +10 -0
  58. package/presets/team/agents/claude/be-dev.md +166 -0
  59. package/presets/team/agents/claude/be-tech-lead.md +233 -0
  60. package/presets/team/agents/claude/fe-dev.md +202 -0
  61. package/presets/team/agents/claude/fe-tech-lead.md +229 -0
  62. package/presets/team/agents/claude/forensic.md +158 -0
  63. package/presets/team/agents/claude/governor.md +99 -0
  64. package/presets/team/agents/claude/product-lead.md +602 -0
  65. package/presets/team/agents/claude/qa.md +155 -0
  66. package/presets/team/cli/git-setup.md +175 -0
  67. package/presets/team/hooks/completion-checklist.sh +39 -0
  68. package/presets/team/hooks/governor-trigger.sh +30 -0
  69. package/presets/team/hooks/identity-reminder.sh +30 -0
  70. package/presets/team/hooks/login-nudge.sh +64 -0
  71. package/presets/team/hooks/metrics.sh +23 -0
  72. package/presets/team/mcps/mcps.json +50 -0
  73. package/presets/team/mcps/testing-by-domain.md +68 -0
  74. package/presets/team/prompts/claude-md.md +185 -0
  75. package/presets/team/settings/claude-settings.json +76 -0
  76. package/presets/team/skills/architect.md +75 -0
  77. package/presets/team/skills/auditor.md +89 -0
  78. package/presets/team/skills/brainstormer.md +53 -0
  79. package/presets/team/skills/code-reviewer.md +77 -0
  80. package/presets/team/skills/contract-negotiator.md +98 -0
  81. package/presets/team/skills/designer.md +87 -0
  82. package/presets/team/skills/root-cause-analyst.md +85 -0
  83. package/presets/team/skills/speccer.md +85 -0
  84. package/presets/team/skills/tdd-implementer.md +104 -0
  85. package/presets/team/skills/test-engineer.md +87 -0
  86. package/presets/team/templates/memory/best-practices.md +6 -0
  87. package/presets/team/templates/memory/client-preferences.md +14 -0
  88. package/presets/team/templates/memory/cold.md +5 -0
  89. package/presets/team/templates/memory/governor-feedback.md +5 -0
  90. package/presets/team/templates/memory/hot.md +12 -0
  91. package/presets/team/templates/memory/identity.md +22 -0
  92. package/presets/team/templates/memory/issues.md +9 -0
  93. package/presets/team/templates/memory/operational-knowledge.md +19 -0
  94. package/presets/team/templates/memory/picked-tasks.md +6 -0
  95. package/presets/team/templates/memory/skill.md +10 -0
  96. package/presets/team/templates/memory/task-log.md +17 -0
  97. package/presets/team/templates/operations/bugs.md +17 -0
  98. package/presets/team/templates/operations/client-preferences.md +21 -0
  99. package/presets/team/templates/operations/current-phase.md +4 -0
  100. package/presets/team/templates/operations/governor-feedback.md +11 -0
  101. package/presets/team/templates/operations/governor-log.md +14 -0
  102. package/presets/team/templates/operations/governor-rules.md +22 -0
  103. package/presets/team/templates/operations/human-feedback.md +7 -0
  104. package/presets/team/templates/operations/inconsistencies.md +12 -0
  105. package/presets/team/templates/operations/issues.md +13 -0
  106. package/presets/team/templates/operations/metrics.md +4 -0
  107. package/presets/team/templates/operations/needs-human-review.md +11 -0
  108. package/presets/team/templates/operations/task-board.md +11 -0
  109. package/presets/team/templates/phases/00-init/project-profile.md +45 -0
  110. package/presets/team/templates/phases/01-brainstorm/brainstorm.md +33 -0
  111. package/presets/team/templates/phases/02-spec/spec.md +28 -0
  112. package/presets/team/templates/phases/03-design/design.md +26 -0
  113. package/presets/team/templates/phases/04-architecture/architecture.md +26 -0
  114. package/presets/team/templates/phases/05-contracts/_index.md +20 -0
  115. package/presets/team/templates/phases/09-qa/test-plan.md +29 -0
  116. package/presets/team/templates/phases/12-retrospective/retrospective.md +24 -0
  117. /package/{agents → presets/solo/agents}/claude/be-dev.md +0 -0
  118. /package/{agents → presets/solo/agents}/claude/be-tech-lead.md +0 -0
  119. /package/{agents → presets/solo/agents}/claude/fe-dev.md +0 -0
  120. /package/{agents → presets/solo/agents}/claude/fe-tech-lead.md +0 -0
  121. /package/{agents → presets/solo/agents}/claude/forensic.md +0 -0
  122. /package/{agents → presets/solo/agents}/claude/governor.md +0 -0
  123. /package/{agents → presets/solo/agents}/claude/qa.md +0 -0
  124. /package/{agents → presets/solo/agents}/cursor/be-dev.md +0 -0
  125. /package/{agents → presets/solo/agents}/cursor/be-tech-lead.md +0 -0
  126. /package/{agents → presets/solo/agents}/cursor/fe-dev.md +0 -0
  127. /package/{agents → presets/solo/agents}/cursor/fe-tech-lead.md +0 -0
  128. /package/{agents → presets/solo/agents}/cursor/forensic.md +0 -0
  129. /package/{agents → presets/solo/agents}/cursor/governor.md +0 -0
  130. /package/{agents → presets/solo/agents}/cursor/qa.md +0 -0
  131. /package/{hooks → presets/solo/hooks}/agent-checklist.sh +0 -0
  132. /package/{hooks → presets/solo/hooks}/block-pl-src-write.sh +0 -0
  133. /package/{hooks → presets/solo/hooks}/inject-pl-context.sh +0 -0
  134. /package/{hooks → presets/solo/hooks}/pre-compact.sh +0 -0
  135. /package/{hooks → presets/solo/hooks}/run-if-profile.sh +0 -0
  136. /package/{hooks → presets/solo/hooks}/session-start.sh +0 -0
  137. /package/{hooks → presets/solo/hooks}/suggest-compact.sh +0 -0
  138. /package/{hooks → presets/solo/hooks}/track-prompt-count.sh +0 -0
  139. /package/{prompts → presets/solo/prompts}/agents/05-fe-tech-lead.md +0 -0
  140. /package/{prompts → presets/solo/prompts}/agents/06-be-tech-lead.md +0 -0
  141. /package/{prompts → presets/solo/prompts}/agents/08-be-dev.md +0 -0
  142. /package/{prompts → presets/solo/prompts}/agents/08-fe-dev.md +0 -0
  143. /package/{prompts → presets/solo/prompts}/agents/10-qa.md +0 -0
  144. /package/{prompts → presets/solo/prompts}/agents/11-forensic.md +0 -0
  145. /package/{prompts → presets/solo/prompts}/agents/governor.md +0 -0
  146. /package/{prompts → presets/solo/prompts}/checklists/code-review.md +0 -0
  147. /package/{prompts → presets/solo/prompts}/orchestrator.md +0 -0
  148. /package/{prompts → presets/solo/prompts}/skills/01-brainstorm.md +0 -0
  149. /package/{prompts → presets/solo/prompts}/skills/02-spec.md +0 -0
  150. /package/{prompts → presets/solo/prompts}/skills/03-design.md +0 -0
  151. /package/{prompts → presets/solo/prompts}/skills/04-architecture.md +0 -0
  152. /package/{rules → presets/solo/rules}/cursor/be-dev.mdc +0 -0
  153. /package/{rules → presets/solo/rules}/cursor/be-tech-lead.mdc +0 -0
  154. /package/{rules → presets/solo/rules}/cursor/fe-dev.mdc +0 -0
  155. /package/{rules → presets/solo/rules}/cursor/fe-tech-lead.mdc +0 -0
  156. /package/{rules → presets/solo/rules}/cursor/forensic.mdc +0 -0
  157. /package/{rules → presets/solo/rules}/cursor/governor.mdc +0 -0
  158. /package/{rules → presets/solo/rules}/cursor/qa.mdc +0 -0
  159. /package/{settings → presets/solo/settings}/be-dev.json +0 -0
  160. /package/{settings → presets/solo/settings}/be-tech-lead.json +0 -0
  161. /package/{settings → presets/solo/settings}/claude-settings.json +0 -0
  162. /package/{settings → presets/solo/settings}/fe-dev.json +0 -0
  163. /package/{settings → presets/solo/settings}/fe-tech-lead.json +0 -0
  164. /package/{settings → presets/solo/settings}/forensic.json +0 -0
  165. /package/{settings → presets/solo/settings}/governor.json +0 -0
  166. /package/{settings → presets/solo/settings}/qa.json +0 -0
@@ -0,0 +1,22 @@
1
+ # Governor Rules
2
+
3
+ <!-- Hard rules that all agents must follow. Governor audits against these. -->
4
+ <!-- Governor can APPEND new rules but NEVER modify or remove existing ones. -->
5
+
6
+ ## Core Rules
7
+
8
+ - [CRITICAL] No agent may modify its own prompt file or any other agent's prompt file. Escalate to needs-human-review.md.
9
+ - [CRITICAL] Product Lead must NEVER edit files in src/frontend/ or src/backend/ directly. Always message the assigned teammate.
10
+ - [CRITICAL] Devs must NEVER make architectural decisions. Follow LLD exactly. Message lead if something should change.
11
+ - [CRITICAL] No agent may modify governor-rules.md except the Governor (append only) or a human.
12
+ - [HIGH] All agents must update their memory files (cold.md, hot.md, task-log.md) before going idle.
13
+ - [HIGH] All agents must read governor-feedback.md before starting work and verify they don't repeat violations.
14
+ - [HIGH] Devs must follow TDD: write tests before implementation. Implementation-first is a violation.
15
+ - [HIGH] FE Dev and FE Lead commit to src/frontend/ git only. BE Dev and BE Lead commit to src/backend/ git only. Cross-repo commits are violations.
16
+ - [HIGH] Contracts in .hool/phases/05-contracts/ are the source of truth for API shapes. Any deviation by devs is a violation.
17
+ - [MEDIUM] All agents must read their client-preferences.md before making decisions and honour preferences.
18
+ - [MEDIUM] No agent may create files outside their writable paths.
19
+ - [MEDIUM] Agents must use teammate messaging for real-time coordination, not file-based routing.
20
+
21
+ ## Added Rules
22
+ <!-- Governor appends new rules below this line -->
@@ -0,0 +1,7 @@
1
+ # Human Feedback
2
+
3
+ <!-- General feedback from the user that applies across the project. -->
4
+ <!-- Captured by PL whenever the user gives guidance or correction. -->
5
+
6
+ <!-- Format: -->
7
+ <!-- - [date]: [feedback] — context: [why they said this] -->
@@ -0,0 +1,12 @@
1
+ # Inconsistencies
2
+
3
+ <!-- Doc-vs-doc and doc-vs-code inconsistencies. -->
4
+ <!-- Written by leads (review), devs (implementation), and PL (cross-check). -->
5
+
6
+ <!-- Format: -->
7
+ <!-- ## INC-XXX: [title] -->
8
+ <!-- - **Found by**: [agent] -->
9
+ <!-- - **Type**: spec-vs-code | contract-vs-code | design-vs-code | doc-vs-doc -->
10
+ <!-- - **Source A**: [what doc A says] — file: [path] -->
11
+ <!-- - **Source B**: [what doc B / code says] — file: [path] -->
12
+ <!-- - **Resolution**: [how it was resolved] | pending -->
@@ -0,0 +1,13 @@
1
+ # Issues
2
+
3
+ <!-- Known issues, tech debt patterns, and systemic problems. -->
4
+ <!-- Written by Forensic (pattern detection), devs (code-level debt), and leads (architectural debt). -->
5
+
6
+ <!-- Format: -->
7
+ <!-- ## ISS-XXX: [title] -->
8
+ <!-- - **Found by**: [agent] -->
9
+ <!-- - **Type**: bug-pattern | tech-debt | design-flaw -->
10
+ <!-- - **Description**: what's happening and why -->
11
+ <!-- - **Affected files**: list -->
12
+ <!-- - **Fix strategy**: how to fix properly -->
13
+ <!-- - **Related bugs**: BUG-XXX, BUG-YYY -->
@@ -0,0 +1,4 @@
1
+ # Metrics
2
+
3
+ - tool-calls: 0
4
+ - task-completions: 0
@@ -0,0 +1,11 @@
1
+ # Needs Human Review
2
+
3
+ <!-- Items requiring human decision or approval. -->
4
+ <!-- Agents write here when they encounter ambiguity, need process changes, or have structural suggestions. -->
5
+
6
+ <!-- Format: -->
7
+ <!-- ## [date] [agent]: [title] -->
8
+ <!-- - **Context**: why this needs human input -->
9
+ <!-- - **Options**: what the choices are -->
10
+ <!-- - **Recommendation**: agent's suggested option (if any) -->
11
+ <!-- - **Status**: pending | reviewed | resolved -->
@@ -0,0 +1,11 @@
1
+ # Task Board
2
+
3
+ ## Current Phase Tasks
4
+ <!-- Tasks for the active phase. Created by leads (Phase 6) or PL. -->
5
+ <!-- Format: - [ ] TASK-XXX: description | assigned: agent | files: list | depends: task-ids | contract: ref | spec: ref -->
6
+
7
+ ## Completed Tasks
8
+ <!-- Moved here when done -->
9
+
10
+ ## Blocked Tasks
11
+ <!-- Tasks that can't proceed. Include reason. -->
@@ -0,0 +1,45 @@
1
+ # Project Profile
2
+
3
+ ## Project
4
+ - **Name**: {{PROJECT_NAME}}
5
+ - **Type**: web-app | api-only | cli-tool | animation | browser-game | mobile | desktop | other
6
+ - **Description**: {{ONE_LINE_DESCRIPTION}}
7
+
8
+ ## Mode
9
+ - **Execution mode**: interactive | full-hool
10
+
11
+ ## Applicable Phases
12
+ | # | Phase | Applies | Notes |
13
+ |---|-------|---------|-------|
14
+ | 0 | Init | yes | — |
15
+ | 1 | Brainstorm | yes | — |
16
+ | 2 | Spec | yes | — |
17
+ | 3 | Design | {{yes/no}} | Skip for API-only, CLI |
18
+ | 4 | Architecture | yes | — |
19
+ | 5 | Contracts | {{yes/no}} | Skip if no FE-BE split |
20
+ | 6 | Tasks | yes | — |
21
+ | 7 | Implementation | yes | — |
22
+ | 8 | Review | yes | — |
23
+ | 9 | QA | yes | — |
24
+ | 10 | Forensic | yes | On-demand (bug loop) |
25
+ | 11 | Ship | yes | — |
26
+ | 12 | Retrospective | yes | — |
27
+
28
+ ## Active Agents
29
+ | Agent | Active | Reason |
30
+ |-------|--------|--------|
31
+ | Product Lead | yes | Always |
32
+ | BE Tech Lead | {{yes/no}} | {{reason}} |
33
+ | FE Tech Lead | {{yes/no}} | {{reason}} |
34
+ | BE Dev | {{yes/no}} | {{reason}} |
35
+ | FE Dev | {{yes/no}} | {{reason}} |
36
+ | QA | yes | Always |
37
+ | Forensic | yes | Always |
38
+ | Governor | yes | Always |
39
+
40
+ ## Git Remotes
41
+ - **Frontend**: {{url or "local only"}}
42
+ - **Backend**: {{url or "local only"}}
43
+
44
+ ## Hard Constraints
45
+ <!-- e.g., "Must run on Node 18+", "60fps minimum for animations" -->
@@ -0,0 +1,33 @@
1
+ # Brainstorm
2
+
3
+ ## Vision
4
+ <!-- One sentence: what is this? -->
5
+
6
+ ## Users
7
+ <!-- Who uses it and why? -->
8
+
9
+ ## Core Journeys
10
+ <!-- 3-5 critical user paths -->
11
+ 1.
12
+ 2.
13
+ 3.
14
+
15
+ ## Constraints
16
+ ### Technical
17
+ ### Business
18
+ ### User
19
+
20
+ ## Scope Boundary
21
+ ### In (MVP)
22
+ ### Out (Deferred)
23
+
24
+ ## Risks
25
+ <!-- Top 3 assumptions that could be wrong -->
26
+ 1.
27
+ 2.
28
+ 3.
29
+
30
+ ## Integrations
31
+ <!-- External dependencies and status -->
32
+ | Service | Purpose | Status |
33
+ |---------|---------|--------|
@@ -0,0 +1,28 @@
1
+ # Spec
2
+
3
+ ## Overview
4
+ <!-- What this feature set does -->
5
+
6
+ ## User Stories
7
+
8
+ ### US-001: [Story Title]
9
+ **As a** [role]
10
+ **I want to** [action]
11
+ **So that** [benefit]
12
+
13
+ #### Acceptance Criteria
14
+ - [ ] AC-1: GIVEN [pre] WHEN [action] THEN [result]
15
+
16
+ #### Edge Cases
17
+ - EC-1: [scenario] → [expected behavior]
18
+
19
+ ## Data Model
20
+ <!-- High-level entity relationships -->
21
+
22
+ ## Non-Functional Requirements
23
+ ### Performance
24
+ ### Security
25
+ ### Accessibility
26
+
27
+ ## Open Questions
28
+ <!-- Anything needing user clarification -->
@@ -0,0 +1,26 @@
1
+ # Design
2
+
3
+ ## Design System
4
+ ### Colors
5
+ ### Typography
6
+ ### Spacing
7
+ ### Border Radius
8
+ ### Shadows
9
+ ### Breakpoints
10
+
11
+ ## Screen Inventory
12
+ | Screen | Route | Description | Design Card |
13
+ |--------|-------|-------------|-------------|
14
+
15
+ ## Component System
16
+ ### Atoms
17
+ ### Molecules
18
+ ### Organisms
19
+ ### Templates/Layouts
20
+
21
+ ## Interaction Patterns
22
+ ### Form Submission
23
+ ### Error Display
24
+ ### Loading States
25
+ ### Empty States
26
+ ### Transitions
@@ -0,0 +1,26 @@
1
+ # Architecture (Shared)
2
+
3
+ ## Tech Stack
4
+ | Layer | Choice | Why |
5
+ |-------|--------|-----|
6
+ | Frontend | | |
7
+ | Backend | | |
8
+ | Database | | |
9
+ | Auth | | |
10
+ | Deployment | | |
11
+
12
+ ## System Diagram
13
+ <!-- Text-based system diagram showing major components -->
14
+
15
+ ## Module Breakdown
16
+ <!-- Logical modules/packages for both FE and BE -->
17
+
18
+ ## Cross-Cutting Concerns
19
+ ### Authentication Flow
20
+ ### Error Handling Strategy
21
+ ### Logging Strategy
22
+ ### Environment Configuration
23
+
24
+ ## Decisions
25
+ <!-- Non-obvious architectural decisions with trade-offs -->
26
+ <!-- See skills/architect.md for decision format -->
@@ -0,0 +1,20 @@
1
+ # API Contracts Index
2
+
3
+ <!-- Master list of all API contracts, grouped by domain. -->
4
+ <!-- Each domain has its own file with full endpoint specifications. -->
5
+
6
+ ## Domains
7
+ | Domain | File | Endpoints |
8
+ |--------|------|-----------|
9
+
10
+ ## Conventions
11
+ - **Base URL**: `/api/v1/`
12
+ - **Auth**: Bearer token in Authorization header
13
+ - **Error format**: `{ "error": "ERROR_CODE", "message": "Human readable", "details": [...] }`
14
+ - **Pagination**: `?page=1&limit=20` → `{ "data": [...], "meta": { "page": 1, "limit": 20, "total": 100 } }`
15
+ - **Timestamps**: ISO 8601 format
16
+
17
+ ## Agreement
18
+ - **BE Lead (POC)**: [agreed / pending]
19
+ - **FE Lead (Rebuttal)**: [agreed / pending]
20
+ - **Date**: [YYYY-MM-DD]
@@ -0,0 +1,29 @@
1
+ # Test Plan
2
+
3
+ ## Coverage Matrix
4
+ | Spec Ref | Acceptance Criterion | Test Case(s) | Type | Status |
5
+ |----------|---------------------|--------------|------|--------|
6
+
7
+ ## Test Infrastructure
8
+ - **Unit test framework**: {{framework}}
9
+ - **Integration test framework**: {{framework}}
10
+ - **E2E test framework**: {{framework}}
11
+ - **Visual testing**: Playwright screenshots vs design cards
12
+ - **Test data**: {{strategy}}
13
+
14
+ ## Test Cases
15
+ <!-- For projects with >10 cases, split into cases/ directory -->
16
+
17
+ ### TC-001: [Test Name]
18
+ - **Type**: unit | integration | e2e | visual
19
+ - **Source**: US-XXX/AC-X
20
+ - **Precondition**: [setup]
21
+ - **Steps**:
22
+ 1. [action]
23
+ - **Expected**: [result]
24
+ - **Edge variant**: [if applicable]
25
+
26
+ ## Execution Results
27
+ <!-- Filled during test execution -->
28
+ | Run | Date | Unit | Integration | E2E | Visual | Bugs Found |
29
+ |-----|------|------|-------------|-----|--------|------------|
@@ -0,0 +1,24 @@
1
+ # Retrospective — {{CYCLE_NAME}}
2
+
3
+ ## Cross-Agent Patterns
4
+ <!-- Patterns observed across multiple agents -->
5
+
6
+ ## Plan vs Reality
7
+ <!-- Where spec/architecture diverged from what was built -->
8
+
9
+ ## What Went Well
10
+ <!-- Things that worked smoothly -->
11
+
12
+ ## What Didn't
13
+ <!-- Things that caused friction, rework, or confusion -->
14
+
15
+ ## Suggested Process Changes
16
+ <!-- Severity: high | medium | low -->
17
+ - **[severity]** [suggestion] — reason: [why]
18
+
19
+ ## Metrics
20
+ - Bugs found: {{count}}
21
+ - Inconsistencies logged: {{count}}
22
+ - Tasks planned vs actual: {{planned}} / {{actual}}
23
+ - Phases that caused rework: {{list}}
24
+ - Governor violations: {{count}}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes