You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Execute the plan — write code, write tests, run quality review, and open a PR:
67
67
68
68
### 4. `/review`
69
69
70
-
Automated review against best practices, test coverage, accessibility, and performance. Catches issues before they reach PR.
70
+
Runs specialized agents in parallel — VGV standards, architecture, test quality, and simplicity. Findings land in one consolidated report with stable `FINDING-NN` ids, and the chat summary mirrors it so you can act on any finding by number. Catches issues before they reach PR.
Copy file name to clipboardExpand all lines: skills/build/SKILL.md
+18-12Lines changed: 18 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Build Progress:
22
22
-[ ] Phase 0: Load plan and confirm scope
23
23
-[ ] Phase 1: Read context files
24
24
-[ ] Phase 2: Implement, test, and run the surgical-diff gate
25
-
-[ ] Phase 3: Run review agents (5 in parallel)
25
+
-[ ] Phase 3: Run review agents (5 in parallel), consolidate into one report
26
26
-[ ] Phase 4: Final validation, cleanup, and ship
27
27
```
28
28
@@ -110,21 +110,25 @@ After all implementation tasks are complete, run 5 review agents **in parallel**
110
110
111
111
### Agent instructions
112
112
113
-
Each agent prompt must include the [review agent instructions](references/review-agent-instructions.md) with `REPORT_DIR` set to `docs/reviews/`.
113
+
Run `pwd` and let `<PWD>` be the result — subagents may change directories, making relative paths unreliable.
114
114
115
-
The 5 agents and their report filenames:
115
+
Each agent prompt must include the [review agent instructions](references/review-agent-instructions.md) with `<RAW_DIR>` set to `<PWD>/docs/reviews/raw`and `<name>` set to the agent's report name below (a bare stem — the agent writes `<RAW_DIR>/<name>.md`). Substitute `<PWD>` with the absolute path.
If an agent fails, note it, continue with the rest, and record the failure in the report header.
124
128
125
129
### After all reviews complete
126
130
127
-
Follow the [review consolidation procedure](references/review-consolidation.md): categorize findings, auto-fix minor issues, fix critical issues, present important issues to the user, and record suggestions.
131
+
Follow the [review consolidation procedure](references/review-consolidation.md): deduplicate the agents' structured findings, order them deterministically, assign stable `FINDING-NN` ids, and write **one** consolidated file to `<PWD>/docs/reviews/review.md` using the [report template](references/review-report-template.md). Print the aligned chat summary (same ids, order, and titles as the file). Then act: auto-fix minor issues, fix Critical findings by id, present Important findings to the user, and note any still-deferred findings in the PR description.
128
132
129
133
## Phase 4 — Ship
130
134
@@ -152,7 +156,9 @@ Stage all implementation and fix changes. Use this commit format:
152
156
Implements <plan title or summary>.
153
157
```
154
158
155
-
Where `<type>` matches the plan's type (`feat`, `fix`, `refactor`, etc.).
159
+
Where `<type>` matches the plan's type (`feat`, `fix`, `refactor`, etc.). Review findings are
160
+
fixed in place during Phase 3 and the report is deleted at Cleanup, so the commit does not
161
+
cite `FINDING-NN` ids (there would be no report left to map them to).
156
162
157
163
### Ship
158
164
@@ -170,7 +176,7 @@ Use **AskUserQuestion** to present options:
170
176
- If tests fail mid-build, fix the failing test before moving to the next task. Do not accumulate broken tests across tasks.
171
177
- Generated files (mocks, codegen output) must be regenerated after code changes — stale generated files cause confusing test failures.
172
178
- If the plan specifies file paths that conflict with existing files, confirm with the user before overwriting. The codebase may have changed since the plan was written.
173
-
-Review agent reports are written to `docs/reviews/` and deleted after Phase 4. If the build is interrupted, stale reports may remain — delete them manually before the next run.
179
+
-The consolidated report (`docs/reviews/review.md`) and per-agent raw reports (`docs/reviews/raw/`) are deleted after Phase 4. If the build is interrupted, stale reports may remain — delete `docs/reviews/` manually before the next run.
0 commit comments