agentsclimarketplace

Review code

Skill mgiovani/cc-arsenal/skills/review-code

45 production-grade AI agent skills for real dev workflows. Code review, shipping, docs, git. Works with any skill-compatible agent.

Install
npx -y skills add mgiovani/cc-arsenal --skill review-code

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Runs a comprehensive multi-agent code review of a PR, commit, or the whole codebase across six dimensions (correctness, performance, code style, test coverage, error handling, and simplicity/over-engineering) and returns a severity-ranked report with file:line findings and fix suggestions. Use when the user wants a thorough code review, asks to review a PR or diff, or wants over-engineered code flagged for simplification. Analysis only, identifying issues without modifying code, committing, or running tests. Not for a security-focused audit (use review-security), a visual/UX design critique (use review-design), a deep performance-only investigation with profiling and query-level analysis (use review-perf), or a heavier multi-agent PR review team with adversarial/security passes (use team-review).

SKILL.md

9.1 KB, as published. Nobody here has run it

Code Review

Comprehensive multi-agent code review covering correctness, performance, code style, test coverage gaps, and error handling. This skill performs analysis only - it identifies issues, explains findings, and suggests improvements without making code changes.

Every finding must cite a file:line you actually read — no hypothetical issues, no estimated counts. Only review files within the determined scope, and only flag style deviations from the project's own conventions, not personal preference.

Review Workflow

Phase 0: Determine Review Scope

Parse arguments to determine what to review:

Arguments:
- <pr_number>: Review only files changed in PR (e.g., "123", "#123")
- <commit_sha>: Review only files changed in commit (e.g., "abc123")
- "--all" or no args: Review entire codebase
- "--focus [correctness|performance|style|tests|errors]": Focus on specific review dimension

If PR or commit specified, use Bash to get changed files and diff context:

# For PR - get files and full diff
gh pr view <pr_number> --json files --jq '.files[].path'
gh pr diff <pr_number>

# For commit
git diff-tree --no-commit-id --name-only -r <commit_sha>
git show <commit_sha>

Important: When reviewing a PR or commit, always retrieve the full diff. The diff context is essential for understanding what changed vs. what was already there. Agents should focus findings on changed lines while using surrounding code for context.

Phase 1: Project Discovery

Explore the codebase to understand the project's technology stack, conventions, and quality standards:

Phase 2: Initialize Progress Tracking (optional)

If TodoWrite is available, use it to track review progress across the specialist dimensions and report generation. Skip it for a small scoped review or in an environment without it — it's a convenience, not a requirement.

Phase 3: Parallel Specialist Review

Spawn 5 parallel Explore agents for comprehensive code review. Each agent specializes in a specific review dimension. For detailed agent prompts and patterns, see references/agent-prompts.md.

Agent assignments:

  • Agent 1: Correctness & Logic — bugs, race conditions, off-by-one errors, null safety, type mismatches
  • Agent 2: Performance — algorithmic complexity, unnecessary allocations, N+1 queries, missing caching, memory leaks
  • Agent 3: Code Style & Patterns — naming, structure, DRY violations, SOLID adherence, framework idioms
  • Agent 4: Test Coverage Gaps — untested code paths, missing edge case tests, weak assertions, test quality
  • Agent 5: Error Handling & Edge Cases — unhandled exceptions, missing validation, boundary conditions, graceful degradation

No Task/Explore tool available: run the same six specialist prompts (Agents 1-6, full text in references/agent-prompts.md) as sequential Grep+Read passes instead of parallel subagents — one dimension at a time, in the same order, each following the same steps below, then merge all six dimensions' findings into one list before Phase 4.

Each agent must:

  1. Grep for issue patterns across files in scope
  2. Read each match to verify context and confirm it is a genuine issue
  3. Extract exact code snippets (5-10 lines) with file:line references
  4. Explain why the code is problematic
  5. Classify severity (Critical/Major/Minor/Nit)
  6. Provide a concrete fix suggestion with code example

