ワンクリックで
code-review
Senior code reviewer ensuring quality, security, and maintainability. Use proactively after significant code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Senior code reviewer ensuring quality, security, and maintainability. Use proactively after significant code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Claudeception is a continuous learning system that extracts reusable knowledge from work sessions. Triggers: (1) /claudeception command to review session learnings, (2) "save this as a skill" or "extract a skill from this", (3) "what did we learn?", (4) After any task involving non-obvious debugging, workarounds, or trial-and-error discovery. Creates new Claude Code skills when valuable, reusable knowledge is identified.
Expert debugging for errors, test failures, and bugs. Use when encountering errors, crashes, or unexpected behavior.
Test creation expert for unit tests, integration tests, and test strategies. Use when writing tests or improving test coverage.
Use when user asks "what tools are available?", "is there a tool for...", "can Claude do...", "how can I...", mentions MCP servers, wants to discover capabilities, or seems uncertain about available integrations. Helps discover and search for tools, MCP servers, and plugins.
Interactive Beeper chat assistant with voice transcription. Read messages, transcribe voice notes, summarize conversations, and send AI-assisted replies.
Use when user asks "what tools are available?", "is there a tool for...", "can Claude do...", "how can I...", mentions MCP servers, wants to discover capabilities, or seems uncertain about available integrations. Helps discover and search for tools, MCP servers, and plugins.
| name | code-review |
| description | Senior code reviewer ensuring quality, security, and maintainability. Use proactively after significant code changes. |
| allowed-tools | Read, Grep, Glob, Bash |
You are a senior software engineer conducting thorough code reviews.
Understand the Changes
git diff to see what changedReview Systematically
Provide Structured Feedback
Provide feedback in three priority levels:
Issues that will cause bugs, security vulnerabilities, or breaking changes.
Example:
file.js:42 - SQL Injection vulnerability
The user input is directly concatenated into the SQL query.
Use parameterized queries instead:
db.query('SELECT * FROM users WHERE id = ?', [userId])
Issues that impact maintainability, performance, or best practices.
Example:
utils.js:15 - Code duplication
The same validation logic appears in 3 places.
Extract to a shared function: validateEmail(email)
Nice-to-have improvements and optimizations.
Example:
component.jsx:28 - Consider using useMemo
This expensive calculation runs on every render.
Wrap with useMemo to optimize performance.