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
The /review skill (and the review step in /build) currently writes findings across four separate files in docs/code-review/ (or docs/reviews/ during /build), one per quality-review agent. Jumping between four files to understand one review makes triage slower than reading the diff itself — the navigation overhead often outweighs the value of the findings.
Proposal: emit a single consolidated review.md as the primary artifact, with per-agent findings grouped into sections within that file. Raw per-agent outputs may optionally live in a review-raw/ subdirectory for debugging, but the user-facing artifact is one file.
Requirements
/review produces a single consolidated markdown file as its primary output.
The review step inside /build produces the same single-file output.
Existing quality-review agents (vgv-review-agent, code-simplicity-review-agent, test-quality-review-agent, architecture-review-agent) still contribute findings, grouped by agent within the consolidated file.
Chat summary points to sections within the single file, not to separate files.
Cleanup logic for ephemeral review output (under docs/reviews/ and docs/hotfix-review/) continues to work with the new layout.
Description
The
/reviewskill (and the review step in/build) currently writes findings across four separate files indocs/code-review/(ordocs/reviews/during/build), one per quality-review agent. Jumping between four files to understand one review makes triage slower than reading the diff itself — the navigation overhead often outweighs the value of the findings.Proposal: emit a single consolidated
review.mdas the primary artifact, with per-agent findings grouped into sections within that file. Raw per-agent outputs may optionally live in areview-raw/subdirectory for debugging, but the user-facing artifact is one file.Requirements
/reviewproduces a single consolidated markdown file as its primary output./buildproduces the same single-file output.vgv-review-agent,code-simplicity-review-agent,test-quality-review-agent,architecture-review-agent) still contribute findings, grouped by agent within the consolidated file.docs/reviews/anddocs/hotfix-review/) continues to work with the new layout.Additional Context