cap-pro 1.0.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.
- package/.claude-plugin/README.md +26 -0
- package/.claude-plugin/marketplace.json +24 -0
- package/.claude-plugin/plugin.json +24 -0
- package/LICENSE +21 -0
- package/README.ja-JP.md +834 -0
- package/README.ko-KR.md +823 -0
- package/README.md +806 -0
- package/README.pt-BR.md +452 -0
- package/README.zh-CN.md +800 -0
- package/agents/cap-architect.md +269 -0
- package/agents/cap-brainstormer.md +207 -0
- package/agents/cap-curator.md +276 -0
- package/agents/cap-debugger.md +365 -0
- package/agents/cap-designer.md +246 -0
- package/agents/cap-historian.md +464 -0
- package/agents/cap-migrator.md +291 -0
- package/agents/cap-prototyper.md +197 -0
- package/agents/cap-validator.md +308 -0
- package/bin/install.js +5433 -0
- package/cap/bin/cap-tools.cjs +853 -0
- package/cap/bin/lib/arc-scanner.cjs +344 -0
- package/cap/bin/lib/cap-affinity-engine.cjs +862 -0
- package/cap/bin/lib/cap-anchor.cjs +228 -0
- package/cap/bin/lib/cap-annotation-writer.cjs +340 -0
- package/cap/bin/lib/cap-checkpoint.cjs +434 -0
- package/cap/bin/lib/cap-cluster-detect.cjs +945 -0
- package/cap/bin/lib/cap-cluster-display.cjs +52 -0
- package/cap/bin/lib/cap-cluster-format.cjs +245 -0
- package/cap/bin/lib/cap-cluster-helpers.cjs +295 -0
- package/cap/bin/lib/cap-cluster-io.cjs +212 -0
- package/cap/bin/lib/cap-completeness.cjs +540 -0
- package/cap/bin/lib/cap-deps.cjs +583 -0
- package/cap/bin/lib/cap-design-families.cjs +332 -0
- package/cap/bin/lib/cap-design.cjs +966 -0
- package/cap/bin/lib/cap-divergence-detector.cjs +400 -0
- package/cap/bin/lib/cap-doctor.cjs +752 -0
- package/cap/bin/lib/cap-feature-map-internals.cjs +19 -0
- package/cap/bin/lib/cap-feature-map-migrate.cjs +335 -0
- package/cap/bin/lib/cap-feature-map-monorepo.cjs +885 -0
- package/cap/bin/lib/cap-feature-map-shard.cjs +315 -0
- package/cap/bin/lib/cap-feature-map.cjs +1943 -0
- package/cap/bin/lib/cap-fitness-score.cjs +1075 -0
- package/cap/bin/lib/cap-impact-analysis.cjs +652 -0
- package/cap/bin/lib/cap-learn-review.cjs +1072 -0
- package/cap/bin/lib/cap-learning-signals.cjs +627 -0
- package/cap/bin/lib/cap-loader.cjs +227 -0
- package/cap/bin/lib/cap-logger.cjs +57 -0
- package/cap/bin/lib/cap-memory-bridge.cjs +764 -0
- package/cap/bin/lib/cap-memory-confidence.cjs +452 -0
- package/cap/bin/lib/cap-memory-dir.cjs +987 -0
- package/cap/bin/lib/cap-memory-engine.cjs +698 -0
- package/cap/bin/lib/cap-memory-extends.cjs +398 -0
- package/cap/bin/lib/cap-memory-graph.cjs +790 -0
- package/cap/bin/lib/cap-memory-migrate.cjs +2015 -0
- package/cap/bin/lib/cap-memory-pin.cjs +183 -0
- package/cap/bin/lib/cap-memory-platform.cjs +490 -0
- package/cap/bin/lib/cap-memory-prune.cjs +707 -0
- package/cap/bin/lib/cap-memory-schema.cjs +812 -0
- package/cap/bin/lib/cap-migrate-tags.cjs +309 -0
- package/cap/bin/lib/cap-migrate.cjs +540 -0
- package/cap/bin/lib/cap-pattern-apply.cjs +1203 -0
- package/cap/bin/lib/cap-pattern-pipeline.cjs +1034 -0
- package/cap/bin/lib/cap-plugin-manifest.cjs +80 -0
- package/cap/bin/lib/cap-realtime-affinity.cjs +399 -0
- package/cap/bin/lib/cap-reconcile.cjs +570 -0
- package/cap/bin/lib/cap-research-gate.cjs +218 -0
- package/cap/bin/lib/cap-scope-filter.cjs +402 -0
- package/cap/bin/lib/cap-semantic-pipeline.cjs +1038 -0
- package/cap/bin/lib/cap-session-extract.cjs +987 -0
- package/cap/bin/lib/cap-session.cjs +445 -0
- package/cap/bin/lib/cap-snapshot-linkage.cjs +963 -0
- package/cap/bin/lib/cap-stack-docs.cjs +646 -0
- package/cap/bin/lib/cap-tag-observer.cjs +371 -0
- package/cap/bin/lib/cap-tag-scanner.cjs +1766 -0
- package/cap/bin/lib/cap-telemetry.cjs +466 -0
- package/cap/bin/lib/cap-test-audit.cjs +1438 -0
- package/cap/bin/lib/cap-thread-migrator.cjs +307 -0
- package/cap/bin/lib/cap-thread-synthesis.cjs +545 -0
- package/cap/bin/lib/cap-thread-tracker.cjs +519 -0
- package/cap/bin/lib/cap-trace.cjs +399 -0
- package/cap/bin/lib/cap-trust-mode.cjs +336 -0
- package/cap/bin/lib/cap-ui-design-editor.cjs +642 -0
- package/cap/bin/lib/cap-ui-mind-map.cjs +712 -0
- package/cap/bin/lib/cap-ui-thread-nav.cjs +693 -0
- package/cap/bin/lib/cap-ui.cjs +1245 -0
- package/cap/bin/lib/cap-upgrade.cjs +1028 -0
- package/cap/bin/lib/cli/arg-helpers.cjs +49 -0
- package/cap/bin/lib/cli/frontmatter-router.cjs +31 -0
- package/cap/bin/lib/cli/init-router.cjs +68 -0
- package/cap/bin/lib/cli/phase-router.cjs +102 -0
- package/cap/bin/lib/cli/state-router.cjs +61 -0
- package/cap/bin/lib/cli/template-router.cjs +37 -0
- package/cap/bin/lib/cli/uat-router.cjs +29 -0
- package/cap/bin/lib/cli/validation-router.cjs +26 -0
- package/cap/bin/lib/cli/verification-router.cjs +31 -0
- package/cap/bin/lib/cli/workstream-router.cjs +39 -0
- package/cap/bin/lib/commands.cjs +961 -0
- package/cap/bin/lib/config.cjs +467 -0
- package/cap/bin/lib/convention-reader.cjs +258 -0
- package/cap/bin/lib/core.cjs +1241 -0
- package/cap/bin/lib/feature-aggregator.cjs +423 -0
- package/cap/bin/lib/frontmatter.cjs +337 -0
- package/cap/bin/lib/init.cjs +1443 -0
- package/cap/bin/lib/manifest-generator.cjs +383 -0
- package/cap/bin/lib/milestone.cjs +253 -0
- package/cap/bin/lib/model-profiles.cjs +69 -0
- package/cap/bin/lib/monorepo-context.cjs +226 -0
- package/cap/bin/lib/monorepo-migrator.cjs +509 -0
- package/cap/bin/lib/phase.cjs +889 -0
- package/cap/bin/lib/profile-output.cjs +989 -0
- package/cap/bin/lib/profile-pipeline.cjs +540 -0
- package/cap/bin/lib/roadmap.cjs +330 -0
- package/cap/bin/lib/security.cjs +394 -0
- package/cap/bin/lib/session-manager.cjs +292 -0
- package/cap/bin/lib/skeleton-generator.cjs +179 -0
- package/cap/bin/lib/state.cjs +1032 -0
- package/cap/bin/lib/template.cjs +231 -0
- package/cap/bin/lib/test-detector.cjs +62 -0
- package/cap/bin/lib/uat.cjs +283 -0
- package/cap/bin/lib/verify.cjs +889 -0
- package/cap/bin/lib/workspace-detector.cjs +371 -0
- package/cap/bin/lib/workstream.cjs +492 -0
- package/cap/commands/gsd/workstreams.md +63 -0
- package/cap/references/arc-standard.md +315 -0
- package/cap/references/cap-agent-architecture.md +101 -0
- package/cap/references/cap-gitignore-template +9 -0
- package/cap/references/cap-zero-deps.md +158 -0
- package/cap/references/checkpoints.md +778 -0
- package/cap/references/continuation-format.md +249 -0
- package/cap/references/contract-test-templates.md +312 -0
- package/cap/references/feature-map-template.md +25 -0
- package/cap/references/git-integration.md +295 -0
- package/cap/references/git-planning-commit.md +38 -0
- package/cap/references/model-profiles.md +174 -0
- package/cap/references/phase-numbering.md +126 -0
- package/cap/references/planning-config.md +202 -0
- package/cap/references/property-test-templates.md +316 -0
- package/cap/references/security-test-templates.md +347 -0
- package/cap/references/session-template.json +8 -0
- package/cap/references/tdd.md +263 -0
- package/cap/references/user-profiling.md +681 -0
- package/cap/references/verification-patterns.md +612 -0
- package/cap/templates/UAT.md +265 -0
- package/cap/templates/claude-md.md +175 -0
- package/cap/templates/codebase/architecture.md +255 -0
- package/cap/templates/codebase/concerns.md +310 -0
- package/cap/templates/codebase/conventions.md +307 -0
- package/cap/templates/codebase/integrations.md +280 -0
- package/cap/templates/codebase/stack.md +186 -0
- package/cap/templates/codebase/structure.md +285 -0
- package/cap/templates/codebase/testing.md +480 -0
- package/cap/templates/config.json +44 -0
- package/cap/templates/context.md +352 -0
- package/cap/templates/continue-here.md +78 -0
- package/cap/templates/copilot-instructions.md +7 -0
- package/cap/templates/debug-subagent-prompt.md +91 -0
- package/cap/templates/discussion-log.md +63 -0
- package/cap/templates/milestone-archive.md +123 -0
- package/cap/templates/milestone.md +115 -0
- package/cap/templates/phase-prompt.md +610 -0
- package/cap/templates/planner-subagent-prompt.md +117 -0
- package/cap/templates/project.md +186 -0
- package/cap/templates/requirements.md +231 -0
- package/cap/templates/research-project/ARCHITECTURE.md +204 -0
- package/cap/templates/research-project/FEATURES.md +147 -0
- package/cap/templates/research-project/PITFALLS.md +200 -0
- package/cap/templates/research-project/STACK.md +120 -0
- package/cap/templates/research-project/SUMMARY.md +170 -0
- package/cap/templates/research.md +552 -0
- package/cap/templates/roadmap.md +202 -0
- package/cap/templates/state.md +176 -0
- package/cap/templates/summary.md +364 -0
- package/cap/templates/user-preferences.md +498 -0
- package/cap/templates/verification-report.md +322 -0
- package/cap/workflows/add-phase.md +112 -0
- package/cap/workflows/add-tests.md +351 -0
- package/cap/workflows/add-todo.md +158 -0
- package/cap/workflows/audit-milestone.md +340 -0
- package/cap/workflows/audit-uat.md +109 -0
- package/cap/workflows/autonomous.md +891 -0
- package/cap/workflows/check-todos.md +177 -0
- package/cap/workflows/cleanup.md +152 -0
- package/cap/workflows/complete-milestone.md +767 -0
- package/cap/workflows/diagnose-issues.md +231 -0
- package/cap/workflows/discovery-phase.md +289 -0
- package/cap/workflows/discuss-phase-assumptions.md +653 -0
- package/cap/workflows/discuss-phase.md +1049 -0
- package/cap/workflows/do.md +104 -0
- package/cap/workflows/execute-phase.md +846 -0
- package/cap/workflows/execute-plan.md +514 -0
- package/cap/workflows/fast.md +105 -0
- package/cap/workflows/forensics.md +265 -0
- package/cap/workflows/health.md +181 -0
- package/cap/workflows/help.md +660 -0
- package/cap/workflows/insert-phase.md +130 -0
- package/cap/workflows/list-phase-assumptions.md +178 -0
- package/cap/workflows/list-workspaces.md +56 -0
- package/cap/workflows/manager.md +362 -0
- package/cap/workflows/map-codebase.md +377 -0
- package/cap/workflows/milestone-summary.md +223 -0
- package/cap/workflows/new-milestone.md +486 -0
- package/cap/workflows/new-project.md +1250 -0
- package/cap/workflows/new-workspace.md +237 -0
- package/cap/workflows/next.md +97 -0
- package/cap/workflows/node-repair.md +92 -0
- package/cap/workflows/note.md +156 -0
- package/cap/workflows/pause-work.md +176 -0
- package/cap/workflows/plan-milestone-gaps.md +273 -0
- package/cap/workflows/plan-phase.md +857 -0
- package/cap/workflows/plant-seed.md +169 -0
- package/cap/workflows/pr-branch.md +129 -0
- package/cap/workflows/profile-user.md +449 -0
- package/cap/workflows/progress.md +507 -0
- package/cap/workflows/quick.md +757 -0
- package/cap/workflows/remove-phase.md +155 -0
- package/cap/workflows/remove-workspace.md +90 -0
- package/cap/workflows/research-phase.md +82 -0
- package/cap/workflows/resume-project.md +326 -0
- package/cap/workflows/review.md +228 -0
- package/cap/workflows/session-report.md +146 -0
- package/cap/workflows/settings.md +283 -0
- package/cap/workflows/ship.md +228 -0
- package/cap/workflows/stats.md +60 -0
- package/cap/workflows/transition.md +671 -0
- package/cap/workflows/ui-phase.md +298 -0
- package/cap/workflows/ui-review.md +161 -0
- package/cap/workflows/update.md +323 -0
- package/cap/workflows/validate-phase.md +170 -0
- package/cap/workflows/verify-phase.md +254 -0
- package/cap/workflows/verify-work.md +637 -0
- package/commands/cap/annotate.md +165 -0
- package/commands/cap/brainstorm.md +393 -0
- package/commands/cap/checkpoint.md +106 -0
- package/commands/cap/completeness.md +94 -0
- package/commands/cap/continue.md +72 -0
- package/commands/cap/debug.md +588 -0
- package/commands/cap/deps.md +169 -0
- package/commands/cap/design.md +479 -0
- package/commands/cap/init.md +354 -0
- package/commands/cap/iterate.md +249 -0
- package/commands/cap/learn.md +459 -0
- package/commands/cap/memory.md +275 -0
- package/commands/cap/migrate-feature-map.md +91 -0
- package/commands/cap/migrate-memory.md +108 -0
- package/commands/cap/migrate-tags.md +91 -0
- package/commands/cap/migrate.md +131 -0
- package/commands/cap/prototype.md +510 -0
- package/commands/cap/reconcile.md +121 -0
- package/commands/cap/review.md +360 -0
- package/commands/cap/save.md +72 -0
- package/commands/cap/scan.md +404 -0
- package/commands/cap/start.md +356 -0
- package/commands/cap/status.md +118 -0
- package/commands/cap/test-audit.md +262 -0
- package/commands/cap/test.md +394 -0
- package/commands/cap/trace.md +133 -0
- package/commands/cap/ui.md +167 -0
- package/hooks/dist/cap-check-update.js +115 -0
- package/hooks/dist/cap-context-monitor.js +185 -0
- package/hooks/dist/cap-learn-review-hook.js +114 -0
- package/hooks/dist/cap-learning-hook.js +192 -0
- package/hooks/dist/cap-memory.js +299 -0
- package/hooks/dist/cap-prompt-guard.js +97 -0
- package/hooks/dist/cap-statusline.js +157 -0
- package/hooks/dist/cap-tag-observer.js +115 -0
- package/hooks/dist/cap-version-check.js +112 -0
- package/hooks/dist/cap-workflow-guard.js +175 -0
- package/hooks/hooks.json +55 -0
- package/package.json +58 -0
- package/scripts/base64-scan.sh +262 -0
- package/scripts/build-hooks.js +93 -0
- package/scripts/cap-removal-checklist.md +202 -0
- package/scripts/prompt-injection-scan.sh +199 -0
- package/scripts/run-tests.cjs +181 -0
- package/scripts/secret-scan.sh +227 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
# Summary Template (Merged: minimal / standard / complex)
|
|
2
|
+
|
|
3
|
+
Template for `.planning/phases/XX-name/{phase}-{plan}-SUMMARY.md` — phase
|
|
4
|
+
completion documentation.
|
|
5
|
+
|
|
6
|
+
This file replaces the previous `summary-minimal.md`, `summary-standard.md`,
|
|
7
|
+
and `summary-complex.md`. Selection between modes is performed at runtime by
|
|
8
|
+
`cap/bin/lib/template.cjs::cmdTemplateSelect`, which inspects the source plan
|
|
9
|
+
and returns one of the three `mode` values below. Each mode section contains a
|
|
10
|
+
self-contained frontmatter + body template.
|
|
11
|
+
|
|
12
|
+
Mode selection rules (mirroring the heuristics in `template.cjs`):
|
|
13
|
+
|
|
14
|
+
- `minimal` — `taskCount <= 2 && fileCount <= 3 && !hasDecisions`
|
|
15
|
+
- `complex` — `hasDecisions || fileCount > 6 || taskCount > 5`
|
|
16
|
+
- `standard` — default (everything else)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Mode: minimal
|
|
21
|
+
|
|
22
|
+
```markdown
|
|
23
|
+
---
|
|
24
|
+
phase: XX-name
|
|
25
|
+
plan: YY
|
|
26
|
+
subsystem: [primary category]
|
|
27
|
+
tags: [searchable tech]
|
|
28
|
+
provides:
|
|
29
|
+
- [bullet list of what was built/delivered]
|
|
30
|
+
affects: [list of phase names or keywords]
|
|
31
|
+
tech-stack:
|
|
32
|
+
added: [libraries/tools]
|
|
33
|
+
patterns: [architectural/code patterns]
|
|
34
|
+
key-files:
|
|
35
|
+
created: [important files created]
|
|
36
|
+
modified: [important files modified]
|
|
37
|
+
key-decisions: []
|
|
38
|
+
duration: Xmin
|
|
39
|
+
completed: YYYY-MM-DD
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
# Phase [X]: [Name] Summary (Minimal)
|
|
43
|
+
|
|
44
|
+
**[Substantive one-liner describing outcome]**
|
|
45
|
+
|
|
46
|
+
## Performance
|
|
47
|
+
- **Duration:** [time]
|
|
48
|
+
- **Tasks:** [count]
|
|
49
|
+
- **Files modified:** [count]
|
|
50
|
+
|
|
51
|
+
## Accomplishments
|
|
52
|
+
- [Most important outcome]
|
|
53
|
+
- [Second key accomplishment]
|
|
54
|
+
|
|
55
|
+
## Task Commits
|
|
56
|
+
1. **Task 1: [task name]** - `hash`
|
|
57
|
+
2. **Task 2: [task name]** - `hash`
|
|
58
|
+
|
|
59
|
+
## Files Created/Modified
|
|
60
|
+
- `path/to/file.ts` - What it does
|
|
61
|
+
|
|
62
|
+
## Next Phase Readiness
|
|
63
|
+
[Ready for next phase]
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Mode: standard
|
|
69
|
+
|
|
70
|
+
```markdown
|
|
71
|
+
---
|
|
72
|
+
phase: XX-name
|
|
73
|
+
plan: YY
|
|
74
|
+
subsystem: [primary category]
|
|
75
|
+
tags: [searchable tech]
|
|
76
|
+
provides:
|
|
77
|
+
- [bullet list of what was built/delivered]
|
|
78
|
+
affects: [list of phase names or keywords]
|
|
79
|
+
tech-stack:
|
|
80
|
+
added: [libraries/tools]
|
|
81
|
+
patterns: [architectural/code patterns]
|
|
82
|
+
key-files:
|
|
83
|
+
created: [important files created]
|
|
84
|
+
modified: [important files modified]
|
|
85
|
+
key-decisions:
|
|
86
|
+
- "Decision 1"
|
|
87
|
+
duration: Xmin
|
|
88
|
+
completed: YYYY-MM-DD
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
# Phase [X]: [Name] Summary
|
|
92
|
+
|
|
93
|
+
**[Substantive one-liner describing outcome]**
|
|
94
|
+
|
|
95
|
+
## Performance
|
|
96
|
+
- **Duration:** [time]
|
|
97
|
+
- **Tasks:** [count completed]
|
|
98
|
+
- **Files modified:** [count]
|
|
99
|
+
|
|
100
|
+
## Accomplishments
|
|
101
|
+
- [Key outcome 1]
|
|
102
|
+
- [Key outcome 2]
|
|
103
|
+
|
|
104
|
+
## Task Commits
|
|
105
|
+
1. **Task 1: [task name]** - `hash`
|
|
106
|
+
2. **Task 2: [task name]** - `hash`
|
|
107
|
+
3. **Task 3: [task name]** - `hash`
|
|
108
|
+
|
|
109
|
+
## Files Created/Modified
|
|
110
|
+
- `path/to/file.ts` - What it does
|
|
111
|
+
- `path/to/another.ts` - What it does
|
|
112
|
+
|
|
113
|
+
## Decisions & Deviations
|
|
114
|
+
[Key decisions or "None - followed plan as specified"]
|
|
115
|
+
[Minor deviations if any, or "None"]
|
|
116
|
+
|
|
117
|
+
## Next Phase Readiness
|
|
118
|
+
[What's ready for next phase]
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## Mode: complex
|
|
124
|
+
|
|
125
|
+
```markdown
|
|
126
|
+
---
|
|
127
|
+
phase: XX-name
|
|
128
|
+
plan: YY
|
|
129
|
+
subsystem: [primary category: auth, payments, ui, api, database, infra, testing, etc.]
|
|
130
|
+
tags: [searchable tech: jwt, stripe, react, postgres, prisma]
|
|
131
|
+
|
|
132
|
+
# Dependency graph
|
|
133
|
+
requires:
|
|
134
|
+
- phase: [prior phase this depends on]
|
|
135
|
+
provides: [what that phase built that this uses]
|
|
136
|
+
provides:
|
|
137
|
+
- [bullet list of what this phase built/delivered]
|
|
138
|
+
affects: [list of phase names or keywords that will need this context]
|
|
139
|
+
|
|
140
|
+
# Tech tracking
|
|
141
|
+
tech-stack:
|
|
142
|
+
added: [libraries/tools added in this phase]
|
|
143
|
+
patterns: [architectural/code patterns established]
|
|
144
|
+
|
|
145
|
+
key-files:
|
|
146
|
+
created: [important files created]
|
|
147
|
+
modified: [important files modified]
|
|
148
|
+
|
|
149
|
+
key-decisions:
|
|
150
|
+
- "Decision 1"
|
|
151
|
+
- "Decision 2"
|
|
152
|
+
|
|
153
|
+
patterns-established:
|
|
154
|
+
- "Pattern 1: description"
|
|
155
|
+
- "Pattern 2: description"
|
|
156
|
+
|
|
157
|
+
requirements-completed: [] # REQUIRED — Copy ALL requirement IDs from this plan's `requirements` frontmatter field.
|
|
158
|
+
|
|
159
|
+
# Metrics
|
|
160
|
+
duration: Xmin
|
|
161
|
+
completed: YYYY-MM-DD
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
# Phase [X]: [Name] Summary (Complex)
|
|
165
|
+
|
|
166
|
+
**[Substantive one-liner describing outcome - NOT "phase complete" or "implementation finished"]**
|
|
167
|
+
|
|
168
|
+
## Performance
|
|
169
|
+
|
|
170
|
+
- **Duration:** [time] (e.g., 23 min, 1h 15m)
|
|
171
|
+
- **Started:** [ISO timestamp]
|
|
172
|
+
- **Completed:** [ISO timestamp]
|
|
173
|
+
- **Tasks:** [count completed]
|
|
174
|
+
- **Files modified:** [count]
|
|
175
|
+
|
|
176
|
+
## Accomplishments
|
|
177
|
+
- [Most important outcome]
|
|
178
|
+
- [Second key accomplishment]
|
|
179
|
+
- [Third if applicable]
|
|
180
|
+
|
|
181
|
+
## Task Commits
|
|
182
|
+
|
|
183
|
+
Each task was committed atomically:
|
|
184
|
+
|
|
185
|
+
1. **Task 1: [task name]** - `abc123f` (feat/fix/test/refactor)
|
|
186
|
+
2. **Task 2: [task name]** - `def456g` (feat/fix/test/refactor)
|
|
187
|
+
3. **Task 3: [task name]** - `hij789k` (feat/fix/test/refactor)
|
|
188
|
+
|
|
189
|
+
**Plan metadata:** `lmn012o` (docs: complete plan)
|
|
190
|
+
|
|
191
|
+
_Note: TDD tasks may have multiple commits (test → feat → refactor)_
|
|
192
|
+
|
|
193
|
+
## Files Created/Modified
|
|
194
|
+
- `path/to/file.ts` - What it does
|
|
195
|
+
- `path/to/another.ts` - What it does
|
|
196
|
+
|
|
197
|
+
## Decisions Made
|
|
198
|
+
[Key decisions with brief rationale, or "None - followed plan as specified"]
|
|
199
|
+
|
|
200
|
+
## Deviations from Plan
|
|
201
|
+
|
|
202
|
+
[If no deviations: "None - plan executed exactly as written"]
|
|
203
|
+
|
|
204
|
+
[If deviations occurred:]
|
|
205
|
+
|
|
206
|
+
### Auto-fixed Issues
|
|
207
|
+
|
|
208
|
+
**1. [Rule X - Category] Brief description**
|
|
209
|
+
- **Found during:** Task [N] ([task name])
|
|
210
|
+
- **Issue:** [What was wrong]
|
|
211
|
+
- **Fix:** [What was done]
|
|
212
|
+
- **Files modified:** [file paths]
|
|
213
|
+
- **Verification:** [How it was verified]
|
|
214
|
+
- **Committed in:** [hash] (part of task commit)
|
|
215
|
+
|
|
216
|
+
[... repeat for each auto-fix ...]
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
**Total deviations:** [N] auto-fixed ([breakdown by rule])
|
|
221
|
+
**Impact on plan:** [Brief assessment - e.g., "All auto-fixes necessary for correctness/security. No scope creep."]
|
|
222
|
+
|
|
223
|
+
## Issues Encountered
|
|
224
|
+
[Problems and how they were resolved, or "None"]
|
|
225
|
+
|
|
226
|
+
[Note: "Deviations from Plan" documents unplanned work that was handled automatically via deviation rules. "Issues Encountered" documents problems during planned work that required problem-solving.]
|
|
227
|
+
|
|
228
|
+
## User Setup Required
|
|
229
|
+
|
|
230
|
+
[If USER-SETUP.md was generated:]
|
|
231
|
+
**External services require manual configuration.** See [{phase}-USER-SETUP.md](./{phase}-USER-SETUP.md) for:
|
|
232
|
+
- Environment variables to add
|
|
233
|
+
- Dashboard configuration steps
|
|
234
|
+
- Verification commands
|
|
235
|
+
|
|
236
|
+
[If no USER-SETUP.md:]
|
|
237
|
+
None - no external service configuration required.
|
|
238
|
+
|
|
239
|
+
## Next Phase Readiness
|
|
240
|
+
[What's ready for next phase]
|
|
241
|
+
[Any blockers or concerns]
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
*Phase: XX-name*
|
|
245
|
+
*Completed: [date]*
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
<frontmatter_guidance>
|
|
249
|
+
**Purpose:** Enable automatic context assembly via dependency graph. Frontmatter makes summary metadata machine-readable so plan-phase can scan all summaries quickly and select relevant ones based on dependencies.
|
|
250
|
+
|
|
251
|
+
**Fast scanning:** Frontmatter is first ~25 lines, cheap to scan across all summaries without reading full content.
|
|
252
|
+
|
|
253
|
+
**Dependency graph:** `requires`/`provides`/`affects` create explicit links between phases, enabling transitive closure for context selection.
|
|
254
|
+
|
|
255
|
+
**Subsystem:** Primary categorization (auth, payments, ui, api, database, infra, testing) for detecting related phases.
|
|
256
|
+
|
|
257
|
+
**Tags:** Searchable technical keywords (libraries, frameworks, tools) for tech stack awareness.
|
|
258
|
+
|
|
259
|
+
**Key-files:** Important files for @context references in PLAN.md.
|
|
260
|
+
|
|
261
|
+
**Patterns:** Established conventions future phases should maintain.
|
|
262
|
+
|
|
263
|
+
**Population:** Frontmatter is populated during summary creation in execute-plan.md. See `<step name="create_summary">` for field-by-field guidance.
|
|
264
|
+
</frontmatter_guidance>
|
|
265
|
+
|
|
266
|
+
<one_liner_rules>
|
|
267
|
+
The one-liner MUST be substantive:
|
|
268
|
+
|
|
269
|
+
**Good:**
|
|
270
|
+
- "JWT auth with refresh rotation using jose library"
|
|
271
|
+
- "Prisma schema with User, Session, and Product models"
|
|
272
|
+
- "Dashboard with real-time metrics via Server-Sent Events"
|
|
273
|
+
|
|
274
|
+
**Bad:**
|
|
275
|
+
- "Phase complete"
|
|
276
|
+
- "Authentication implemented"
|
|
277
|
+
- "Foundation finished"
|
|
278
|
+
- "All tasks done"
|
|
279
|
+
|
|
280
|
+
The one-liner should tell someone what actually shipped.
|
|
281
|
+
</one_liner_rules>
|
|
282
|
+
|
|
283
|
+
<example>
|
|
284
|
+
```markdown
|
|
285
|
+
# Phase 1: Foundation Summary
|
|
286
|
+
|
|
287
|
+
**JWT auth with refresh rotation using jose library, Prisma User model, and protected API middleware**
|
|
288
|
+
|
|
289
|
+
## Performance
|
|
290
|
+
|
|
291
|
+
- **Duration:** 28 min
|
|
292
|
+
- **Started:** 2025-01-15T14:22:10Z
|
|
293
|
+
- **Completed:** 2025-01-15T14:50:33Z
|
|
294
|
+
- **Tasks:** 5
|
|
295
|
+
- **Files modified:** 8
|
|
296
|
+
|
|
297
|
+
## Accomplishments
|
|
298
|
+
- User model with email/password auth
|
|
299
|
+
- Login/logout endpoints with httpOnly JWT cookies
|
|
300
|
+
- Protected route middleware checking token validity
|
|
301
|
+
- Refresh token rotation on each request
|
|
302
|
+
|
|
303
|
+
## Files Created/Modified
|
|
304
|
+
- `prisma/schema.prisma` - User and Session models
|
|
305
|
+
- `src/app/api/auth/login/route.ts` - Login endpoint
|
|
306
|
+
- `src/app/api/auth/logout/route.ts` - Logout endpoint
|
|
307
|
+
- `src/middleware.ts` - Protected route checks
|
|
308
|
+
- `src/lib/auth.ts` - JWT helpers using jose
|
|
309
|
+
|
|
310
|
+
## Decisions Made
|
|
311
|
+
- Used jose instead of jsonwebtoken (ESM-native, Edge-compatible)
|
|
312
|
+
- 15-min access tokens with 7-day refresh tokens
|
|
313
|
+
- Storing refresh tokens in database for revocation capability
|
|
314
|
+
|
|
315
|
+
## Deviations from Plan
|
|
316
|
+
|
|
317
|
+
### Auto-fixed Issues
|
|
318
|
+
|
|
319
|
+
**1. [Rule 2 - Missing Critical] Added password hashing with bcrypt**
|
|
320
|
+
- **Found during:** Task 2 (Login endpoint implementation)
|
|
321
|
+
- **Issue:** Plan didn't specify password hashing - storing plaintext would be critical security flaw
|
|
322
|
+
- **Fix:** Added bcrypt hashing on registration, comparison on login with salt rounds 10
|
|
323
|
+
- **Files modified:** src/app/api/auth/login/route.ts, src/lib/auth.ts
|
|
324
|
+
- **Verification:** Password hash test passes, plaintext never stored
|
|
325
|
+
- **Committed in:** abc123f (Task 2 commit)
|
|
326
|
+
|
|
327
|
+
**2. [Rule 3 - Blocking] Installed missing jose dependency**
|
|
328
|
+
- **Found during:** Task 4 (JWT token generation)
|
|
329
|
+
- **Issue:** jose package not in package.json, import failing
|
|
330
|
+
- **Fix:** Ran `npm install jose`
|
|
331
|
+
- **Files modified:** package.json, package-lock.json
|
|
332
|
+
- **Verification:** Import succeeds, build passes
|
|
333
|
+
- **Committed in:** def456g (Task 4 commit)
|
|
334
|
+
|
|
335
|
+
---
|
|
336
|
+
|
|
337
|
+
**Total deviations:** 2 auto-fixed (1 missing critical, 1 blocking)
|
|
338
|
+
**Impact on plan:** Both auto-fixes essential for security and functionality. No scope creep.
|
|
339
|
+
|
|
340
|
+
## Issues Encountered
|
|
341
|
+
- jsonwebtoken CommonJS import failed in Edge runtime - switched to jose (planned library change, worked as expected)
|
|
342
|
+
|
|
343
|
+
## Next Phase Readiness
|
|
344
|
+
- Auth foundation complete, ready for feature development
|
|
345
|
+
- User registration endpoint needed before public launch
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
*Phase: 01-foundation*
|
|
349
|
+
*Completed: 2025-01-15*
|
|
350
|
+
```
|
|
351
|
+
</example>
|
|
352
|
+
|
|
353
|
+
<guidelines>
|
|
354
|
+
**Frontmatter:** MANDATORY - complete all fields. Enables automatic context assembly for future planning.
|
|
355
|
+
|
|
356
|
+
**One-liner:** Must be substantive. "JWT auth with refresh rotation using jose library" not "Authentication implemented".
|
|
357
|
+
|
|
358
|
+
**Decisions section:**
|
|
359
|
+
- Key decisions made during execution with rationale
|
|
360
|
+
- Extracted to STATE.md accumulated context
|
|
361
|
+
- Use "None - followed plan as specified" if no deviations
|
|
362
|
+
|
|
363
|
+
**After creation:** STATE.md updated with position, decisions, issues.
|
|
364
|
+
</guidelines>
|