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

Code Review

  • 1 installs
  • 38 repo stars
  • Updated August 1, 2026
  • martinffx/claude-code-atelier

Multi-agent code review with parallel specialized reviewers, architecture and challenge validation, and line-by-line PR comments.

About

A code-review skill that dispatches parallel specialized reviewers plus architecture and challenge validation, supporting request and respond modes with severity-prefixed PR comments. A developer uses it to review diffs, branches, or PRs and respond to feedback.

  • Parallel specialized reviewers with challenge validation
  • rq/rs modes with line-by-line PR comments via gfreview

Code Review by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #984 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/martinffx/claude-code-atelier --skill code-review

Add your badge

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

Listed on Skillselion
Installs1
repo stars38
Last updatedAugust 1, 2026
Repositorymartinffx/claude-code-atelier

What it does

Multi-agent code review with parallel specialized reviewers, architecture and challenge validation, and line-by-line PR comments.

Files

SKILL.mdMarkdownGitHub ↗

Code Review Skill

Multi-agent code analysis with parallel reviewers and challenge validation.

Uses explicit subagent dispatch patterns from code-subagents.

Prerequisites

rq (Request Review)

  • Required: git
  • Optional: gfreview — enables PR integration and line-by-line comments
  • Optional: gh — for additional PR management

rs (Respond to Review)

  • Required: gfreview — install from https://github.com/martinffx/gfreview
  • Required: git

If gfreview is not installed for rs:

Error: rs requires gfreview.

>

Install from: https://github.com/martinffx/gfreview

>

```bash
curl -fsSL https://raw.githubusercontent.com/martinffx/gfreview/main/install.sh | bash
```

Arguments

$0 = command (rq or rs) $1 = target (branch or PR number)

Argument Parsing

InvocationBehavior
rqReview diff to main branch
rq developReview diff to develop branch
rq 42Requires gfreview — review PR #42
rsRequires gfreview — find PR for current branch
rs 42Requires gfreview — respond to PR #42

Finding PR for Current Branch

gh pr list --head $(git branch --show-current) --json number --jq '.[0].number'

Subagent Architecture

rq (Request Review) Subagents

StepSubagentUsesParallelPurpose
1Triageclerk agent (minimax-m2.5)NoDetect context, select reviewers, identify skills to load
2Reviewersgeneral subagentYes (per reviewer)Specialty analysis (loads detected skills)
3Synthesisgeneral subagentNoDeduplicate findings
4Architectarchitect agent (kimi-k2.5)NoArchitecture review
5Challengeoracle agent (glm-5)NoValidate findings with sequential-thinking

rs (Respond to Review) Subagents

StepSubagentUsesParallelPurpose
1Analysisgeneral subagentYes (per discussion)Analyze feedback (loads relevant skills)
2Validationgeneral subagentNoValidate suggested fixes

Dispatch Patterns

Follows code-subagents patterns:

  • Parallel dispatch for independent reviewers/discussions
  • Sequential dispatch for dependent steps
  • Fresh subagent per task — no context pollution
  • Skill loading pre-step before each analysis phase
  • Error handling: Log failures, continue with partial results

Agent Dispatch

AgentModelUsed In Step
clerkminimax-m2.5Triage (context retrieval, file analysis)
architectkimi-k2.5Architect (architecture review)
oracleglm-5Challenge (validate findings, sequential-thinking)
general(varies)Reviewers, Synthesis, Validation

See agents/ for agent definitions.

gfreview Integration

When gfreview is installed:

rq (Request Review)

  • Check if PR exists: gfreview list --json --state open
  • If PR exists: post findings as line-by-line comments
  • If no PR: offer to push branch, create PR, and post findings

rs (Respond to Review)

  • Fetch comments: gfreview discussions <id>
  • Analyze and plan fixes
  • Always ask user before applying fixes or posting responses

Each finding posted as inline comment with severity prefix:

  • Critical → Blocker:
  • High → Issue:
  • Medium → Suggestion:
  • Low → Nit:

See gfreview.md for detailed command reference.

References

ReferencePurpose
rq.mdRequest review workflow - detailed steps with prompts
rs.mdRespond to review workflow - detailed steps with prompts
reviewers.mdReviewer definitions and prompts
output.mdOutput format specification
gfreview.mdgfreview CLI integration
context-flow.mdData flow between workflow steps

Workflow Routing

  • $0 == rq or no arguments → rq.md
  • $0 == rsrs.md

Related skills

This week in AI coding

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

unsubscribe anytime.