ワンクリックで
development-code-review
Review code changes locally for correctness, maintainability, security, tests, and release risk.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review code changes locally for correctness, maintainability, security, tests, and release risk.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Runtime instructions for Ask mode: answer directly without code mutation.
Runs configurable multi-round research with compare, review, and explore modes, visible progress, source collection, and final sourced answers.
Creates and maintains project-board tasks with correct dedupe, umbrella/root linking, dependencies, tags, authors, assignments, and autopilot queue placement.
Runtime instructions for Plan mode: produce implementation or investigation plans without code mutation.
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
| name | development-code-review |
| description | Review code changes locally for correctness, maintainability, security, tests, and release risk. |
| version | 1.0.0 |
| author | Sloppy Team |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["Development","Code-Review","Quality","Testing","Security"],"related_skills":["github-code-review","codebase-inspection","tdd-workflow"]}} |
Use this skill when the user asks for a code review, pre-merge review, local diff review, quality pass, or risk assessment that is not specifically tied to GitHub PR operations.
This skill focuses on review judgment and structured findings. Use github-code-review when the work requires GitHub PR comments, approvals, or GitHub API/gh operations.
git status --shortgit diff --statgit diff --staged --stat when reviewing staged changesgit diff main...HEAD --stat when reviewing branch changesgit diffgit diff --stagedgit diff main...HEADUse this format for review results:
## Code Review Summary
Overall: <approve | request changes | comments only>
Risk: <low | medium | high>
### Blocking Findings
- `path/to/file.ext:line` — Problem summary.
- Impact: Why this matters.
- Suggestion: Concrete fix.
### Non-Blocking Suggestions
- `path/to/file.ext:line` — Suggestion and rationale.
### Test Gaps
- Missing coverage for <case> in <area>.
### Looks Good
- Positive observations about design, tests, or risk handling.
### Validation Reviewed
- Commands inspected or run: `<command>`
- Result: <pass | fail | not run, with reason>