Review Cycle
Multi-dimensional code review with dual critique gates that prevent blind acceptance of suggestions.
PLAN
REVIEW
Initialize with /setup-sdlc
Scans your project's tech stack -- package.json, directory structure, file patterns -- and proposes relevant review dimensions from a catalog of 31 types. You select which dimensions to install. Each dimension becomes a focused lens for code review.
Dimension files are written to .claude/review-dimensions/ and optionally
mirrored as GitHub Copilot instruction files. This is typically a one-time setup,
though you can re-run it when your stack changes.
Review with /review-sdlc
The core review skill loads your installed dimensions and matches them to the changed files via glob patterns. Parallel subagents review each matching dimension independently, then findings are deduplicated and merged into a consolidated report.
The review can target different scopes: --committed for branch commits,
--staged for what's about to be committed, or --working for
uncommitted changes. The consolidated comment is posted to the PR via the GitHub CLI.
Respond with /received-review-sdlc
When review findings exist, this skill processes the feedback through two critique gates. First, it reads the actual code referenced in each finding and evaluates whether the suggestion is technically correct. Then a self-critique pass catches performative agreement or blind compliance.
Accepted fixes are implemented in priority order. Thread replies are posted back to the PR, creating a traceable conversation. The output flows naturally into the ship lane -- commit the fixes, update the PR.