mindforge-cc 2.0.0 → 2.1.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.
- package/.agent/bin/lib/commands.cjs +959 -0
- package/.agent/bin/lib/config.cjs +421 -0
- package/.agent/bin/lib/core.cjs +1166 -0
- package/.agent/bin/lib/frontmatter.cjs +307 -0
- package/.agent/bin/lib/init.cjs +1336 -0
- package/.agent/bin/lib/milestone.cjs +252 -0
- package/.agent/bin/lib/model-profiles.cjs +68 -0
- package/.agent/bin/lib/phase.cjs +888 -0
- package/.agent/bin/lib/profile-output.cjs +952 -0
- package/.agent/bin/lib/profile-pipeline.cjs +539 -0
- package/.agent/bin/lib/roadmap.cjs +329 -0
- package/.agent/bin/lib/security.cjs +356 -0
- package/.agent/bin/lib/state.cjs +969 -0
- package/.agent/bin/lib/template.cjs +222 -0
- package/.agent/bin/lib/uat.cjs +189 -0
- package/.agent/bin/lib/verify.cjs +851 -0
- package/.agent/bin/lib/workstream.cjs +491 -0
- package/.agent/bin/mindforge-tools.cjs +897 -0
- package/.agent/file-manifest.json +219 -0
- package/.agent/hooks/mindforge-check-update.js +114 -0
- package/.agent/hooks/mindforge-context-monitor.js +156 -0
- package/.agent/hooks/mindforge-prompt-guard.js +96 -0
- package/.agent/hooks/mindforge-statusline.js +119 -0
- package/.agent/hooks/mindforge-workflow-guard.js +94 -0
- package/.agent/mindforge/add-backlog.md +32 -0
- package/.agent/mindforge/agent.md +31 -0
- package/.agent/mindforge/discuss-phase.md +1 -1
- package/.agent/mindforge/do.md +31 -0
- package/.agent/mindforge/help.md +1 -1
- package/.agent/mindforge/learn.md +3 -2
- package/.agent/mindforge/note.md +35 -0
- package/.agent/mindforge/plant-seed.md +31 -0
- package/.agent/mindforge/research.md +3 -2
- package/.agent/mindforge/review-backlog.md +34 -0
- package/.agent/mindforge/session-report.md +39 -0
- package/.agent/mindforge/steer.md +1 -1
- package/.agent/mindforge/ui-phase.md +34 -0
- package/.agent/mindforge/ui-review.md +36 -0
- package/.agent/mindforge/validate-phase.md +31 -0
- package/.agent/mindforge/workstreams.md +35 -0
- package/.agent/settings.json +38 -0
- package/.agent/skills/mindforge-add-backlog/SKILL.md +72 -0
- package/.agent/skills/mindforge-add-phase/SKILL.md +39 -0
- package/.agent/skills/mindforge-add-tests/SKILL.md +28 -0
- package/.agent/skills/mindforge-add-todo/SKILL.md +42 -0
- package/.agent/skills/mindforge-audit-milestone/SKILL.md +29 -0
- package/.agent/skills/mindforge-audit-uat/SKILL.md +20 -0
- package/.agent/skills/mindforge-autonomous/SKILL.md +33 -0
- package/.agent/skills/mindforge-check-todos/SKILL.md +40 -0
- package/.agent/skills/mindforge-cleanup/SKILL.md +19 -0
- package/.agent/skills/mindforge-complete-milestone/SKILL.md +131 -0
- package/.agent/skills/mindforge-debug/SKILL.md +163 -0
- package/.agent/skills/mindforge-discuss-phase/SKILL.md +54 -0
- package/.agent/skills/mindforge-do/SKILL.md +26 -0
- package/.agent/skills/mindforge-execute-phase/SKILL.md +49 -0
- package/.agent/skills/mindforge-fast/SKILL.md +23 -0
- package/.agent/skills/mindforge-forensics/SKILL.md +49 -0
- package/.agent/skills/mindforge-health/SKILL.md +17 -0
- package/.agent/skills/mindforge-help/SKILL.md +23 -0
- package/.agent/skills/mindforge-insert-phase/SKILL.md +28 -0
- package/.agent/skills/mindforge-join-discord/SKILL.md +19 -0
- package/.agent/skills/mindforge-list-phase-assumptions/SKILL.md +41 -0
- package/.agent/skills/mindforge-list-workspaces/SKILL.md +17 -0
- package/.agent/skills/mindforge-manager/SKILL.md +32 -0
- package/.agent/skills/mindforge-map-codebase/SKILL.md +64 -0
- package/.agent/skills/mindforge-milestone-summary/SKILL.md +44 -0
- package/.agent/skills/mindforge-new-milestone/SKILL.md +38 -0
- package/.agent/skills/mindforge-new-project/SKILL.md +36 -0
- package/.agent/skills/mindforge-new-workspace/SKILL.md +39 -0
- package/.agent/skills/mindforge-next/SKILL.md +19 -0
- package/.agent/skills/mindforge-note/SKILL.md +29 -0
- package/.agent/skills/mindforge-pause-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-plan-milestone-gaps/SKILL.md +28 -0
- package/.agent/skills/mindforge-plan-phase/SKILL.md +37 -0
- package/.agent/skills/mindforge-plant-seed/SKILL.md +22 -0
- package/.agent/skills/mindforge-pr-branch/SKILL.md +21 -0
- package/.agent/skills/mindforge-profile-user/SKILL.md +38 -0
- package/.agent/skills/mindforge-progress/SKILL.md +19 -0
- package/.agent/skills/mindforge-quick/SKILL.md +38 -0
- package/.agent/skills/mindforge-reapply-patches/SKILL.md +124 -0
- package/.agent/skills/mindforge-remove-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-remove-workspace/SKILL.md +22 -0
- package/.agent/skills/mindforge-research-phase/SKILL.md +186 -0
- package/.agent/skills/mindforge-resume-work/SKILL.md +35 -0
- package/.agent/skills/mindforge-review/SKILL.md +31 -0
- package/.agent/skills/mindforge-review-backlog/SKILL.md +58 -0
- package/.agent/skills/mindforge-session-report/SKILL.md +16 -0
- package/.agent/skills/mindforge-set-profile/SKILL.md +9 -0
- package/.agent/skills/mindforge-settings/SKILL.md +32 -0
- package/.agent/skills/mindforge-ship/SKILL.md +16 -0
- package/.agent/skills/mindforge-stats/SKILL.md +16 -0
- package/.agent/skills/mindforge-thread/SKILL.md +123 -0
- package/.agent/skills/mindforge-ui-phase/SKILL.md +24 -0
- package/.agent/skills/mindforge-ui-review/SKILL.md +24 -0
- package/.agent/skills/mindforge-update/SKILL.md +35 -0
- package/.agent/skills/mindforge-validate-phase/SKILL.md +26 -0
- package/.agent/skills/mindforge-verify-work/SKILL.md +30 -0
- package/.agent/skills/mindforge-workstreams/SKILL.md +65 -0
- package/.agent/workflows/mindforge-add-phase.md +112 -0
- package/.agent/workflows/mindforge-add-tests.md +351 -0
- package/.agent/workflows/mindforge-add-todo.md +158 -0
- package/.agent/workflows/mindforge-audit-milestone.md +332 -0
- package/.agent/workflows/mindforge-audit-uat.md +109 -0
- package/.agent/workflows/mindforge-autonomous.md +815 -0
- package/.agent/workflows/mindforge-check-todos.md +177 -0
- package/.agent/workflows/mindforge-cleanup.md +152 -0
- package/.agent/workflows/mindforge-complete-milestone.md +766 -0
- package/.agent/workflows/mindforge-diagnose-issues.md +220 -0
- package/.agent/workflows/mindforge-discovery-phase.md +289 -0
- package/.agent/workflows/mindforge-discuss-phase-assumptions.md +645 -0
- package/.agent/workflows/mindforge-discuss-phase.md +1047 -0
- package/.agent/workflows/mindforge-do.md +104 -0
- package/.agent/workflows/mindforge-execute-phase.md +838 -0
- package/.agent/workflows/mindforge-execute-plan.md +509 -0
- package/.agent/workflows/mindforge-fast.md +105 -0
- package/.agent/workflows/mindforge-forensics.md +265 -0
- package/.agent/workflows/mindforge-health.md +181 -0
- package/.agent/workflows/mindforge-help.md +606 -0
- package/.agent/workflows/mindforge-insert-phase.md +130 -0
- package/.agent/workflows/mindforge-list-phase-assumptions.md +178 -0
- package/.agent/workflows/mindforge-list-workspaces.md +56 -0
- package/.agent/workflows/mindforge-manager.md +360 -0
- package/.agent/workflows/mindforge-map-codebase.md +370 -0
- package/.agent/workflows/mindforge-milestone-summary.md +223 -0
- package/.agent/workflows/mindforge-new-milestone.md +469 -0
- package/.agent/workflows/mindforge-new-project.md +1226 -0
- package/.agent/workflows/mindforge-new-workspace.md +237 -0
- package/.agent/workflows/mindforge-next.md +97 -0
- package/.agent/workflows/mindforge-node-repair.md +92 -0
- package/.agent/workflows/mindforge-note.md +156 -0
- package/.agent/workflows/mindforge-pause-work.md +176 -0
- package/.agent/workflows/mindforge-plan-milestone-gaps.md +273 -0
- package/.agent/workflows/mindforge-plan-phase.md +848 -0
- package/.agent/workflows/mindforge-plant-seed.md +169 -0
- package/.agent/workflows/mindforge-pr-branch.md +129 -0
- package/.agent/workflows/mindforge-profile-user.md +450 -0
- package/.agent/workflows/mindforge-progress.md +507 -0
- package/.agent/workflows/mindforge-quick.md +732 -0
- package/.agent/workflows/mindforge-remove-phase.md +155 -0
- package/.agent/workflows/mindforge-remove-workspace.md +90 -0
- package/.agent/workflows/mindforge-research-phase.md +74 -0
- package/.agent/workflows/mindforge-resume-project.md +325 -0
- package/.agent/workflows/mindforge-review.md +228 -0
- package/.agent/workflows/mindforge-session-report.md +146 -0
- package/.agent/workflows/mindforge-settings.md +283 -0
- package/.agent/workflows/mindforge-ship.md +228 -0
- package/.agent/workflows/mindforge-stats.md +60 -0
- package/.agent/workflows/mindforge-transition.md +671 -0
- package/.agent/workflows/mindforge-ui-phase.md +290 -0
- package/.agent/workflows/mindforge-ui-review.md +157 -0
- package/.agent/workflows/mindforge-update.md +323 -0
- package/.agent/workflows/mindforge-validate-phase.md +167 -0
- package/.agent/workflows/mindforge-verify-phase.md +254 -0
- package/.agent/workflows/mindforge-verify-work.md +623 -0
- package/.claude/commands/mindforge/add-backlog.md +32 -0
- package/.claude/commands/mindforge/agent.md +31 -0
- package/.claude/commands/mindforge/approve.md +27 -15
- package/.claude/commands/mindforge/audit.md +30 -26
- package/.claude/commands/mindforge/auto.md +29 -18
- package/.claude/commands/mindforge/benchmark.md +26 -29
- package/.claude/commands/mindforge/browse.md +24 -22
- package/.claude/commands/mindforge/complete-milestone.md +28 -14
- package/.claude/commands/mindforge/costs.md +26 -9
- package/.claude/commands/mindforge/cross-review.md +27 -13
- package/.claude/commands/mindforge/dashboard.md +35 -98
- package/.claude/commands/mindforge/debug.md +34 -126
- package/.claude/commands/mindforge/discuss-phase.md +36 -138
- package/.claude/commands/mindforge/do.md +31 -0
- package/.claude/commands/mindforge/execute-phase.md +37 -190
- package/.claude/commands/mindforge/health.md +27 -17
- package/.claude/commands/mindforge/help.md +25 -19
- package/.claude/commands/mindforge/init-org.md +37 -131
- package/.claude/commands/mindforge/init-project.md +40 -155
- package/.claude/commands/mindforge/install-skill.md +32 -15
- package/.claude/commands/mindforge/learn.md +36 -142
- package/.claude/commands/mindforge/map-codebase.md +36 -298
- package/.claude/commands/mindforge/marketplace.md +33 -120
- package/.claude/commands/mindforge/metrics.md +29 -18
- package/.claude/commands/mindforge/migrate.md +33 -40
- package/.claude/commands/mindforge/milestone.md +35 -12
- package/.claude/commands/mindforge/new-runtime.md +25 -15
- package/.claude/commands/mindforge/next.md +34 -105
- package/.claude/commands/mindforge/note.md +35 -0
- package/.claude/commands/mindforge/plan-phase.md +34 -125
- package/.claude/commands/mindforge/plant-seed.md +31 -0
- package/.claude/commands/mindforge/plugins.md +30 -36
- package/.claude/commands/mindforge/pr-review.md +32 -41
- package/.claude/commands/mindforge/profile-team.md +26 -19
- package/.claude/commands/mindforge/publish-skill.md +28 -17
- package/.claude/commands/mindforge/qa.md +27 -12
- package/.claude/commands/mindforge/quick.md +35 -135
- package/.claude/commands/mindforge/release.md +27 -8
- package/.claude/commands/mindforge/remember.md +25 -10
- package/.claude/commands/mindforge/research.md +27 -9
- package/.claude/commands/mindforge/retrospective.md +28 -22
- package/.claude/commands/mindforge/review-backlog.md +34 -0
- package/.claude/commands/mindforge/review.md +37 -157
- package/.claude/commands/mindforge/security-scan.md +34 -233
- package/.claude/commands/mindforge/session-report.md +39 -0
- package/.claude/commands/mindforge/ship.md +34 -100
- package/.claude/commands/mindforge/skills.md +36 -141
- package/.claude/commands/mindforge/status.md +30 -104
- package/.claude/commands/mindforge/steer.md +25 -10
- package/.claude/commands/mindforge/sync-confluence.md +28 -9
- package/.claude/commands/mindforge/sync-jira.md +32 -12
- package/.claude/commands/mindforge/tokens.md +25 -6
- package/.claude/commands/mindforge/ui-phase.md +34 -0
- package/.claude/commands/mindforge/ui-review.md +36 -0
- package/.claude/commands/mindforge/update.md +33 -42
- package/.claude/commands/mindforge/validate-phase.md +31 -0
- package/.claude/commands/mindforge/verify-phase.md +30 -62
- package/.claude/commands/mindforge/workspace.md +28 -25
- package/.claude/commands/mindforge/workstreams.md +35 -0
- package/.mindforge/memory/decision-library.jsonl +0 -0
- package/.mindforge/memory/knowledge-base.jsonl +7 -0
- package/.mindforge/memory/pattern-library.jsonl +1 -0
- package/.mindforge/memory/team-preferences.jsonl +4 -0
- package/.mindforge/personas/advisor-researcher.md +89 -0
- package/.mindforge/personas/analyst.md +112 -52
- package/.mindforge/personas/architect.md +100 -67
- package/.mindforge/personas/assumptions-analyzer-extend.md +87 -0
- package/.mindforge/personas/assumptions-analyzer.md +109 -0
- package/.mindforge/personas/codebase-mapper-extend.md +93 -0
- package/.mindforge/personas/codebase-mapper.md +770 -0
- package/.mindforge/personas/coverage-specialist.md +104 -0
- package/.mindforge/personas/debug-specialist.md +118 -52
- package/.mindforge/personas/debugger.md +97 -0
- package/.mindforge/personas/decision-architect.md +102 -0
- package/.mindforge/personas/developer.md +97 -85
- package/.mindforge/personas/executor.md +88 -0
- package/.mindforge/personas/integration-checker.md +92 -0
- package/.mindforge/personas/nyquist-auditor.md +84 -0
- package/.mindforge/personas/phase-researcher.md +107 -0
- package/.mindforge/personas/plan-checker.md +92 -0
- package/.mindforge/personas/planner.md +105 -0
- package/.mindforge/personas/project-researcher.md +99 -0
- package/.mindforge/personas/qa-engineer.md +113 -61
- package/.mindforge/personas/release-manager.md +102 -64
- package/.mindforge/personas/research-agent.md +109 -24
- package/.mindforge/personas/research-synthesizer.md +101 -0
- package/.mindforge/personas/roadmapper-extend.md +100 -0
- package/.mindforge/personas/roadmapper.md +103 -0
- package/.mindforge/personas/security-reviewer.md +114 -91
- package/.mindforge/personas/tech-writer.md +118 -51
- package/.mindforge/personas/ui-auditor.md +94 -0
- package/.mindforge/personas/ui-checker.md +89 -0
- package/.mindforge/personas/ui-researcher.md +99 -0
- package/.mindforge/personas/user-profiler.md +93 -0
- package/.mindforge/personas/verifier.md +101 -0
- package/.planning/ROADMAP.md +10 -0
- package/.planning/browser-daemon.log +32 -0
- package/.planning/phases/01-migrate-gsd-to-mindforge/.gitkeep +0 -0
- package/CHANGELOG.md +41 -0
- package/MINDFORGE.md +2 -0
- package/README.md +40 -3
- package/bin/installer-core.js +3 -4
- package/docs/PERSONAS.md +611 -0
- package/docs/commands-reference.md +1 -0
- package/docs/{Context → context}/Master-Context.md +6 -13
- package/docs/references/checkpoints.md +778 -0
- package/docs/{reference → references}/commands.md +53 -43
- package/docs/references/continuation-format.md +249 -0
- package/docs/references/decimal-phase-calculation.md +64 -0
- package/docs/references/git-integration.md +295 -0
- package/docs/references/git-planning-commit.md +38 -0
- package/docs/references/model-profile-resolution.md +36 -0
- package/docs/references/model-profiles.md +139 -0
- package/docs/references/phase-argument-parsing.md +61 -0
- package/docs/references/planning-config.md +202 -0
- package/docs/references/questioning.md +162 -0
- package/docs/references/tdd.md +263 -0
- package/docs/references/ui-brand.md +160 -0
- package/docs/references/user-profiling.md +681 -0
- package/docs/references/verification-patterns.md +612 -0
- package/docs/references/workstream-flag.md +58 -0
- package/docs/skills-authoring-guide.md +1 -1
- package/docs/templates/Agents/CLAUDE-MD.md +122 -0
- package/docs/templates/Agents/COPILOT-INSTRUCTIONS.md +7 -0
- package/docs/templates/Agents/DEBUGGER-PROMPT.md +91 -0
- package/docs/templates/Agents/PLANNER-PROMPT.md +117 -0
- package/docs/templates/Execution/CONTINUE-HERE.md +78 -0
- package/docs/templates/Execution/DISCUSSION-LOG.md +63 -0
- package/docs/templates/Execution/PHASE-PROMPT.md +610 -0
- package/docs/templates/Execution/STATE.md +176 -0
- package/docs/templates/Execution/SUMMARY-COMPLEX.md +59 -0
- package/docs/templates/Execution/SUMMARY-MINIMAL.md +41 -0
- package/docs/templates/Execution/SUMMARY-STANDARD.md +48 -0
- package/docs/templates/Execution/SUMMARY.md +248 -0
- package/docs/templates/Profile/DEV-PREFERENCES.md +21 -0
- package/docs/templates/Profile/USER-PROFILE.md +146 -0
- package/docs/templates/Profile/USER-SETUP.md +311 -0
- package/docs/templates/Project/DISCOVERY.md +146 -0
- package/docs/templates/Project/MILESTONE-ARCHIVE.md +123 -0
- package/docs/templates/Project/MILESTONE.md +115 -0
- package/docs/templates/Project/PROJECT.md +206 -0
- package/docs/templates/Project/REQUIREMENTS.md +231 -0
- package/docs/templates/Project/RETROSPECTIVE.md +54 -0
- package/docs/templates/Project/ROADMAP.md +202 -0
- package/docs/templates/Quality/DEBUG.md +164 -0
- package/docs/templates/Quality/UAT.md +280 -0
- package/docs/templates/Quality/UI-SPEC.md +100 -0
- package/docs/templates/Quality/VALIDATION.md +76 -0
- package/docs/templates/Quality/VERIFICATION-REPORT.md +322 -0
- package/docs/templates/System/CONFIG.json +43 -0
- package/docs/templates/System/CONTEXT.md +352 -0
- package/docs/templates/codebase/architecture.md +255 -0
- package/docs/templates/codebase/concerns.md +310 -0
- package/docs/templates/codebase/conventions.md +307 -0
- package/docs/templates/codebase/integrations.md +280 -0
- package/docs/templates/codebase/stack.md +186 -0
- package/docs/templates/codebase/structure.md +285 -0
- package/docs/templates/codebase/testing.md +480 -0
- package/docs/templates/research/ARCHITECTURE.md +204 -0
- package/docs/templates/research/FEATURES.md +147 -0
- package/docs/templates/research/PITFALLS.md +200 -0
- package/docs/templates/research/STACK.md +120 -0
- package/docs/templates/research/SUMMARY.md +170 -0
- package/docs/user-guide.md +1 -1
- package/package.json +7 -2
- /package/docs/{reference → references}/audit-events.md +0 -0
- /package/docs/{reference → references}/config-reference.md +0 -0
- /package/docs/{reference → references}/sdk-api.md +0 -0
- /package/docs/{reference → references}/skills-api.md +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: {N}
|
|
3
|
+
slug: {phase-slug}
|
|
4
|
+
status: draft
|
|
5
|
+
shadcn_initialized: false
|
|
6
|
+
preset: none
|
|
7
|
+
created: {date}
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Phase {N} — UI Design Contract
|
|
11
|
+
|
|
12
|
+
> Visual and interaction contract for frontend phases. Generated by mindforge-ui-researcher, verified by mindforge-ui-checker.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Design System
|
|
17
|
+
|
|
18
|
+
| Property | Value |
|
|
19
|
+
|----------|-------|
|
|
20
|
+
| Tool | {shadcn / none} |
|
|
21
|
+
| Preset | {preset string or "not applicable"} |
|
|
22
|
+
| Component library | {radix / base-ui / none} |
|
|
23
|
+
| Icon library | {library} |
|
|
24
|
+
| Font | {font} |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Spacing Scale
|
|
29
|
+
|
|
30
|
+
Declared values (must be multiples of 4):
|
|
31
|
+
|
|
32
|
+
| Token | Value | Usage |
|
|
33
|
+
|-------|-------|-------|
|
|
34
|
+
| xs | 4px | Icon gaps, inline padding |
|
|
35
|
+
| sm | 8px | Compact element spacing |
|
|
36
|
+
| md | 16px | Default element spacing |
|
|
37
|
+
| lg | 24px | Section padding |
|
|
38
|
+
| xl | 32px | Layout gaps |
|
|
39
|
+
| 2xl | 48px | Major section breaks |
|
|
40
|
+
| 3xl | 64px | Page-level spacing |
|
|
41
|
+
|
|
42
|
+
Exceptions: {list any, or "none"}
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Typography
|
|
47
|
+
|
|
48
|
+
| Role | Size | Weight | Line Height |
|
|
49
|
+
|------|------|--------|-------------|
|
|
50
|
+
| Body | {px} | {weight} | {ratio} |
|
|
51
|
+
| Label | {px} | {weight} | {ratio} |
|
|
52
|
+
| Heading | {px} | {weight} | {ratio} |
|
|
53
|
+
| Display | {px} | {weight} | {ratio} |
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Color
|
|
58
|
+
|
|
59
|
+
| Role | Value | Usage |
|
|
60
|
+
|------|-------|-------|
|
|
61
|
+
| Dominant (60%) | {hex} | Background, surfaces |
|
|
62
|
+
| Secondary (30%) | {hex} | Cards, sidebar, nav |
|
|
63
|
+
| Accent (10%) | {hex} | {list specific elements only} |
|
|
64
|
+
| Destructive | {hex} | Destructive actions only |
|
|
65
|
+
|
|
66
|
+
Accent reserved for: {explicit list — never "all interactive elements"}
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Copywriting Contract
|
|
71
|
+
|
|
72
|
+
| Element | Copy |
|
|
73
|
+
|---------|------|
|
|
74
|
+
| Primary CTA | {specific verb + noun} |
|
|
75
|
+
| Empty state heading | {copy} |
|
|
76
|
+
| Empty state body | {copy + next step} |
|
|
77
|
+
| Error state | {problem + solution path} |
|
|
78
|
+
| Destructive confirmation | {action name}: {confirmation copy} |
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Registry Safety
|
|
83
|
+
|
|
84
|
+
| Registry | Blocks Used | Safety Gate |
|
|
85
|
+
|----------|-------------|-------------|
|
|
86
|
+
| shadcn official | {list} | not required |
|
|
87
|
+
| {third-party name} | {list} | shadcn view + diff required |
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Checker Sign-Off
|
|
92
|
+
|
|
93
|
+
- [ ] Dimension 1 Copywriting: PASS
|
|
94
|
+
- [ ] Dimension 2 Visuals: PASS
|
|
95
|
+
- [ ] Dimension 3 Color: PASS
|
|
96
|
+
- [ ] Dimension 4 Typography: PASS
|
|
97
|
+
- [ ] Dimension 5 Spacing: PASS
|
|
98
|
+
- [ ] Dimension 6 Registry Safety: PASS
|
|
99
|
+
|
|
100
|
+
**Approval:** {pending / approved YYYY-MM-DD}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: {N}
|
|
3
|
+
slug: {phase-slug}
|
|
4
|
+
status: draft
|
|
5
|
+
nyquist_compliant: false
|
|
6
|
+
wave_0_complete: false
|
|
7
|
+
created: {date}
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Phase {N} — Validation Strategy
|
|
11
|
+
|
|
12
|
+
> Per-phase validation contract for feedback sampling during execution.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Test Infrastructure
|
|
17
|
+
|
|
18
|
+
| Property | Value |
|
|
19
|
+
|----------|-------|
|
|
20
|
+
| **Framework** | {pytest 7.x / jest 29.x / vitest / go test / other} |
|
|
21
|
+
| **Config file** | {path or "none — Wave 0 installs"} |
|
|
22
|
+
| **Quick run command** | `{quick command}` |
|
|
23
|
+
| **Full suite command** | `{full command}` |
|
|
24
|
+
| **Estimated runtime** | ~{N} seconds |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Sampling Rate
|
|
29
|
+
|
|
30
|
+
- **After every task commit:** Run `{quick run command}`
|
|
31
|
+
- **After every plan wave:** Run `{full suite command}`
|
|
32
|
+
- **Before `/mindforge-verify-work`:** Full suite must be green
|
|
33
|
+
- **Max feedback latency:** {N} seconds
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Per-Task Verification Map
|
|
38
|
+
|
|
39
|
+
| Task ID | Plan | Wave | Requirement | Test Type | Automated Command | File Exists | Status |
|
|
40
|
+
|---------|------|------|-------------|-----------|-------------------|-------------|--------|
|
|
41
|
+
| {N}-01-01 | 01 | 1 | REQ-{XX} | unit | `{command}` | ✅ / ❌ W0 | ⬜ pending |
|
|
42
|
+
|
|
43
|
+
*Status: ⬜ pending · ✅ green · ❌ red · ⚠️ flaky*
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Wave 0 Requirements
|
|
48
|
+
|
|
49
|
+
- [ ] `{tests/test_file.py}` — stubs for REQ-{XX}
|
|
50
|
+
- [ ] `{tests/conftest.py}` — shared fixtures
|
|
51
|
+
- [ ] `{framework install}` — if no framework detected
|
|
52
|
+
|
|
53
|
+
*If none: "Existing infrastructure covers all phase requirements."*
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Manual-Only Verifications
|
|
58
|
+
|
|
59
|
+
| Behavior | Requirement | Why Manual | Test Instructions |
|
|
60
|
+
|----------|-------------|------------|-------------------|
|
|
61
|
+
| {behavior} | REQ-{XX} | {reason} | {steps} |
|
|
62
|
+
|
|
63
|
+
*If none: "All phase behaviors have automated verification."*
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Validation Sign-Off
|
|
68
|
+
|
|
69
|
+
- [ ] All tasks have `<automated>` verify or Wave 0 dependencies
|
|
70
|
+
- [ ] Sampling continuity: no 3 consecutive tasks without automated verify
|
|
71
|
+
- [ ] Wave 0 covers all MISSING references
|
|
72
|
+
- [ ] No watch-mode flags
|
|
73
|
+
- [ ] Feedback latency < {N}s
|
|
74
|
+
- [ ] `nyquist_compliant: true` set in frontmatter
|
|
75
|
+
|
|
76
|
+
**Approval:** {pending / approved YYYY-MM-DD}
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
# Verification Report Template
|
|
2
|
+
|
|
3
|
+
Template for `.planning/phases/XX-name/{phase_num}-VERIFICATION.md` — phase goal verification results.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## File Template
|
|
8
|
+
|
|
9
|
+
```markdown
|
|
10
|
+
---
|
|
11
|
+
phase: XX-name
|
|
12
|
+
verified: YYYY-MM-DDTHH:MM:SSZ
|
|
13
|
+
status: passed | gaps_found | human_needed
|
|
14
|
+
score: N/M must-haves verified
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Phase {X}: {Name} Verification Report
|
|
18
|
+
|
|
19
|
+
**Phase Goal:** {goal from ROADMAP.md}
|
|
20
|
+
**Verified:** {timestamp}
|
|
21
|
+
**Status:** {passed | gaps_found | human_needed}
|
|
22
|
+
|
|
23
|
+
## Goal Achievement
|
|
24
|
+
|
|
25
|
+
### Observable Truths
|
|
26
|
+
|
|
27
|
+
| # | Truth | Status | Evidence |
|
|
28
|
+
|---|-------|--------|----------|
|
|
29
|
+
| 1 | {truth from must_haves} | ✓ VERIFIED | {what confirmed it} |
|
|
30
|
+
| 2 | {truth from must_haves} | ✗ FAILED | {what's wrong} |
|
|
31
|
+
| 3 | {truth from must_haves} | ? UNCERTAIN | {why can't verify} |
|
|
32
|
+
|
|
33
|
+
**Score:** {N}/{M} truths verified
|
|
34
|
+
|
|
35
|
+
### Required Artifacts
|
|
36
|
+
|
|
37
|
+
| Artifact | Expected | Status | Details |
|
|
38
|
+
|----------|----------|--------|---------|
|
|
39
|
+
| `src/components/Chat.tsx` | Message list component | ✓ EXISTS + SUBSTANTIVE | Exports ChatList, renders Message[], no stubs |
|
|
40
|
+
| `src/app/api/chat/route.ts` | Message CRUD | ✗ STUB | File exists but POST returns placeholder |
|
|
41
|
+
| `prisma/schema.prisma` | Message model | ✓ EXISTS + SUBSTANTIVE | Model defined with all fields |
|
|
42
|
+
|
|
43
|
+
**Artifacts:** {N}/{M} verified
|
|
44
|
+
|
|
45
|
+
### Key Link Verification
|
|
46
|
+
|
|
47
|
+
| From | To | Via | Status | Details |
|
|
48
|
+
|------|----|----|--------|---------|
|
|
49
|
+
| Chat.tsx | /api/chat | fetch in useEffect | ✓ WIRED | Line 23: `fetch('/api/chat')` with response handling |
|
|
50
|
+
| ChatInput | /api/chat POST | onSubmit handler | ✗ NOT WIRED | onSubmit only calls console.log |
|
|
51
|
+
| /api/chat POST | database | prisma.message.create | ✗ NOT WIRED | Returns hardcoded response, no DB call |
|
|
52
|
+
|
|
53
|
+
**Wiring:** {N}/{M} connections verified
|
|
54
|
+
|
|
55
|
+
## Requirements Coverage
|
|
56
|
+
|
|
57
|
+
| Requirement | Status | Blocking Issue |
|
|
58
|
+
|-------------|--------|----------------|
|
|
59
|
+
| {REQ-01}: {description} | ✓ SATISFIED | - |
|
|
60
|
+
| {REQ-02}: {description} | ✗ BLOCKED | API route is stub |
|
|
61
|
+
| {REQ-03}: {description} | ? NEEDS HUMAN | Can't verify WebSocket programmatically |
|
|
62
|
+
|
|
63
|
+
**Coverage:** {N}/{M} requirements satisfied
|
|
64
|
+
|
|
65
|
+
## Anti-Patterns Found
|
|
66
|
+
|
|
67
|
+
| File | Line | Pattern | Severity | Impact |
|
|
68
|
+
|------|------|---------|----------|--------|
|
|
69
|
+
| src/app/api/chat/route.ts | 12 | `// TODO: implement` | ⚠️ Warning | Indicates incomplete |
|
|
70
|
+
| src/components/Chat.tsx | 45 | `return <div>Placeholder</div>` | 🛑 Blocker | Renders no content |
|
|
71
|
+
| src/hooks/useChat.ts | - | File missing | 🛑 Blocker | Expected hook doesn't exist |
|
|
72
|
+
|
|
73
|
+
**Anti-patterns:** {N} found ({blockers} blockers, {warnings} warnings)
|
|
74
|
+
|
|
75
|
+
## Human Verification Required
|
|
76
|
+
|
|
77
|
+
{If no human verification needed:}
|
|
78
|
+
None — all verifiable items checked programmatically.
|
|
79
|
+
|
|
80
|
+
{If human verification needed:}
|
|
81
|
+
|
|
82
|
+
### 1. {Test Name}
|
|
83
|
+
**Test:** {What to do}
|
|
84
|
+
**Expected:** {What should happen}
|
|
85
|
+
**Why human:** {Why can't verify programmatically}
|
|
86
|
+
|
|
87
|
+
### 2. {Test Name}
|
|
88
|
+
**Test:** {What to do}
|
|
89
|
+
**Expected:** {What should happen}
|
|
90
|
+
**Why human:** {Why can't verify programmatically}
|
|
91
|
+
|
|
92
|
+
## Gaps Summary
|
|
93
|
+
|
|
94
|
+
{If no gaps:}
|
|
95
|
+
**No gaps found.** Phase goal achieved. Ready to proceed.
|
|
96
|
+
|
|
97
|
+
{If gaps found:}
|
|
98
|
+
|
|
99
|
+
### Critical Gaps (Block Progress)
|
|
100
|
+
|
|
101
|
+
1. **{Gap name}**
|
|
102
|
+
- Missing: {what's missing}
|
|
103
|
+
- Impact: {why this blocks the goal}
|
|
104
|
+
- Fix: {what needs to happen}
|
|
105
|
+
|
|
106
|
+
2. **{Gap name}**
|
|
107
|
+
- Missing: {what's missing}
|
|
108
|
+
- Impact: {why this blocks the goal}
|
|
109
|
+
- Fix: {what needs to happen}
|
|
110
|
+
|
|
111
|
+
### Non-Critical Gaps (Can Defer)
|
|
112
|
+
|
|
113
|
+
1. **{Gap name}**
|
|
114
|
+
- Issue: {what's wrong}
|
|
115
|
+
- Impact: {limited impact because...}
|
|
116
|
+
- Recommendation: {fix now or defer}
|
|
117
|
+
|
|
118
|
+
## Recommended Fix Plans
|
|
119
|
+
|
|
120
|
+
{If gaps found, generate fix plan recommendations:}
|
|
121
|
+
|
|
122
|
+
### {phase}-{next}-PLAN.md: {Fix Name}
|
|
123
|
+
|
|
124
|
+
**Objective:** {What this fixes}
|
|
125
|
+
|
|
126
|
+
**Tasks:**
|
|
127
|
+
1. {Task to fix gap 1}
|
|
128
|
+
2. {Task to fix gap 2}
|
|
129
|
+
3. {Verification task}
|
|
130
|
+
|
|
131
|
+
**Estimated scope:** {Small / Medium}
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
### {phase}-{next+1}-PLAN.md: {Fix Name}
|
|
136
|
+
|
|
137
|
+
**Objective:** {What this fixes}
|
|
138
|
+
|
|
139
|
+
**Tasks:**
|
|
140
|
+
1. {Task}
|
|
141
|
+
2. {Task}
|
|
142
|
+
|
|
143
|
+
**Estimated scope:** {Small / Medium}
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## Verification Metadata
|
|
148
|
+
|
|
149
|
+
**Verification approach:** Goal-backward (derived from phase goal)
|
|
150
|
+
**Must-haves source:** {PLAN.md frontmatter | derived from ROADMAP.md goal}
|
|
151
|
+
**Automated checks:** {N} passed, {M} failed
|
|
152
|
+
**Human checks required:** {N}
|
|
153
|
+
**Total verification time:** {duration}
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
*Verified: {timestamp}*
|
|
157
|
+
*Verifier: the agent (subagent)*
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## Guidelines
|
|
163
|
+
|
|
164
|
+
**Status values:**
|
|
165
|
+
- `passed` — All must-haves verified, no blockers
|
|
166
|
+
- `gaps_found` — One or more critical gaps found
|
|
167
|
+
- `human_needed` — Automated checks pass but human verification required
|
|
168
|
+
|
|
169
|
+
**Evidence types:**
|
|
170
|
+
- For EXISTS: "File at path, exports X"
|
|
171
|
+
- For SUBSTANTIVE: "N lines, has patterns X, Y, Z"
|
|
172
|
+
- For WIRED: "Line N: code that connects A to B"
|
|
173
|
+
- For FAILED: "Missing because X" or "Stub because Y"
|
|
174
|
+
|
|
175
|
+
**Severity levels:**
|
|
176
|
+
- 🛑 Blocker: Prevents goal achievement, must fix
|
|
177
|
+
- ⚠️ Warning: Indicates incomplete but doesn't block
|
|
178
|
+
- ℹ️ Info: Notable but not problematic
|
|
179
|
+
|
|
180
|
+
**Fix plan generation:**
|
|
181
|
+
- Only generate if gaps_found
|
|
182
|
+
- Group related fixes into single plans
|
|
183
|
+
- Keep to 2-3 tasks per plan
|
|
184
|
+
- Include verification task in each plan
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Example
|
|
189
|
+
|
|
190
|
+
```markdown
|
|
191
|
+
---
|
|
192
|
+
phase: 03-chat
|
|
193
|
+
verified: 2025-01-15T14:30:00Z
|
|
194
|
+
status: gaps_found
|
|
195
|
+
score: 2/5 must-haves verified
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
# Phase 3: Chat Interface Verification Report
|
|
199
|
+
|
|
200
|
+
**Phase Goal:** Working chat interface where users can send and receive messages
|
|
201
|
+
**Verified:** 2025-01-15T14:30:00Z
|
|
202
|
+
**Status:** gaps_found
|
|
203
|
+
|
|
204
|
+
## Goal Achievement
|
|
205
|
+
|
|
206
|
+
### Observable Truths
|
|
207
|
+
|
|
208
|
+
| # | Truth | Status | Evidence |
|
|
209
|
+
|---|-------|--------|----------|
|
|
210
|
+
| 1 | User can see existing messages | ✗ FAILED | Component renders placeholder, not message data |
|
|
211
|
+
| 2 | User can type a message | ✓ VERIFIED | Input field exists with onChange handler |
|
|
212
|
+
| 3 | User can send a message | ✗ FAILED | onSubmit handler is console.log only |
|
|
213
|
+
| 4 | Sent message appears in list | ✗ FAILED | No state update after send |
|
|
214
|
+
| 5 | Messages persist across refresh | ? UNCERTAIN | Can't verify - send doesn't work |
|
|
215
|
+
|
|
216
|
+
**Score:** 1/5 truths verified
|
|
217
|
+
|
|
218
|
+
### Required Artifacts
|
|
219
|
+
|
|
220
|
+
| Artifact | Expected | Status | Details |
|
|
221
|
+
|----------|----------|--------|---------|
|
|
222
|
+
| `src/components/Chat.tsx` | Message list component | ✗ STUB | Returns `<div>Chat will be here</div>` |
|
|
223
|
+
| `src/components/ChatInput.tsx` | Message input | ✓ EXISTS + SUBSTANTIVE | Form with input, submit button, handlers |
|
|
224
|
+
| `src/app/api/chat/route.ts` | Message CRUD | ✗ STUB | GET returns [], POST returns { ok: true } |
|
|
225
|
+
| `prisma/schema.prisma` | Message model | ✓ EXISTS + SUBSTANTIVE | Message model with id, content, userId, createdAt |
|
|
226
|
+
|
|
227
|
+
**Artifacts:** 2/4 verified
|
|
228
|
+
|
|
229
|
+
### Key Link Verification
|
|
230
|
+
|
|
231
|
+
| From | To | Via | Status | Details |
|
|
232
|
+
|------|----|----|--------|---------|
|
|
233
|
+
| Chat.tsx | /api/chat GET | fetch | ✗ NOT WIRED | No fetch call in component |
|
|
234
|
+
| ChatInput | /api/chat POST | onSubmit | ✗ NOT WIRED | Handler only logs, doesn't fetch |
|
|
235
|
+
| /api/chat GET | database | prisma.message.findMany | ✗ NOT WIRED | Returns hardcoded [] |
|
|
236
|
+
| /api/chat POST | database | prisma.message.create | ✗ NOT WIRED | Returns { ok: true }, no DB call |
|
|
237
|
+
|
|
238
|
+
**Wiring:** 0/4 connections verified
|
|
239
|
+
|
|
240
|
+
## Requirements Coverage
|
|
241
|
+
|
|
242
|
+
| Requirement | Status | Blocking Issue |
|
|
243
|
+
|-------------|--------|----------------|
|
|
244
|
+
| CHAT-01: User can send message | ✗ BLOCKED | API POST is stub |
|
|
245
|
+
| CHAT-02: User can view messages | ✗ BLOCKED | Component is placeholder |
|
|
246
|
+
| CHAT-03: Messages persist | ✗ BLOCKED | No database integration |
|
|
247
|
+
|
|
248
|
+
**Coverage:** 0/3 requirements satisfied
|
|
249
|
+
|
|
250
|
+
## Anti-Patterns Found
|
|
251
|
+
|
|
252
|
+
| File | Line | Pattern | Severity | Impact |
|
|
253
|
+
|------|------|---------|----------|--------|
|
|
254
|
+
| src/components/Chat.tsx | 8 | `<div>Chat will be here</div>` | 🛑 Blocker | No actual content |
|
|
255
|
+
| src/app/api/chat/route.ts | 5 | `return Response.json([])` | 🛑 Blocker | Hardcoded empty |
|
|
256
|
+
| src/app/api/chat/route.ts | 12 | `// TODO: save to database` | ⚠️ Warning | Incomplete |
|
|
257
|
+
|
|
258
|
+
**Anti-patterns:** 3 found (2 blockers, 1 warning)
|
|
259
|
+
|
|
260
|
+
## Human Verification Required
|
|
261
|
+
|
|
262
|
+
None needed until automated gaps are fixed.
|
|
263
|
+
|
|
264
|
+
## Gaps Summary
|
|
265
|
+
|
|
266
|
+
### Critical Gaps (Block Progress)
|
|
267
|
+
|
|
268
|
+
1. **Chat component is placeholder**
|
|
269
|
+
- Missing: Actual message list rendering
|
|
270
|
+
- Impact: Users see "Chat will be here" instead of messages
|
|
271
|
+
- Fix: Implement Chat.tsx to fetch and render messages
|
|
272
|
+
|
|
273
|
+
2. **API routes are stubs**
|
|
274
|
+
- Missing: Database integration in GET and POST
|
|
275
|
+
- Impact: No data persistence, no real functionality
|
|
276
|
+
- Fix: Wire prisma calls in route handlers
|
|
277
|
+
|
|
278
|
+
3. **No wiring between frontend and backend**
|
|
279
|
+
- Missing: fetch calls in components
|
|
280
|
+
- Impact: Even if API worked, UI wouldn't call it
|
|
281
|
+
- Fix: Add useEffect fetch in Chat, onSubmit fetch in ChatInput
|
|
282
|
+
|
|
283
|
+
## Recommended Fix Plans
|
|
284
|
+
|
|
285
|
+
### 03-04-PLAN.md: Implement Chat API
|
|
286
|
+
|
|
287
|
+
**Objective:** Wire API routes to database
|
|
288
|
+
|
|
289
|
+
**Tasks:**
|
|
290
|
+
1. Implement GET /api/chat with prisma.message.findMany
|
|
291
|
+
2. Implement POST /api/chat with prisma.message.create
|
|
292
|
+
3. Verify: API returns real data, POST creates records
|
|
293
|
+
|
|
294
|
+
**Estimated scope:** Small
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
### 03-05-PLAN.md: Implement Chat UI
|
|
299
|
+
|
|
300
|
+
**Objective:** Wire Chat component to API
|
|
301
|
+
|
|
302
|
+
**Tasks:**
|
|
303
|
+
1. Implement Chat.tsx with useEffect fetch and message rendering
|
|
304
|
+
2. Wire ChatInput onSubmit to POST /api/chat
|
|
305
|
+
3. Verify: Messages display, new messages appear after send
|
|
306
|
+
|
|
307
|
+
**Estimated scope:** Small
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
## Verification Metadata
|
|
312
|
+
|
|
313
|
+
**Verification approach:** Goal-backward (derived from phase goal)
|
|
314
|
+
**Must-haves source:** 03-01-PLAN.md frontmatter
|
|
315
|
+
**Automated checks:** 2 passed, 8 failed
|
|
316
|
+
**Human checks required:** 0 (blocked by automated failures)
|
|
317
|
+
**Total verification time:** 2 min
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
*Verified: 2025-01-15T14:30:00Z*
|
|
321
|
+
*Verifier: the agent (subagent)*
|
|
322
|
+
```
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mode": "interactive",
|
|
3
|
+
"granularity": "standard",
|
|
4
|
+
"workflow": {
|
|
5
|
+
"research": true,
|
|
6
|
+
"plan_check": true,
|
|
7
|
+
"verifier": true,
|
|
8
|
+
"auto_advance": false,
|
|
9
|
+
"nyquist_validation": true,
|
|
10
|
+
"discuss_mode": "discuss",
|
|
11
|
+
"research_before_questions": false
|
|
12
|
+
},
|
|
13
|
+
"planning": {
|
|
14
|
+
"commit_docs": true,
|
|
15
|
+
"search_gitignored": false,
|
|
16
|
+
"sub_repos": []
|
|
17
|
+
},
|
|
18
|
+
"parallelization": {
|
|
19
|
+
"enabled": true,
|
|
20
|
+
"plan_level": true,
|
|
21
|
+
"task_level": false,
|
|
22
|
+
"skip_checkpoints": true,
|
|
23
|
+
"max_concurrent_agents": 3,
|
|
24
|
+
"min_plans_for_parallel": 2
|
|
25
|
+
},
|
|
26
|
+
"gates": {
|
|
27
|
+
"confirm_project": true,
|
|
28
|
+
"confirm_phases": true,
|
|
29
|
+
"confirm_roadmap": true,
|
|
30
|
+
"confirm_breakdown": true,
|
|
31
|
+
"confirm_plan": true,
|
|
32
|
+
"execute_next_plan": true,
|
|
33
|
+
"issues_review": true,
|
|
34
|
+
"confirm_transition": true
|
|
35
|
+
},
|
|
36
|
+
"safety": {
|
|
37
|
+
"always_confirm_destructive": true,
|
|
38
|
+
"always_confirm_external_services": true
|
|
39
|
+
},
|
|
40
|
+
"hooks": {
|
|
41
|
+
"context_warnings": true
|
|
42
|
+
}
|
|
43
|
+
}
|