원클릭으로
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>