smithery.ai

review-code

Review code changes for quality, security, and adherence to project conventions. Use after making code changes or when reviewing a pull request.

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,332 B
  • docs SUMMARY.md 163 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Review Code

Review the following code:

$ARGUMENTS

Review Scope

  1. Run git diff to identify changes (or examine specified files)
  2. Review each changed file against the checklist below
  3. Report findings organized by severity

Review Checklist

Correctness

  • Logic handles all cases including edge cases
  • Async operations properly awaited
  • Error handling is appropriate

Security

  • No hardcoded secrets
  • Input validation at boundaries
  • No injection vectors (command, XSS, prompt)

TypeScript Quality

  • Proper type annotations
  • No unnecessary any types
  • Interfaces defined for data structures

Performance

  • No unnecessary re-renders (Vue components)
  • Efficient algorithms and data structures
  • Streaming used for AI responses

Architecture

  • Follows project patterns (BaseAgent, StateGraph, tsoa)
  • Correct package boundaries
  • No circular dependencies

Output

Provide findings as:

  • 🔴 Critical: Must fix before merge
  • 🟡 Warning: Should fix
  • 🔵 Suggestion: Consider improving