Perform rigorous code review on recently created artifacts. Use when reviewing code quality after implementation.
From code-reviewnpx claudepluginhub masseater/claude-code-plugin --plugin code-reviewThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Review the recently created artifacts to identify issues and fix them.
Important: No leniency is tolerated. Conduct code review with strict self-reflection and zero compromises.
$ARGUMENTS
Identify review target files by combining the following information sources:
Check progress files
.md file in the .agents/progress/ directory.jsonl) to identify edited filesCheck git diff
git diff --name-only and git diff --staged --name-only to retrieve changed filesFiles specified as arguments (if provided)
Launch the following 5 agents in parallel to conduct reviews from different perspectives:
| Agent | Focus |
|---|---|
design-reviewer | Design and architecture (single responsibility, circular dependencies, tight coupling) |
implementation-reviewer | Implementation quality (readability, naming, duplicate code, functional style) |
type-safety-reviewer | Type safety (any type prohibition, proper type definitions) |
ai-antipattern-reviewer | AI antipatterns (hallucinated APIs, fallback abuse, dead code) |
goal-validator | Goal achievement (cross-reference progress file with changes) |
Fix all issues found by the agents directly in the local codebase. Do not comment on the PR.
After all fixes are complete:
git diff to verify changes are correct