Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
parcadei avatar

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 review

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs493
repo stars3.9k
Last updatedJanuary 26, 2026
Repositoryparcadei/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

SKILL.mdMarkdownGitHub ↗

/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            synthesis

Agent Sequence

#AgentFocusExecution
1criticCode quality, patterns, readabilityParallel
1plan-reviewerArchitecture, plan adherenceParallel
1plan-reviewerChange impact, risk assessmentParallel
2review-agentSynthesize all reviews, final verdictAfter 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 review

Quick Review

User: /review --quick
→ critic only, fast feedback

Security Focus

User: /review --security
→ Add aegis (security agent) to parallel phase

PR Review

User: /review PR #123
→ Fetch PR diff, review changes

Example

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.

Code Review & Qualitytestingintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.