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

Code Review

  • 56 installs
  • 31 repo stars
  • Updated April 12, 2026
  • itallstartedwithaidea/agent-skills

Run a checklist-first, severity-classified review on a PR or diff so merge decisions stay consistent when you ship.

About

Code Review is an agent skill from Agent Skills that turns pull request feedback into a repeatable pre-merge quality gate. Solo and indie builders use it when a diff is ready to merge and they need the same rigor a tired human reviewer might skip under time pressure. The workflow starts with a pre-review checklist that blocks semantic analysis until basics like missing tests, linter and type errors, documentation gaps, and stray uncommitted files are surfaced. Only then does the agent evaluate the change against configurable quality dimensions and emit a standardized review document. Every finding is classified as Critical, High, Medium, or Low, with file location, category, description, and a concrete fix suggestion. That record supports mandatory resolution tracking before approval. It fits Claude Code, Cursor, and similar agents when you want checklist-driven evaluation instead of scattered chat comments.

  • Pre-review checklist gates deep analysis (tests, linter, types, docs, uncommitted files)
  • Findings use four severities: Critical, High, Medium, and Low with file, line range, and suggested fix
  • Produces a standardized review document for the permanent merge record
  • Semantic pass covers logic, architecture, security, and performance after checklist passes
  • Configurable quality dimensions replace ad-hoc reviewer comments

Code Review by the numbers

  • 56 all-time installs (skills.sh)
  • +4 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #555 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/itallstartedwithaidea/agent-skills --skill code-review

Add your badge

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

Listed on Skillselion
Installs56
repo stars31
Security audit2 / 3 scanners passed
Last updatedApril 12, 2026
Repositoryitallstartedwithaidea/agent-skills

What it does

Run a checklist-first, severity-classified review on a PR or diff so merge decisions stay consistent when you ship.

Files

SKILL.mdMarkdownGitHub ↗

Code Review

Part of Agent Skills™ by googleadsagent.ai™

Description

Code Review enforces a structured pre-merge quality gate with a checklist-driven evaluation, severity-classified findings, and mandatory resolution tracking. The agent reviews every diff against a configurable set of quality dimensions before approving changes, ensuring consistent standards regardless of reviewer fatigue or time pressure.

Unlike ad-hoc review comments, this skill produces a standardized review document with findings categorized by severity: Critical (must fix before merge), High (should fix before merge), Medium (fix in follow-up), and Low (optional improvement). Each finding includes the file, line range, category, description, and a concrete suggested fix. The review document becomes part of the permanent record.

The pre-review checklist catches common oversights before deep analysis begins: missing tests, uncommitted files, linter errors, type errors, and documentation gaps. Only after the checklist passes does the agent proceed to semantic review of logic, architecture, security, and performance.

Use When

  • A pull request or diff is ready for review
  • The user asks for feedback on code changes
  • Before merging any branch into main
  • After a subagent completes a task (Stage 2 review)
  • Code has been refactored and needs validation
  • A new contributor's code needs onboarding-level review

How It Works

graph TD
    A[Receive Diff] --> B[Pre-Review Checklist]
    B --> C{Checklist Passes?}
    C -->|No| D[Return with Blockers]
    C -->|Yes| E[Semantic Analysis]
    E --> F[Classify Findings by Severity]
    F --> G[Generate Review Document]
    G --> H{Critical Findings?}
    H -->|Yes| I[Request Changes]
    H -->|No| J{High Findings?}
    J -->|Yes| K[Approve with Reservations]
    J -->|No| L[Approve]

The workflow gates progression: the checklist catches mechanical issues instantly, while semantic analysis evaluates design, correctness, and maintainability. The severity classification ensures critical issues block the merge while minor improvements do not.

Implementation

pre_review_checklist:
  - name: "Tests exist for changed code"
    command: "check_test_coverage_delta"
    severity: "critical"
  - name: "No linter errors introduced"
    command: "run_linter --diff-only"
    severity: "critical"
  - name: "Type checking passes"
    command: "run_typecheck"
    severity: "critical"
  - name: "No secrets in diff"
    command: "scan_secrets --diff"
    severity: "critical"
  - name: "Documentation updated"
    command: "check_doc_staleness"
    severity: "medium"

severity_levels:
  critical:
    label: "🔴 Critical"
    action: "Must fix before merge"
    examples: ["Security vulnerability", "Data loss risk", "Broken tests"]
  high:
    label: "🟠 High"
    action: "Should fix before merge"
    examples: ["Missing error handling", "Performance regression", "API contract violation"]
  medium:
    label: "🟡 Medium"
    action: "Fix in follow-up PR"
    examples: ["Code duplication", "Unclear naming", "Missing edge case test"]
  low:
    label: "🔵 Low"
    action: "Optional improvement"
    examples: ["Style preference", "Minor refactor opportunity", "Comment improvement"]

review_dimensions:
  - correctness: "Does the code do what it claims?"
  - security: "Are inputs validated? Are secrets protected?"
  - performance: "Are there N+1 queries, unnecessary re-renders, or blocking calls?"
  - maintainability: "Can another developer understand this in 6 months?"
  - testing: "Are edge cases covered? Are tests deterministic?"
  - architecture: "Does this follow established patterns? Is coupling appropriate?"

Best Practices

  • Run the pre-review checklist before spending time on semantic review
  • Limit findings to actionable items—avoid stylistic nitpicks unless egregious
  • Always provide a suggested fix alongside each finding
  • Separate critical blockers from nice-to-have improvements
  • Review the test changes as carefully as the production code
  • Acknowledge good patterns and design decisions, not just defects

Platform Compatibility

PlatformSupportNotes
CursorFullReads diffs via Shell tool
VS CodeFullGit diff integration
WindsurfFullPR review workflow
Claude CodeFullgit diff and gh pr access
ClineFullDiff-based review
aiderPartialLimited to file-level review

Related Skills

  • Test-Driven Development - RED-GREEN-REFACTOR discipline that ensures reviewed code has corresponding test coverage
  • Systematic Debugging - Root cause analysis methodology applied when code review uncovers defects
  • Agent Security Scanning - Automated vulnerability detection that complements the security dimension of code review

Keywords

code-review quality-gate pre-merge-checklist severity-classification pull-request-review security-review performance-review review-document

---

© 2026 googleadsagent.ai™ | Agent Skills™ | MIT License

Related skills

FAQ

Is Code Review safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

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

unsubscribe anytime.