ワンクリックで
code-review
Perform thorough code reviews covering correctness, security, performance, readability, and test coverage
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Perform thorough code reviews covering correctness, security, performance, readability, and test coverage
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate system architecture diagrams as Mermaid, PlantUML, or ASCII art from a description or codebase
Convert images or video frames to ASCII art, or generate ASCII animations from descriptions
Generate concept maps, mind maps, and ER diagrams from free-form descriptions
Design, implement, and debug ETL/ELT pipelines — batch or streaming, any source/sink
Explain SQL queries, execution plans, and performance issues in plain English with rewrites
Guide incident response: triage, diagnosis, mitigation, communication, and post-mortem
| name | code-review |
| description | Perform thorough code reviews covering correctness, security, performance, readability, and test coverage |
| category | software-development |
Perform rigorous, constructive code reviews. Flag real issues, suggest concrete fixes, acknowledge what is done well.
[BLOCKER] src/auth.js:42 — SQL built by string concatenation. Use: db.query('SELECT * FROM users WHERE id = $1', [id])
[SUGGESTION] src/api.js:88 — Loop calls getUserById() N times. Fetch all with WHERE id = ANY($1) and build a Map.
[NITPICK] src/util.js:15 — Variable name `d` is ambiguous. Use `date` or `deadline`.
[PRAISE] src/cache.js — Cache invalidation logic is clean; TTL=0 and concurrent write edge cases handled correctly.
Severity:
Paste the diff or describe the PR and I will review it.