Severity Definitions:

  • Critical: Bugs that cause data loss, crashes, security holes, or incorrect business logic
  • Major: Significant issues affecting reliability, performance degradation, or maintainability risks
  • Minor: Improvements for readability, consistency, or minor inefficiencies
  • Nit: Style preferences, cosmetic suggestions, optional improvements

Phase 4: Consolidate & Analyze Findings

After all agents complete:

  1. Collect all findings from the 5 parallel agents
  2. Deduplicate - Remove duplicate findings across agents (e.g., the same function flagged by both correctness and error handling agents)
  3. Prioritize by severity:
  • Critical: Data corruption, crashes, security implications, broken business logic
  • Major: Performance bottlenecks, reliability issues, test gaps for critical paths
  • Minor: Code readability, minor inefficiencies, style inconsistencies
  • Nit: Naming preferences, optional simplifications, cosmetic changes
  1. Categorize by dimension: Group findings under the 5 specialist categories
  2. Cross-reference: Note findings that span multiple dimensions (e.g., a missing null check is both a correctness and error handling issue)
  3. Statistics: Count total findings by severity, by dimension, files reviewed vs. files with issues

Phase 5: Generate Review Report

Generate a comprehensive markdown report following the template in references/report-template.md.

Report sections:

  1. Executive summary with overall code quality assessment
  2. Severity breakdown with counts
  3. Findings organized by dimension, each with file:line, code snippet, explanation, and fix suggestion
  4. Prioritized action items (Critical first, then Major)
  5. Positive observations - highlight well-written code, good patterns, thorough tests

To re-review after fixes, just run the skill again on the same PR/commit — Phase 0's scoping naturally re-derives the current diff, so it re-scopes to what's actually still there without a separate workflow.

Usage

# Review a specific PR
review-code 123
review-code #456

# Review a specific commit
review-code abc123def

# Review entire codebase
review-code --all
review-code

# Focus on a specific dimension
review-code 123 --focus performance
review-code --all --focus tests

# Re-review after fixes — just run it again on the same PR/commit
review-code 123

Focus Options

  • correctness: Focus on bugs, logic errors, type safety, race conditions
  • performance: Focus on algorithmic complexity, resource usage, caching, queries
  • style: Focus on naming, structure, patterns, framework idioms, DRY/SOLID
  • tests: Focus on test coverage gaps, assertion quality, edge case testing
  • errors: Focus on error handling, validation, boundary conditions, graceful degradation

If no focus specified, perform comprehensive review across all dimensions.

Additional Resources

Limitations

  • Static, pattern-based analysis: cannot measure actual runtime/performance impact or detect runtime-only issues; some findings may turn out to be intentional design choices
  • Language support: grep patterns in references/agent-prompts.md are written for C-like and Python syntax; adapt them for other languages before relying on pattern coverage
  • Does not modify code, run tests/benchmarks, or perform security-specific analysis (use review-security for that)

Simplicity & Over-Engineering Lens (Claude Code enhancement)

LLM-written code tends to over-engineer: interfaces built for one implementation, factories for one product, wrapper layers that just forward a call. None of that shows up as a bug, so the five specialists in Phase 3 don't catch it — it needs its own lens. This module adds a 6th parallel specialist and a matching report dimension.

Agent 6: Simplicity & Over-Engineering

Spawn this agent alongside Agents 1-5 in Phase 3, in the same parallel batch. Full prompt and tag definitions: references/agent-prompts.md.

Routing out of scope: when Agent 6 flags something that Phase 4 consolidation determines is actually a correctness, security, or performance issue, move it into the matching dimension (CL-, PF-, or EH- prefix) instead of reporting it as an OE finding. An over-engineered function that also happens to be buggy is a bug first.

Add its dimension (OE- prefix, Minor/Nit by default) to Phase 4/5 output — full report-addendum spec in references/agent-prompts.md.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.