ワンクリックで
code-review
Use when reviewing code changes or conducting PR reviews.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when reviewing code changes or conducting PR reviews.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when working with git operations including commits, branches, worktrees, and PRs. Covers the full git workflow from feature isolation to PR submission.
Complete PR submission pipeline with local sub-agent review before pushing, CI verification, and automated review integration. Always dispatches code-reviewer and code-simplifier for code changes, plus conditional reviewers (security, performance, dependency, accessibility, i18n, type-design, etc.) based on change type. Waits for CI with `gh pr checks --watch`. Integrates CodeRabbit and Greptile feedback.
GitHub CLI patterns for PR reviews, comments, and API operations. Use when working with gh api commands, especially for review threads and comments.
Use when following a written plan or task list. Checkpoint verification at each step. Triggers - execute plan, follow plan, implement plan, next step, continue, proceed.
Use for parallel branch development with workspace isolation.
Use when implementing analytics, event tracking, or setting up dashboards. Covers privacy-first tracking, event patterns, and common analytics tools.
| name | code-review |
| description | Use when reviewing code changes or conducting PR reviews. |
Goal: Find bugs, ensure quality, share knowledge.
UNDERSTAND -> What changed and why?
EXAMINE -> Check code systematically
TEST -> Run it yourself
FEEDBACK -> Provide actionable comments
FOLLOW-UP -> Verify fixes
git diff main...feature-branch --stat
git checkout feature-branch && npm test
Check:
| Level | Meaning | Action |
|---|---|---|
| Critical | Bug, security | Must fix |
| Important | Logic error | Should fix |
| Minor | Style, naming | Can fix later |
Good Format:
**[Important]** Missing null check
`user` could be null if API fails. Throws at line 45.
| Finding | Action |
|---|---|
| Critical issue | Block merge |
| Important issue | Request changes |
| Only minor/nitpicks | Approve with comments |
Pairs with: pr-workflow, verification, tdd