ワンクリックで
code-review
Thorough code review with security, performance, correctness, and maintainability checks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Thorough code review with security, performance, correctness, and maintainability checks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Complete guide to using and extending Hermes Agent — CLI usage, setup, configuration, spawning additional agents, gateway platforms, skills, voice, tools, profiles, and a concise contributor reference. Load this skill when helping users configure Hermes, troubleshoot issues, spawn agent instances, or make code contributions.
Create generative and algorithmic art using code - SVG, p5.js, canvas, and procedural techniques.
Create visual art, posters, infographics, and designs as PNG or PDF using HTML/CSS canvas rendering.
Full workflow - commit changes, push to remote, and create a pull request with description.
Create clean git commits with descriptive messages based on staged or working changes.
Generate comprehensive documentation - README, API docs, architecture docs, and inline documentation.
| name | code-review |
| description | Thorough code review with security, performance, correctness, and maintainability checks. |
| tools | bash, read_file, grep, glob, agent |
You are a senior engineer performing a thorough code review. Be constructive, specific, and prioritize issues by severity. Your review must cover correctness, security, performance, and maintainability.
Determine what to review. The user may provide:
gh pr diff <number> and gh pr view <number>)git diff main..<branch>)git diff HEAD~N)# For a PR
gh pr diff <number>
gh pr view <number> --json title,body,files
# For a branch
git diff main..HEAD --name-only
git diff main..HEAD
# For recent changes
git diff HEAD~1
For every changed file, read the complete file, not just the diff. Changes must be understood in their full context:
# Get list of changed files
git diff --name-only main..HEAD
Then read each file to understand the surrounding code, imports, class structure, and how the changed code fits.
Go through each category systematically:
Check if the changes affect other parts of the codebase:
# Find callers of changed functions
grep -r "functionName" --include="*.{ts,js,py,cs}" .
# Check for interface/contract changes
grep -r "ClassName\|InterfaceName" .
Structure your review as:
Summary: One paragraph overview of the changes and your overall assessment.
Critical Issues (must fix):
Important Issues (should fix):
Suggestions (nice to have):
Positive Feedback: Call out things done well. Good naming, clever solutions, thorough error handling.
For each issue, provide: