@lifeaitools/rdc-skills 0.9.31 → 0.9.33
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/plugin.json +24 -2
- package/.github/workflows/self-test.yml +34 -34
- package/MANIFEST.md +4 -0
- package/commands/build.md +183 -183
- package/commands/collab.md +180 -180
- package/commands/deploy.md +152 -138
- package/commands/fixit.md +116 -104
- package/commands/handoff.md +173 -173
- package/commands/overnight.md +220 -220
- package/commands/plan.md +158 -158
- package/commands/preplan.md +131 -131
- package/commands/prototype.md +145 -145
- package/commands/report.md +99 -99
- package/commands/review.md +120 -120
- package/commands/status.md +86 -86
- package/commands/workitems.md +132 -127
- package/guides/agent-bootstrap.md +265 -206
- package/guides/agents/backend.md +104 -104
- package/guides/agents/content.md +94 -94
- package/guides/agents/cs2.md +56 -56
- package/guides/agents/data.md +87 -87
- package/guides/agents/design.md +77 -77
- package/guides/agents/frontend.md +92 -92
- package/guides/agents/infrastructure.md +81 -81
- package/guides/agents/setup.md +279 -279
- package/guides/agents/verify.md +119 -119
- package/guides/agents/viz.md +106 -106
- package/hooks/foreground-process-gate.js +109 -0
- package/hooks/hook-logger.js +25 -0
- package/hooks/run-hidden-hook.ps1 +47 -0
- package/hooks/work-item-exit-gate.js +297 -0
- package/package.json +3 -3
- package/rules/work-items-rpc.md +56 -7
- package/scripts/fixtures/guides/bad-guide.md +15 -0
- package/scripts/fixtures/guides-clean/good-guide.md +16 -0
- package/scripts/install-rdc-skills.js +53 -9
- package/scripts/install.ps1 +17 -11
- package/scripts/self-test.mjs +1323 -1113
- package/scripts/test-guide-validator.mjs +194 -0
- package/skills/build/SKILL.md +355 -355
- package/skills/co-develop/SKILL.md +182 -0
- package/skills/collab/SKILL.md +217 -217
- package/skills/deploy/SKILL.md +198 -152
- package/skills/design/SKILL.md +211 -211
- package/skills/fixit/SKILL.md +132 -122
- package/skills/handoff/SKILL.md +200 -200
- package/skills/help/SKILL.md +104 -102
- package/skills/overnight/SKILL.md +224 -224
- package/skills/plan/SKILL.md +252 -251
- package/skills/preplan/SKILL.md +86 -86
- package/skills/prototype/SKILL.md +150 -150
- package/skills/release/SKILL.md +342 -342
- package/skills/report/SKILL.md +100 -100
- package/skills/review/SKILL.md +121 -120
- package/skills/self-test/SKILL.md +126 -126
- package/skills/status/SKILL.md +99 -97
- package/skills/terminal-config/SKILL.md +18 -18
- package/skills/watch/SKILL.md +91 -91
- package/skills/workitems/SKILL.md +151 -146
package/skills/report/SKILL.md
CHANGED
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: rdc:report
|
|
3
|
-
description: "Write the nightly session summary to .rdc/reports/YYYY-MM-DD.md covering completed work, open items, per-project progress, and infra status. Call at session end."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
> **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
|
|
7
|
-
> Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
|
|
8
|
-
> One checklist upfront, updated in place, shown again at end with a 1-line verdict.
|
|
9
|
-
|
|
10
|
-
> If dispatching subagents or running as a subagent: read `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md` first (fallback: `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md`).
|
|
11
|
-
|
|
12
|
-
> **Sandbox contract:** This skill honors `RDC_TEST=1` per `guides/agent-bootstrap.md` § RDC_TEST Sandbox Contract. Destructive external calls short-circuit under the flag. Git push is skipped under `RDC_TEST=1`.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
# rdc:report — Nightly Report
|
|
16
|
-
|
|
17
|
-
## When to Use
|
|
18
|
-
- End of a build session
|
|
19
|
-
- Project lead asks for a report or summary
|
|
20
|
-
- Nightly scheduled task
|
|
21
|
-
- Before handing off to another session
|
|
22
|
-
- Called by `rdc:overnight` at the end of every session
|
|
23
|
-
|
|
24
|
-
## Arguments
|
|
25
|
-
- `rdc:report` — interactive, prints summary to conversation
|
|
26
|
-
- `rdc:report --unattended` — silent mode, writes file only, returns status block
|
|
27
|
-
|
|
28
|
-
## Procedure
|
|
29
|
-
|
|
30
|
-
1. **Query completed work (last 24h or since last report):**
|
|
31
|
-
```sql
|
|
32
|
-
SELECT title, labels, completed_at, notes
|
|
33
|
-
FROM work_items
|
|
34
|
-
WHERE completed_at > now() - interval '24 hours'
|
|
35
|
-
ORDER BY completed_at;
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
2. **Query open work:**
|
|
39
|
-
```sql
|
|
40
|
-
SELECT title, status, priority, labels
|
|
41
|
-
FROM work_items
|
|
42
|
-
WHERE status IN ('todo', 'in_progress', 'blocked')
|
|
43
|
-
ORDER BY priority, created_at;
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
3. **Git stats (since last report or last 24h):**
|
|
47
|
-
```bash
|
|
48
|
-
git log --since="24 hours ago" --shortstat --oneline
|
|
49
|
-
git diff --shortstat HEAD~N # where N = commits in window
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
4. **Infrastructure deployment snapshot** (if MCP available):
|
|
53
|
-
- List all apps with current status
|
|
54
|
-
- Flag any failures
|
|
55
|
-
|
|
56
|
-
5. **Write report** to `.rdc/reports/YYYY-MM-DD.md` (fallback: `.rdc/reports/YYYY-MM-DD.md` if `.rdc/` does not exist):
|
|
57
|
-
```markdown
|
|
58
|
-
# Daily Report — YYYY-MM-DD
|
|
59
|
-
|
|
60
|
-
## Completed Today
|
|
61
|
-
| Item | Project | Priority |
|
|
62
|
-
|
|
63
|
-
## Git Activity
|
|
64
|
-
- Commits: N
|
|
65
|
-
- Files changed: N
|
|
66
|
-
- Lines: +N / -N
|
|
67
|
-
|
|
68
|
-
## Open Work
|
|
69
|
-
### Urgent (N)
|
|
70
|
-
### High (N)
|
|
71
|
-
### Normal (N)
|
|
72
|
-
|
|
73
|
-
## Deployment Status
|
|
74
|
-
| App | Domain | Status |
|
|
75
|
-
|
|
76
|
-
## Blockers
|
|
77
|
-
<any blocked items or failed deploys>
|
|
78
|
-
|
|
79
|
-
## Next Session Recommendation
|
|
80
|
-
<highest priority unstarted work>
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
6. **Check if weekly rollup needed** (if today is Sunday):
|
|
84
|
-
- Aggregate daily reports for the week
|
|
85
|
-
- Write `.rdc/reports/week-YYYY-WNN.md` (fallback: `.rdc/reports/week-YYYY-WNN.md`)
|
|
86
|
-
|
|
87
|
-
7. **Report results:**
|
|
88
|
-
- Interactive: print summary to conversation
|
|
89
|
-
- Unattended: no interactive output, emit status block only:
|
|
90
|
-
```
|
|
91
|
-
REPORT_STATUS: { report_path, completed_count, open_count, blockers_count }
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
## Rules
|
|
95
|
-
- Reports go in `.rdc/reports/` (fallback: `.rdc/reports/`) — create dir if missing
|
|
96
|
-
- One report per day — overwrite if re-run same day
|
|
97
|
-
- Keep under 100 lines — scannable, not exhaustive
|
|
98
|
-
- Include links to relevant CLAUDE.md files where helpful
|
|
99
|
-
- Always end with "Next Session Recommendation"
|
|
100
|
-
- Unattended: NEVER print to conversation — write file only
|
|
1
|
+
---
|
|
2
|
+
name: rdc:report
|
|
3
|
+
description: "Usage `rdc:report` — Write the nightly session summary to .rdc/reports/YYYY-MM-DD.md covering completed work, open items, per-project progress, and infra status. Call at session end."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
|
|
7
|
+
> Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
|
|
8
|
+
> One checklist upfront, updated in place, shown again at end with a 1-line verdict.
|
|
9
|
+
|
|
10
|
+
> If dispatching subagents or running as a subagent: read `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md` first (fallback: `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md`).
|
|
11
|
+
|
|
12
|
+
> **Sandbox contract:** This skill honors `RDC_TEST=1` per `guides/agent-bootstrap.md` § RDC_TEST Sandbox Contract. Destructive external calls short-circuit under the flag. Git push is skipped under `RDC_TEST=1`.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# rdc:report — Nightly Report
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
- End of a build session
|
|
19
|
+
- Project lead asks for a report or summary
|
|
20
|
+
- Nightly scheduled task
|
|
21
|
+
- Before handing off to another session
|
|
22
|
+
- Called by `rdc:overnight` at the end of every session
|
|
23
|
+
|
|
24
|
+
## Arguments
|
|
25
|
+
- `rdc:report` — interactive, prints summary to conversation
|
|
26
|
+
- `rdc:report --unattended` — silent mode, writes file only, returns status block
|
|
27
|
+
|
|
28
|
+
## Procedure
|
|
29
|
+
|
|
30
|
+
1. **Query completed work (last 24h or since last report):**
|
|
31
|
+
```sql
|
|
32
|
+
SELECT title, labels, completed_at, notes
|
|
33
|
+
FROM work_items
|
|
34
|
+
WHERE completed_at > now() - interval '24 hours'
|
|
35
|
+
ORDER BY completed_at;
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
2. **Query open work:**
|
|
39
|
+
```sql
|
|
40
|
+
SELECT title, status, priority, labels
|
|
41
|
+
FROM work_items
|
|
42
|
+
WHERE status IN ('todo', 'in_progress', 'blocked')
|
|
43
|
+
ORDER BY priority, created_at;
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
3. **Git stats (since last report or last 24h):**
|
|
47
|
+
```bash
|
|
48
|
+
git log --since="24 hours ago" --shortstat --oneline
|
|
49
|
+
git diff --shortstat HEAD~N # where N = commits in window
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
4. **Infrastructure deployment snapshot** (if MCP available):
|
|
53
|
+
- List all apps with current status
|
|
54
|
+
- Flag any failures
|
|
55
|
+
|
|
56
|
+
5. **Write report** to `.rdc/reports/YYYY-MM-DD.md` (fallback: `.rdc/reports/YYYY-MM-DD.md` if `.rdc/` does not exist):
|
|
57
|
+
```markdown
|
|
58
|
+
# Daily Report — YYYY-MM-DD
|
|
59
|
+
|
|
60
|
+
## Completed Today
|
|
61
|
+
| Item | Project | Priority |
|
|
62
|
+
|
|
63
|
+
## Git Activity
|
|
64
|
+
- Commits: N
|
|
65
|
+
- Files changed: N
|
|
66
|
+
- Lines: +N / -N
|
|
67
|
+
|
|
68
|
+
## Open Work
|
|
69
|
+
### Urgent (N)
|
|
70
|
+
### High (N)
|
|
71
|
+
### Normal (N)
|
|
72
|
+
|
|
73
|
+
## Deployment Status
|
|
74
|
+
| App | Domain | Status |
|
|
75
|
+
|
|
76
|
+
## Blockers
|
|
77
|
+
<any blocked items or failed deploys>
|
|
78
|
+
|
|
79
|
+
## Next Session Recommendation
|
|
80
|
+
<highest priority unstarted work>
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
6. **Check if weekly rollup needed** (if today is Sunday):
|
|
84
|
+
- Aggregate daily reports for the week
|
|
85
|
+
- Write `.rdc/reports/week-YYYY-WNN.md` (fallback: `.rdc/reports/week-YYYY-WNN.md`)
|
|
86
|
+
|
|
87
|
+
7. **Report results:**
|
|
88
|
+
- Interactive: print summary to conversation
|
|
89
|
+
- Unattended: no interactive output, emit status block only:
|
|
90
|
+
```
|
|
91
|
+
REPORT_STATUS: { report_path, completed_count, open_count, blockers_count }
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Rules
|
|
95
|
+
- Reports go in `.rdc/reports/` (fallback: `.rdc/reports/`) — create dir if missing
|
|
96
|
+
- One report per day — overwrite if re-run same day
|
|
97
|
+
- Keep under 100 lines — scannable, not exhaustive
|
|
98
|
+
- Include links to relevant CLAUDE.md files where helpful
|
|
99
|
+
- Always end with "Next Session Recommendation"
|
|
100
|
+
- Unattended: NEVER print to conversation — write file only
|
package/skills/review/SKILL.md
CHANGED
|
@@ -1,120 +1,121 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: rdc:review
|
|
3
|
-
description: "Post-build quality gate: tsc, tests, stale docs, export conflicts across modified packages. Fixes what it can automatically, escalates the rest. Call after rdc:build and before merging to main."
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
> **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
|
|
7
|
-
> Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
|
|
8
|
-
> One checklist upfront, updated in place, shown again at end with a 1-line verdict.
|
|
9
|
-
|
|
10
|
-
> If dispatching subagents or running as a subagent: read `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md` first (fallback: `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md`).
|
|
11
|
-
|
|
12
|
-
> **Sandbox contract:** This skill honors `RDC_TEST=1` per `guides/agent-bootstrap.md` § RDC_TEST Sandbox Contract. Destructive external calls short-circuit under the flag.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
# rdc:review — Quality Gate
|
|
16
|
-
|
|
17
|
-
## When to Use
|
|
18
|
-
- After a build session (especially overnight builds)
|
|
19
|
-
- Before merging development → main/production
|
|
20
|
-
- Project lead asks "review the work", "is everything clean"
|
|
21
|
-
- Before any production deployment
|
|
22
|
-
- Called by `rdc:overnight` after each epic build completes
|
|
23
|
-
|
|
24
|
-
## Arguments
|
|
25
|
-
- `rdc:review` — interactive review, pauses on issues needing judgment
|
|
26
|
-
- `rdc:review --unattended` — silent mode, auto-fixes everything fixable
|
|
27
|
-
|
|
28
|
-
## Procedure
|
|
29
|
-
|
|
30
|
-
1. **Identify modified packages:**
|
|
31
|
-
```bash
|
|
32
|
-
git diff --name-only origin/main...HEAD | grep "^packages/" | cut -d/ -f2 | sort -u
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
2. **Run tests for each modified package:**
|
|
36
|
-
```bash
|
|
37
|
-
cd packages/<name> && npx vitest run 2>&1 | tail -10
|
|
38
|
-
```
|
|
39
|
-
Report: package → test count → pass/fail → new tests added
|
|
40
|
-
|
|
41
|
-
**IMPORTANT:** `pnpm build` must NEVER be run (crashes system). Use `npx tsc --noEmit --project <path>/tsconfig.json` for typecheck instead. For packages without tests, typecheck is the verification method. Do NOT run vitest across the entire monorepo — check only modified packages individually.
|
|
42
|
-
|
|
43
|
-
3. **Check test coverage delta:**
|
|
44
|
-
```bash
|
|
45
|
-
git diff origin/main...HEAD -- packages/*/src/ | grep -c "^+" | head -5
|
|
46
|
-
git diff origin/main...HEAD -- packages/*/test* packages/*/src/**/*.test.* packages/*/src/**/*.spec.* 2>/dev/null | grep -c "^+" || echo 0
|
|
47
|
-
```
|
|
48
|
-
Flag any package where implementation lines added > 50 but test lines added = 0.
|
|
49
|
-
|
|
50
|
-
4. **Check for export conflicts:**
|
|
51
|
-
- Read `packages/*/src/index.ts` for any package with new exports
|
|
52
|
-
- Look for duplicate export names across the barrel
|
|
53
|
-
- Verify aliased exports don't shadow each other
|
|
54
|
-
|
|
55
|
-
5. **Check for TODO/FIXME/HACK:**
|
|
56
|
-
```bash
|
|
57
|
-
grep -rn "TODO\|FIXME\|HACK\|XXX" packages/*/src/ --include="*.ts" --include="*.tsx"
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
6. **Check package versions:**
|
|
61
|
-
- Any package with significant new code should have a version bump
|
|
62
|
-
- Compare package.json versions to what's in `docs/SYSTEM-STATE.md`
|
|
63
|
-
|
|
64
|
-
7. **Check for stale CLAUDE.md:**
|
|
65
|
-
- If new modules were added to a package, does its CLAUDE.md mention them?
|
|
66
|
-
- Flag any package where exports grew by >10 lines but CLAUDE.md wasn't updated
|
|
67
|
-
|
|
68
|
-
8. **Orphan work item audit:**
|
|
69
|
-
```sql
|
|
70
|
-
SELECT id, title, item_type, status, source, created_at::date
|
|
71
|
-
FROM work_items
|
|
72
|
-
WHERE parent_id IS NULL
|
|
73
|
-
AND item_type NOT IN ('epic', 'bug')
|
|
74
|
-
AND status NOT IN ('done', 'archived')
|
|
75
|
-
ORDER BY created_at DESC;
|
|
76
|
-
```
|
|
77
|
-
For each orphaned task found:
|
|
78
|
-
- If it clearly belongs to an open epic →
|
|
79
|
-
- If unclear → report (interactive) or flag in REVIEW_STATUS (unattended)
|
|
80
|
-
- Never silently leave orphaned tasks
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
##
|
|
107
|
-
##
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
1
|
+
---
|
|
2
|
+
name: rdc:review
|
|
3
|
+
description: "Usage `rdc:review [--unattended]` — Post-build quality gate: tsc, tests, stale docs, export conflicts across modified packages. Fixes what it can automatically, escalates the rest. Call after rdc:build and before merging to main."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
> **⚠️ OUTPUT CONTRACT (READ FIRST):** `guides/output-contract.md`
|
|
7
|
+
> Checklist-only output. No tool-call narration. No raw MCP/JSON/log dumps.
|
|
8
|
+
> One checklist upfront, updated in place, shown again at end with a 1-line verdict.
|
|
9
|
+
|
|
10
|
+
> If dispatching subagents or running as a subagent: read `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md` first (fallback: `{PROJECT_ROOT}/.rdc/guides/agent-bootstrap.md`).
|
|
11
|
+
|
|
12
|
+
> **Sandbox contract:** This skill honors `RDC_TEST=1` per `guides/agent-bootstrap.md` § RDC_TEST Sandbox Contract. Destructive external calls short-circuit under the flag.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# rdc:review — Quality Gate
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
- After a build session (especially overnight builds)
|
|
19
|
+
- Before merging development → main/production
|
|
20
|
+
- Project lead asks "review the work", "is everything clean"
|
|
21
|
+
- Before any production deployment
|
|
22
|
+
- Called by `rdc:overnight` after each epic build completes
|
|
23
|
+
|
|
24
|
+
## Arguments
|
|
25
|
+
- `rdc:review` — interactive review, pauses on issues needing judgment
|
|
26
|
+
- `rdc:review --unattended` — silent mode, auto-fixes everything fixable
|
|
27
|
+
|
|
28
|
+
## Procedure
|
|
29
|
+
|
|
30
|
+
1. **Identify modified packages:**
|
|
31
|
+
```bash
|
|
32
|
+
git diff --name-only origin/main...HEAD | grep "^packages/" | cut -d/ -f2 | sort -u
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
2. **Run tests for each modified package:**
|
|
36
|
+
```bash
|
|
37
|
+
cd packages/<name> && npx vitest run 2>&1 | tail -10
|
|
38
|
+
```
|
|
39
|
+
Report: package → test count → pass/fail → new tests added
|
|
40
|
+
|
|
41
|
+
**IMPORTANT:** `pnpm build` must NEVER be run (crashes system). Use `npx tsc --noEmit --project <path>/tsconfig.json` for typecheck instead. For packages without tests, typecheck is the verification method. Do NOT run vitest across the entire monorepo — check only modified packages individually.
|
|
42
|
+
|
|
43
|
+
3. **Check test coverage delta:**
|
|
44
|
+
```bash
|
|
45
|
+
git diff origin/main...HEAD -- packages/*/src/ | grep -c "^+" | head -5
|
|
46
|
+
git diff origin/main...HEAD -- packages/*/test* packages/*/src/**/*.test.* packages/*/src/**/*.spec.* 2>/dev/null | grep -c "^+" || echo 0
|
|
47
|
+
```
|
|
48
|
+
Flag any package where implementation lines added > 50 but test lines added = 0.
|
|
49
|
+
|
|
50
|
+
4. **Check for export conflicts:**
|
|
51
|
+
- Read `packages/*/src/index.ts` for any package with new exports
|
|
52
|
+
- Look for duplicate export names across the barrel
|
|
53
|
+
- Verify aliased exports don't shadow each other
|
|
54
|
+
|
|
55
|
+
5. **Check for TODO/FIXME/HACK:**
|
|
56
|
+
```bash
|
|
57
|
+
grep -rn "TODO\|FIXME\|HACK\|XXX" packages/*/src/ --include="*.ts" --include="*.tsx"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
6. **Check package versions:**
|
|
61
|
+
- Any package with significant new code should have a version bump
|
|
62
|
+
- Compare package.json versions to what's in `docs/SYSTEM-STATE.md`
|
|
63
|
+
|
|
64
|
+
7. **Check for stale CLAUDE.md:**
|
|
65
|
+
- If new modules were added to a package, does its CLAUDE.md mention them?
|
|
66
|
+
- Flag any package where exports grew by >10 lines but CLAUDE.md wasn't updated
|
|
67
|
+
|
|
68
|
+
8. **Orphan work item audit:**
|
|
69
|
+
```sql
|
|
70
|
+
SELECT id, title, item_type, status, source, created_at::date
|
|
71
|
+
FROM work_items
|
|
72
|
+
WHERE parent_id IS NULL
|
|
73
|
+
AND item_type NOT IN ('epic', 'bug')
|
|
74
|
+
AND status NOT IN ('done', 'archived')
|
|
75
|
+
ORDER BY created_at DESC;
|
|
76
|
+
```
|
|
77
|
+
For each orphaned task found:
|
|
78
|
+
- If it clearly belongs to an open epic → **do not run raw SQL**. No RPC exists for re-parenting. Create a work item: `SELECT insert_work_item(p_title := 'Re-parent orphaned task <task-id> to epic <epic-id>', p_priority := 'normal', p_source := 'agent')` and flag for supervisor to re-parent manually.
|
|
79
|
+
- If unclear → report (interactive) or flag in REVIEW_STATUS (unattended)
|
|
80
|
+
- Never silently leave orphaned tasks
|
|
81
|
+
- **⛔ Raw `UPDATE work_items SET parent_id = ...` is forbidden** — bypasses RLS and all constraint checks
|
|
82
|
+
|
|
83
|
+
9. **Verification gate — dispatch the verify agent:**
|
|
84
|
+
After any fixes land, run the verify gate on every touched package. See `guides/agents/verify.md`.
|
|
85
|
+
**Iron Law: no CLEAN verdict without fresh evidence.** Quote the checklist decomposition verdict, vitest output, and tsc output in the report.
|
|
86
|
+
The verify agent must reject any work item that lacks passed `decomp-*` checklist rows or whose rows are too coarse to prove one observable behavior at a time.
|
|
87
|
+
If verify fails → do NOT emit CLEAN. Loop back, fix, re-run verify.
|
|
88
|
+
|
|
89
|
+
10. **Fix issues found:**
|
|
90
|
+
- Failing tests → fix and commit
|
|
91
|
+
- Export conflicts → resolve and commit
|
|
92
|
+
- Missing version bumps → bump and commit
|
|
93
|
+
- All fixes as separate commits with descriptive messages
|
|
94
|
+
|
|
95
|
+
**Judgment calls:**
|
|
96
|
+
- Interactive: report — don't guess
|
|
97
|
+
- Unattended: escalate via advisor tool with: error message, surrounding context,
|
|
98
|
+
two most likely fix paths. Resume with advisor's recommendation.
|
|
99
|
+
If advisor unavailable: take the most conservative path, flag in status block.
|
|
100
|
+
|
|
101
|
+
11. **Report:**
|
|
102
|
+
- Interactive:
|
|
103
|
+
```
|
|
104
|
+
## Review Results
|
|
105
|
+
| Package | Tests | Pass/Fail | New Tests | Issues |
|
|
106
|
+
## Fixed
|
|
107
|
+
## Remaining Issues
|
|
108
|
+
## Verdict: CLEAN / HAS ISSUES
|
|
109
|
+
```
|
|
110
|
+
- Unattended: emit status block only:
|
|
111
|
+
```
|
|
112
|
+
REVIEW_STATUS: { verdict: "CLEAN|HAS_ISSUES", packages_checked, tests_passed, tests_failed, new_tests_added, fixes_applied, escalations }
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Rules
|
|
116
|
+
- Do NOT run `pnpm build` (crashes system) — vitest only
|
|
117
|
+
- Interactive: fix what you can, flag what needs decision
|
|
118
|
+
- Unattended: fix everything fixable; escalate judgment calls to advisor
|
|
119
|
+
- Each fix is a separate commit (not batched)
|
|
120
|
+
- Always push fixes to origin after committing *(skip if `$RDC_TEST=1` — echo `[RDC_TEST] skipping git push` instead)*
|
|
121
|
+
- Unattended: NEVER pause for input
|