
Review
- 493 installs
- 3.9k repo stars
- Updated January 26, 2026
- parcadei/continuous-claude-v3
review is a Claude Code workflow skill that runs parallel specialized code and plan reviews then synthesizes findings for developers who need systematic PR feedback before merging significant changes.
About
review is the /review workflow skill in parcadei/continuous-claude-v3 that coordinates multi-perspective code review with parallel specialists. A critic agent reviews implementation code while a plan-reviewer evaluates plan alignment; outputs merge in a review-agent synthesis step. Triggers include requests to review code, review a PR, check changes before merge, or run quality gates on significant diffs. The ASCII workflow diagram documents three roles—critic, plan-reviewer, and review-agent—so agents do not collapse architecture and implementation concerns into a single pass. Developers reach for review when they want continuous, structured feedback comparable to a small review committee instead of one generic lint or chat pass. It is designed to run before merging substantial feature branches or refactors where missed plan drift or edge-case bugs are costly.
- Continuous review mode that watches for file changes and provides instant feedback
- Structured critique covering correctness, security, performance, and maintainability
- Hard-gate workflow that blocks merge until review is addressed
- Works across frontend, backend, and agentic codebases
- Produces severity-classified findings with concrete remediation steps
Review by the numbers
- 493 all-time installs (skills.sh)
- +4 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #238 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 493 |
|---|---|
| repo stars | ★ 3.9k |
| Last updated | January 26, 2026 |
| Repository | parcadei/continuous-claude-v3 ↗ |
How do you run parallel code and plan reviews?
Get systematic, continuous code review from Claude that catches issues before they reach production.
Who is it for?
Developers preparing to merge significant PRs who want parallel code and plan review perspectives synthesized into one actionable report.
Skip if: Developers who only need automated linting or security scanning without architectural plan alignment review.
When should I use this skill?
The user says review this code, review my PR, check before merge, or requests a quality gate on significant changes.
What you get
Synthesized review report combining critic code findings and plan-reviewer alignment feedback.
- synthesized code review report
By the numbers
- Coordinates 3 named review roles: critic, plan-reviewer, and review-agent
- Runs critic and plan-reviewer passes in parallel before synthesis
Files
/review - Code Review Workflow
Multi-perspective code review with parallel specialists.
When to Use
- "Review this code"
- "Review my PR"
- "Check this before I merge"
- "Get feedback on implementation"
- Before merging significant changes
- Quality gates
Workflow Overview
┌──────────┐
│ critic │ ─┐
│ (code) │ │
└──────────┘ │
│
┌──────────┐ │ ┌──────────────┐
│plan-reviewer│ ─┼────▶ │ review-agent │
│ (plan) │ │ │ (synthesis) │
└──────────┘ │ └──────────────┘
│
┌──────────┐ │
│plan-reviewer│ ─┘
│ (change) │
└──────────┘
Parallel Sequential
perspectives synthesisAgent Sequence
| # | Agent | Focus | Execution |
|---|---|---|---|
| 1 | critic | Code quality, patterns, readability | Parallel |
| 1 | plan-reviewer | Architecture, plan adherence | Parallel |
| 1 | plan-reviewer | Change impact, risk assessment | Parallel |
| 2 | review-agent | Synthesize all reviews, final verdict | After 1 |
Review Perspectives
- critic: Is this good code? (Style, patterns, readability)
- plan-reviewer: Does this match the design? (Architecture, plan)
- plan-reviewer: Is this change safe? (Risk, impact, regressions)
- review-agent: Overall assessment and recommendations
Execution
Phase 1: Parallel Reviews
# Code quality review
Task(
subagent_type="critic",
prompt="""
Review code quality: [SCOPE]
Evaluate:
- Code style and consistency
- Design patterns used
- Readability and maintainability
- Error handling
- Test coverage
Output: List of issues with severity (critical/major/minor)
""",
run_in_background=true
)
# Architecture review
Task(
subagent_type="plan-reviewer",
prompt="""
Review architecture alignment: [SCOPE]
Check:
- Follows established patterns
- Matches implementation plan (if exists)
- Consistent with system design
- No architectural violations
Output: Alignment assessment with concerns
""",
run_in_background=true
)
# Change impact review
Task(
subagent_type="plan-reviewer",
prompt="""
Review change impact: [SCOPE]
Assess:
- Risk level of changes
- Affected systems/components
- Backward compatibility
- Potential regressions
- Security implications
Output: Risk assessment with recommendations
""",
run_in_background=true
)
# Wait for all parallel reviews
[Check TaskOutput for all three]Phase 2: Synthesis
Task(
subagent_type="review-agent",
prompt="""
Synthesize reviews for: [SCOPE]
Reviews:
- critic: [code quality findings]
- plan-reviewer: [architecture findings]
- plan-reviewer: [change impact findings]
Create final review:
- Overall verdict (APPROVE / REQUEST_CHANGES / NEEDS_DISCUSSION)
- Prioritized action items
- Blocking vs non-blocking issues
- Summary for PR description
"""
)Review Modes
Full Review
User: /review
→ All four agents, comprehensive reviewQuick Review
User: /review --quick
→ critic only, fast feedbackSecurity Focus
User: /review --security
→ Add aegis (security agent) to parallel phasePR Review
User: /review PR #123
→ Fetch PR diff, review changesExample
User: /review the authentication changes
Claude: Starting /review workflow...
Phase 1: Running parallel reviews...
┌────────────────────────────────────────────┐
│ critic: Reviewing code quality... │
│ plan-reviewer: Checking architecture... │
│ plan-reviewer: Assessing change impact... │
└────────────────────────────────────────────┘
critic: Found 2 issues
- [minor] Inconsistent error messages in auth.ts
- [major] Missing input validation in login()
plan-reviewer: ✅ Matches authentication plan
plan-reviewer: Medium risk
- Affects: login, signup, password reset
- Breaking change: session token format
Phase 2: Synthesizing...
┌─────────────────────────────────────────────┐
│ Review Summary │
├─────────────────────────────────────────────┤
│ Verdict: REQUEST_CHANGES │
│ │
│ Blocking: │
│ 1. Add input validation to login() │
│ │
│ Non-blocking: │
│ 2. Standardize error messages │
│ │
│ Notes: │
│ - Document session token format change │
│ - Consider migration path for existing │
│ sessions │
└─────────────────────────────────────────────┘Verdicts
- APPROVE: Ready to merge, all issues are minor
- REQUEST_CHANGES: Blocking issues must be fixed
- NEEDS_DISCUSSION: Architectural decisions need input
Related skills
How it compares
Choose review over single-pass critique skills when you need separate code and plan perspectives merged into one pre-merge report.
FAQ
Which agents does the review workflow run?
The review workflow in continuous-claude-v3 runs critic for code review and plan-reviewer for plan alignment in parallel, then routes both outputs to review-agent for synthesis. This separates implementation defects from plan drift before merge.
When should review run in CI or local workflows?
review should run before merging significant changes, when the user asks to review a PR, or at explicit quality gates. It targets substantive diffs where combined code and plan feedback reduces production risk.