renn-studio 0.6.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/LICENSE +22 -0
- package/README.md +36 -0
- package/agents/renn-architect.md +1463 -0
- package/agents/renn-auditor.md +1053 -0
- package/agents/renn-codebase-mapper.md +908 -0
- package/agents/renn-design-reviewer.md +422 -0
- package/agents/renn-designer.md +814 -0
- package/agents/renn-detective.md +1204 -0
- package/agents/renn-integration-checker.md +957 -0
- package/agents/renn-navigator.md +659 -0
- package/agents/renn-plan-reviewer.md +812 -0
- package/agents/renn-project-scout.md +880 -0
- package/agents/renn-runner.md +842 -0
- package/agents/renn-stage-scout.md +705 -0
- package/agents/renn-synthesizer.md +256 -0
- package/bin/install.js +1466 -0
- package/commands/renn.add-stage.md +211 -0
- package/commands/renn.add-todo.md +194 -0
- package/commands/renn.audit-milestone.md +280 -0
- package/commands/renn.audit.md +219 -0
- package/commands/renn.check-todos.md +229 -0
- package/commands/renn.complete-milestone.md +136 -0
- package/commands/renn.continue.md +46 -0
- package/commands/renn.dash.md +308 -0
- package/commands/renn.debug.md +169 -0
- package/commands/renn.design-screens.md +107 -0
- package/commands/renn.design-system.md +100 -0
- package/commands/renn.discuss-stage.md +86 -0
- package/commands/renn.help.md +550 -0
- package/commands/renn.insert-stage.md +231 -0
- package/commands/renn.list-stage-assumptions.md +49 -0
- package/commands/renn.map-codebase.md +72 -0
- package/commands/renn.new-milestone.md +80 -0
- package/commands/renn.pause.md +132 -0
- package/commands/renn.plan-milestone-gaps.md +314 -0
- package/commands/renn.plan-stage.md +118 -0
- package/commands/renn.remove-stage.md +353 -0
- package/commands/renn.research-stage.md +200 -0
- package/commands/renn.restyle.md +98 -0
- package/commands/renn.run-stage.md +343 -0
- package/commands/renn.set-profile.md +116 -0
- package/commands/renn.settings.md +151 -0
- package/commands/renn.ship.md +52 -0
- package/commands/renn.start.md +95 -0
- package/commands/renn.status.md +530 -0
- package/commands/renn.watch.md +51 -0
- package/hooks/dist/renn-check-update.js +67 -0
- package/hooks/dist/renn-statusline.js +96 -0
- package/package.json +89 -0
- package/renn/references/continuation-format.md +249 -0
- package/renn/references/design-artifacts.md +674 -0
- package/renn/references/design-tokens.md +162 -0
- package/renn/references/gates.md +1078 -0
- package/renn/references/git-integration.md +254 -0
- package/renn/references/horsepower-profiles.md +84 -0
- package/renn/references/planning-config.md +189 -0
- package/renn/references/questioning.md +141 -0
- package/renn/references/security-checklist.md +2184 -0
- package/renn/references/tdd.md +263 -0
- package/renn/references/ui-brand.md +189 -0
- package/renn/references/verification-patterns.md +612 -0
- package/renn/templates/DEBUG.md +159 -0
- package/renn/templates/INTEL.md +283 -0
- package/renn/templates/RECAP.md +246 -0
- package/renn/templates/UAT.md +247 -0
- package/renn/templates/architect-prompt.md +119 -0
- package/renn/templates/brief.md +190 -0
- package/renn/templates/codebase/architecture.md +264 -0
- package/renn/templates/codebase/concerns.md +310 -0
- package/renn/templates/codebase/conventions.md +307 -0
- package/renn/templates/codebase/design.md +336 -0
- package/renn/templates/codebase/integrations.md +280 -0
- package/renn/templates/codebase/stack.md +186 -0
- package/renn/templates/codebase/structure.md +295 -0
- package/renn/templates/codebase/testing.md +480 -0
- package/renn/templates/config.json +36 -0
- package/renn/templates/continue-here.md +80 -0
- package/renn/templates/detective-prompt.md +93 -0
- package/renn/templates/milestone-archive.md +123 -0
- package/renn/templates/milestone.md +117 -0
- package/renn/templates/proof.md +326 -0
- package/renn/templates/pulse.md +176 -0
- package/renn/templates/research/architecture.md +206 -0
- package/renn/templates/research/features.md +149 -0
- package/renn/templates/research/pitfalls.md +202 -0
- package/renn/templates/research/recap.md +187 -0
- package/renn/templates/research/stack.md +122 -0
- package/renn/templates/research/ux.md +283 -0
- package/renn/templates/research-lite.md +146 -0
- package/renn/templates/research.md +582 -0
- package/renn/templates/specs.md +233 -0
- package/renn/templates/stage-prompt.md +571 -0
- package/renn/templates/track.md +211 -0
- package/renn/templates/user-setup.md +315 -0
- package/renn/workflows/audit-stage.md +717 -0
- package/renn/workflows/audit-work.md +596 -0
- package/renn/workflows/complete-milestone.md +875 -0
- package/renn/workflows/continue-project.md +306 -0
- package/renn/workflows/design-stage.md +2019 -0
- package/renn/workflows/diagnose-issues.md +231 -0
- package/renn/workflows/initialize-project.md +1039 -0
- package/renn/workflows/list-assumptions.md +178 -0
- package/renn/workflows/map-codebase.md +374 -0
- package/renn/workflows/new-milestone.md +718 -0
- package/renn/workflows/plan-stage.md +810 -0
- package/renn/workflows/research-stage.md +289 -0
- package/renn/workflows/run-plan.md +1844 -0
- package/renn/workflows/run-stage.md +692 -0
- package/renn/workflows/scope-stage.md +546 -0
- package/renn/workflows/ship-project.md +859 -0
- package/renn/workflows/transition.md +556 -0
- package/renn/workflows/watch-project.md +797 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
# Milestone Archive Template
|
|
2
|
+
|
|
3
|
+
This template is used by the complete-milestone workflow to create archive files in `.renn/milestones/`.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## File Template
|
|
8
|
+
|
|
9
|
+
# Milestone {{MILESTONE_ID}}: {{MILESTONE_NAME}}
|
|
10
|
+
|
|
11
|
+
**Status:** SHIPPED {{DATE}}
|
|
12
|
+
**Stages:** {{STAGE_START}}-{{STAGE_END}}
|
|
13
|
+
**Total Runs:** {{TOTAL_RUNS}}
|
|
14
|
+
|
|
15
|
+
## Overview
|
|
16
|
+
|
|
17
|
+
{{MILESTONE_DESCRIPTION}}
|
|
18
|
+
|
|
19
|
+
## Stages
|
|
20
|
+
|
|
21
|
+
{{STAGES_SECTION}}
|
|
22
|
+
|
|
23
|
+
[For each stage in this milestone, include:]
|
|
24
|
+
|
|
25
|
+
### Stage {{STAGE_NUM}}: {{STAGE_NAME}}
|
|
26
|
+
|
|
27
|
+
**Goal**: {{STAGE_GOAL}}
|
|
28
|
+
**Depends on**: {{DEPENDS_ON}}
|
|
29
|
+
**Runs**: {{RUN_COUNT}} runs
|
|
30
|
+
|
|
31
|
+
Runs:
|
|
32
|
+
|
|
33
|
+
- [x] {{STAGE}}.01: {{RUN_DESCRIPTION}}
|
|
34
|
+
- [x] {{STAGE}}.02: {{RUN_DESCRIPTION}}
|
|
35
|
+
[... all runs ...]
|
|
36
|
+
|
|
37
|
+
**Details:**
|
|
38
|
+
{{STAGE_DETAILS_FROM_TRACK}}
|
|
39
|
+
|
|
40
|
+
**For decimal stages, include (INSERTED) marker:**
|
|
41
|
+
|
|
42
|
+
### Stage 2.1: Critical Security Patch (INSERTED)
|
|
43
|
+
|
|
44
|
+
**Goal**: Fix authentication bypass vulnerability
|
|
45
|
+
**Depends on**: Stage 2
|
|
46
|
+
**Runs**: 1 run
|
|
47
|
+
|
|
48
|
+
Runs:
|
|
49
|
+
|
|
50
|
+
- [x] 02.1.01: Patch auth vulnerability
|
|
51
|
+
|
|
52
|
+
**Details:**
|
|
53
|
+
{{STAGE_DETAILS_FROM_TRACK}}
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Milestone Summary
|
|
58
|
+
|
|
59
|
+
**Decimal Stages:**
|
|
60
|
+
|
|
61
|
+
- Stage 2.1: Critical Security Patch (inserted after Stage 2 for urgent fix)
|
|
62
|
+
- Stage 5.1: Performance Hotfix (inserted after Stage 5 for production issue)
|
|
63
|
+
|
|
64
|
+
**Key Decisions:**
|
|
65
|
+
{{DECISIONS_FROM_PULSE}}
|
|
66
|
+
[Example:]
|
|
67
|
+
|
|
68
|
+
- Decision: Use track.md split (Rationale: Constant context cost)
|
|
69
|
+
- Decision: Decimal stage numbering (Rationale: Clear insertion semantics)
|
|
70
|
+
|
|
71
|
+
**Issues Resolved:**
|
|
72
|
+
{{ISSUES_RESOLVED_DURING_MILESTONE}}
|
|
73
|
+
[Example:]
|
|
74
|
+
|
|
75
|
+
- Fixed context overflow at 100+ stages
|
|
76
|
+
- Resolved stage insertion confusion
|
|
77
|
+
|
|
78
|
+
**Issues Deferred:**
|
|
79
|
+
{{ISSUES_DEFERRED_TO_LATER}}
|
|
80
|
+
[Example:]
|
|
81
|
+
|
|
82
|
+
- brief-pulse.md tiering (deferred until decisions > 300)
|
|
83
|
+
|
|
84
|
+
**Technical Debt Incurred:**
|
|
85
|
+
{{SHORTCUTS_NEEDING_FUTURE_WORK}}
|
|
86
|
+
[Example:]
|
|
87
|
+
|
|
88
|
+
- Some workflows still have hardcoded paths (fix in Stage 5)
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
_For current project status, see .renn/track.md_
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Usage Guidelines
|
|
97
|
+
|
|
98
|
+
<guidelines>
|
|
99
|
+
**When to create milestone archives:**
|
|
100
|
+
- After completing all stages in a milestone (M01, M02, M03, etc.)
|
|
101
|
+
- Triggered by complete-milestone workflow
|
|
102
|
+
- Before planning next milestone work
|
|
103
|
+
|
|
104
|
+
**How to fill template:**
|
|
105
|
+
|
|
106
|
+
- Replace {{PLACEHOLDERS}} with actual values
|
|
107
|
+
- Extract stage details from track.md
|
|
108
|
+
- Document decimal stages with (INSERTED) marker
|
|
109
|
+
- Include key decisions from pulse.md or RECAP files
|
|
110
|
+
- List issues resolved vs deferred
|
|
111
|
+
- Capture technical debt for future reference
|
|
112
|
+
|
|
113
|
+
**Archive location:**
|
|
114
|
+
|
|
115
|
+
- Save to `.renn/milestones/{MILESTONE_ID}-track.md`
|
|
116
|
+
- Example: `.renn/milestones/M01-track.md`
|
|
117
|
+
|
|
118
|
+
**After archiving:**
|
|
119
|
+
|
|
120
|
+
- Update track.md to collapse completed milestone in `<details>` tag
|
|
121
|
+
- Update brief.md with shipped specs moved to Validated
|
|
122
|
+
- Continue stage numbering in next milestone (never restart at 01)
|
|
123
|
+
</guidelines>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# Milestone Entry Template
|
|
2
|
+
|
|
3
|
+
Add this entry to `.renn/milestones.md` when completing a milestone:
|
|
4
|
+
|
|
5
|
+
## File Template
|
|
6
|
+
|
|
7
|
+
```markdown
|
|
8
|
+
## v[X.Y] [Name] (Shipped: YYYY-MM-DD)
|
|
9
|
+
|
|
10
|
+
**Delivered:** [One sentence describing what shipped]
|
|
11
|
+
|
|
12
|
+
**Stages completed:** [X-Y] ([Z] runs total)
|
|
13
|
+
|
|
14
|
+
**Key accomplishments:**
|
|
15
|
+
- [Major achievement 1]
|
|
16
|
+
- [Major achievement 2]
|
|
17
|
+
- [Major achievement 3]
|
|
18
|
+
- [Major achievement 4]
|
|
19
|
+
|
|
20
|
+
**Stats:**
|
|
21
|
+
- [X] files created/modified
|
|
22
|
+
- [Y] lines of code (primary language)
|
|
23
|
+
- [Z] stages, [N] runs, [M] tasks
|
|
24
|
+
- [D] days from start to ship (or milestone to milestone)
|
|
25
|
+
|
|
26
|
+
**Git range:** `feat(XX.XX)` → `feat(YY.YY)`
|
|
27
|
+
|
|
28
|
+
**What's next:** [Brief description of next milestone goals, or "Project complete"]
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
<structure>
|
|
34
|
+
If milestones.md doesn't exist, create it with header:
|
|
35
|
+
|
|
36
|
+
```markdown
|
|
37
|
+
# Project Milestones: [Project Name]
|
|
38
|
+
|
|
39
|
+
[Entries in reverse chronological order - newest first]
|
|
40
|
+
```
|
|
41
|
+
</structure>
|
|
42
|
+
|
|
43
|
+
<guidelines>
|
|
44
|
+
**When to create milestones:**
|
|
45
|
+
- Initial v1.0 MVP shipped
|
|
46
|
+
- Major version releases (v2.0, v3.0)
|
|
47
|
+
- Significant feature milestones (v1.1, v1.2)
|
|
48
|
+
- Before archiving planning (capture what was shipped)
|
|
49
|
+
|
|
50
|
+
**Don't create milestones for:**
|
|
51
|
+
- Individual stage completions (normal workflow)
|
|
52
|
+
- Work in progress (wait until shipped)
|
|
53
|
+
- Minor bug fixes that don't constitute a release
|
|
54
|
+
|
|
55
|
+
**Stats to include:**
|
|
56
|
+
- Count modified files: `git diff --stat feat(XX.XX)..feat(YY.YY) | tail -1`
|
|
57
|
+
- Count LOC: `find . -name "*.swift" -o -name "*.ts" | xargs wc -l` (or relevant extension)
|
|
58
|
+
- Stage/run/task counts from TRACK
|
|
59
|
+
- Timeline from first stage commit to last stage commit
|
|
60
|
+
|
|
61
|
+
**Git range format:**
|
|
62
|
+
- First commit of milestone → last commit of milestone
|
|
63
|
+
- Example: `feat(01.01)` → `feat(04.01)` for stages 1-4
|
|
64
|
+
</guidelines>
|
|
65
|
+
|
|
66
|
+
<example>
|
|
67
|
+
```markdown
|
|
68
|
+
# Project Milestones: WeatherBar
|
|
69
|
+
|
|
70
|
+
## v1.1 Security & Polish (Shipped: 2025-12-10)
|
|
71
|
+
|
|
72
|
+
**Delivered:** Security hardening with Keychain integration and comprehensive error handling
|
|
73
|
+
|
|
74
|
+
**Stages completed:** 5-6 (3 runs total)
|
|
75
|
+
|
|
76
|
+
**Key accomplishments:**
|
|
77
|
+
- Migrated API key storage from plaintext to macOS Keychain
|
|
78
|
+
- Implemented comprehensive error handling for network failures
|
|
79
|
+
- Added Sentry crash reporting integration
|
|
80
|
+
- Fixed memory leak in auto-refresh timer
|
|
81
|
+
|
|
82
|
+
**Stats:**
|
|
83
|
+
- 23 files modified
|
|
84
|
+
- 650 lines of Swift added
|
|
85
|
+
- 2 stages, 3 runs, 12 tasks
|
|
86
|
+
- 8 days from v1.0 to v1.1
|
|
87
|
+
|
|
88
|
+
**Git range:** `feat(05.01)` → `feat(06.02)`
|
|
89
|
+
|
|
90
|
+
**What's next:** v2.0 SwiftUI redesign with widget support
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## v1.0 MVP (Shipped: 2025-11-25)
|
|
95
|
+
|
|
96
|
+
**Delivered:** Menu bar weather app with current conditions and 3-day forecast
|
|
97
|
+
|
|
98
|
+
**Stages completed:** 1-4 (7 runs total)
|
|
99
|
+
|
|
100
|
+
**Key accomplishments:**
|
|
101
|
+
- Menu bar app with popover UI (AppKit)
|
|
102
|
+
- OpenWeather API integration with auto-refresh
|
|
103
|
+
- Current weather display with conditions icon
|
|
104
|
+
- 3-day forecast list with high/low temperatures
|
|
105
|
+
- Code signed and notarized for distribution
|
|
106
|
+
|
|
107
|
+
**Stats:**
|
|
108
|
+
- 47 files created
|
|
109
|
+
- 2,450 lines of Swift
|
|
110
|
+
- 4 stages, 7 runs, 28 tasks
|
|
111
|
+
- 12 days from start to ship
|
|
112
|
+
|
|
113
|
+
**Git range:** `feat(01.01)` → `feat(04.01)`
|
|
114
|
+
|
|
115
|
+
**What's next:** Security audit and hardening for v1.1
|
|
116
|
+
```
|
|
117
|
+
</example>
|
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
# Proof Report Template
|
|
2
|
+
|
|
3
|
+
Template for `.renn/stages/XX-name/{stage}-proof.md` — stage goal verification results.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## File Template
|
|
8
|
+
|
|
9
|
+
```markdown
|
|
10
|
+
---
|
|
11
|
+
stage: 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
|
+
# Stage {X}: {Name} Proof Report
|
|
18
|
+
|
|
19
|
+
**Stage Goal:** {goal from track.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.** Stage 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 Runs
|
|
119
|
+
|
|
120
|
+
{If gaps found, generate fix run recommendations:}
|
|
121
|
+
|
|
122
|
+
### {stage}-{next}-run.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
|
+
### {stage}-{next+1}-run.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 stage goal)
|
|
150
|
+
**Must-haves source:** {run.md frontmatter | derived from track.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
|
+
*Auditor: Claude (subagent)*
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
<guidelines>
|
|
163
|
+
|
|
164
|
+
## Guidelines
|
|
165
|
+
|
|
166
|
+
**Status values:**
|
|
167
|
+
- `passed` — All must-haves verified, no blockers
|
|
168
|
+
- `gaps_found` — One or more critical gaps found
|
|
169
|
+
- `human_needed` — Automated checks pass but human verification required
|
|
170
|
+
|
|
171
|
+
**Evidence types:**
|
|
172
|
+
- For EXISTS: "File at path, exports X"
|
|
173
|
+
- For SUBSTANTIVE: "N lines, has patterns X, Y, Z"
|
|
174
|
+
- For WIRED: "Line N: code that connects A to B"
|
|
175
|
+
- For FAILED: "Missing because X" or "Stub because Y"
|
|
176
|
+
|
|
177
|
+
**Severity levels:**
|
|
178
|
+
- Blocker: Prevents goal achievement, must fix
|
|
179
|
+
- ⚠️ Warning: Indicates incomplete but doesn't block
|
|
180
|
+
- Info: Notable but not problematic
|
|
181
|
+
|
|
182
|
+
**Fix run generation:**
|
|
183
|
+
- Only generate if gaps_found
|
|
184
|
+
- Group related fixes into single runs
|
|
185
|
+
- Keep to 2-3 tasks per run
|
|
186
|
+
- Include verification task in each run
|
|
187
|
+
|
|
188
|
+
</guidelines>
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## Example
|
|
193
|
+
|
|
194
|
+
```markdown
|
|
195
|
+
---
|
|
196
|
+
stage: 03-chat
|
|
197
|
+
verified: 2025-01-15T14:30:00Z
|
|
198
|
+
status: gaps_found
|
|
199
|
+
score: 2/5 must-haves verified
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
# Stage 3: Chat Interface Proof Report
|
|
203
|
+
|
|
204
|
+
**Stage Goal:** Working chat interface where users can send and receive messages
|
|
205
|
+
**Verified:** 2025-01-15T14:30:00Z
|
|
206
|
+
**Status:** gaps_found
|
|
207
|
+
|
|
208
|
+
## Goal Achievement
|
|
209
|
+
|
|
210
|
+
### Observable Truths
|
|
211
|
+
|
|
212
|
+
| # | Truth | Status | Evidence |
|
|
213
|
+
|---|-------|--------|----------|
|
|
214
|
+
| 1 | User can see existing messages | ✗ FAILED | Component renders placeholder, not message data |
|
|
215
|
+
| 2 | User can type a message | ✓ VERIFIED | Input field exists with onChange handler |
|
|
216
|
+
| 3 | User can send a message | ✗ FAILED | onSubmit handler is console.log only |
|
|
217
|
+
| 4 | Sent message appears in list | ✗ FAILED | No state update after send |
|
|
218
|
+
| 5 | Messages persist across refresh | ? UNCERTAIN | Can't verify - send doesn't work |
|
|
219
|
+
|
|
220
|
+
**Score:** 1/5 truths verified
|
|
221
|
+
|
|
222
|
+
### Required Artifacts
|
|
223
|
+
|
|
224
|
+
| Artifact | Expected | Status | Details |
|
|
225
|
+
|----------|----------|--------|---------|
|
|
226
|
+
| `src/components/Chat.tsx` | Message list component | ✗ STUB | Returns `<div>Chat will be here</div>` |
|
|
227
|
+
| `src/components/ChatInput.tsx` | Message input | ✓ EXISTS + SUBSTANTIVE | Form with input, submit button, handlers |
|
|
228
|
+
| `src/app/api/chat/route.ts` | Message CRUD | ✗ STUB | GET returns [], POST returns { ok: true } |
|
|
229
|
+
| `prisma/schema.prisma` | Message model | ✓ EXISTS + SUBSTANTIVE | Message model with id, content, userId, createdAt |
|
|
230
|
+
|
|
231
|
+
**Artifacts:** 2/4 verified
|
|
232
|
+
|
|
233
|
+
### Key Link Verification
|
|
234
|
+
|
|
235
|
+
| From | To | Via | Status | Details |
|
|
236
|
+
|------|----|----|--------|---------|
|
|
237
|
+
| Chat.tsx | /api/chat GET | fetch | ✗ NOT WIRED | No fetch call in component |
|
|
238
|
+
| ChatInput | /api/chat POST | onSubmit | ✗ NOT WIRED | Handler only logs, doesn't fetch |
|
|
239
|
+
| /api/chat GET | database | prisma.message.findMany | ✗ NOT WIRED | Returns hardcoded [] |
|
|
240
|
+
| /api/chat POST | database | prisma.message.create | ✗ NOT WIRED | Returns { ok: true }, no DB call |
|
|
241
|
+
|
|
242
|
+
**Wiring:** 0/4 connections verified
|
|
243
|
+
|
|
244
|
+
## Requirements Coverage
|
|
245
|
+
|
|
246
|
+
| Requirement | Status | Blocking Issue |
|
|
247
|
+
|-------------|--------|----------------|
|
|
248
|
+
| CHAT-01: User can send message | ✗ BLOCKED | API POST is stub |
|
|
249
|
+
| CHAT-02: User can view messages | ✗ BLOCKED | Component is placeholder |
|
|
250
|
+
| CHAT-03: Messages persist | ✗ BLOCKED | No database integration |
|
|
251
|
+
|
|
252
|
+
**Coverage:** 0/3 requirements satisfied
|
|
253
|
+
|
|
254
|
+
## Anti-Patterns Found
|
|
255
|
+
|
|
256
|
+
| File | Line | Pattern | Severity | Impact |
|
|
257
|
+
|------|------|---------|----------|--------|
|
|
258
|
+
| src/components/Chat.tsx | 8 | `<div>Chat will be here</div>` | Blocker | No actual content |
|
|
259
|
+
| src/app/api/chat/route.ts | 5 | `return Response.json([])` | Blocker | Hardcoded empty |
|
|
260
|
+
| src/app/api/chat/route.ts | 12 | `// TODO: save to database` | ⚠️ Warning | Incomplete |
|
|
261
|
+
|
|
262
|
+
**Anti-patterns:** 3 found (2 blockers, 1 warning)
|
|
263
|
+
|
|
264
|
+
## Human Verification Required
|
|
265
|
+
|
|
266
|
+
None needed until automated gaps are fixed.
|
|
267
|
+
|
|
268
|
+
## Gaps Summary
|
|
269
|
+
|
|
270
|
+
### Critical Gaps (Block Progress)
|
|
271
|
+
|
|
272
|
+
1. **Chat component is placeholder**
|
|
273
|
+
- Missing: Actual message list rendering
|
|
274
|
+
- Impact: Users see "Chat will be here" instead of messages
|
|
275
|
+
- Fix: Implement Chat.tsx to fetch and render messages
|
|
276
|
+
|
|
277
|
+
2. **API routes are stubs**
|
|
278
|
+
- Missing: Database integration in GET and POST
|
|
279
|
+
- Impact: No data persistence, no real functionality
|
|
280
|
+
- Fix: Wire prisma calls in route handlers
|
|
281
|
+
|
|
282
|
+
3. **No wiring between frontend and backend**
|
|
283
|
+
- Missing: fetch calls in components
|
|
284
|
+
- Impact: Even if API worked, UI wouldn't call it
|
|
285
|
+
- Fix: Add useEffect fetch in Chat, onSubmit fetch in ChatInput
|
|
286
|
+
|
|
287
|
+
## Recommended Fix Runs
|
|
288
|
+
|
|
289
|
+
### 03-04-run.md: Implement Chat API
|
|
290
|
+
|
|
291
|
+
**Objective:** Wire API routes to database
|
|
292
|
+
|
|
293
|
+
**Tasks:**
|
|
294
|
+
1. Implement GET /api/chat with prisma.message.findMany
|
|
295
|
+
2. Implement POST /api/chat with prisma.message.create
|
|
296
|
+
3. Verify: API returns real data, POST creates records
|
|
297
|
+
|
|
298
|
+
**Estimated scope:** Small
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
### 03-05-run.md: Implement Chat UI
|
|
303
|
+
|
|
304
|
+
**Objective:** Wire Chat component to API
|
|
305
|
+
|
|
306
|
+
**Tasks:**
|
|
307
|
+
1. Implement Chat.tsx with useEffect fetch and message rendering
|
|
308
|
+
2. Wire ChatInput onSubmit to POST /api/chat
|
|
309
|
+
3. Verify: Messages display, new messages appear after send
|
|
310
|
+
|
|
311
|
+
**Estimated scope:** Small
|
|
312
|
+
|
|
313
|
+
---
|
|
314
|
+
|
|
315
|
+
## Verification Metadata
|
|
316
|
+
|
|
317
|
+
**Verification approach:** Goal-backward (derived from stage goal)
|
|
318
|
+
**Must-haves source:** 03-01-run.md frontmatter
|
|
319
|
+
**Automated checks:** 2 passed, 8 failed
|
|
320
|
+
**Human checks required:** 0 (blocked by automated failures)
|
|
321
|
+
**Total verification time:** 2 min
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
*Verified: 2025-01-15T14:30:00Z*
|
|
325
|
+
*Auditor: Claude (subagent)*
|
|
326
|
+
```
|