From planning-workflow
Performs a structured code review of changes with severity labels covering correctness, security, performance, error handling, testing, and architecture. Use when 'code review', 'review this PR', 'review changes', or when a structured review of implementation changes is needed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/planning-workflow:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Structured review of code changes with severity labels.
Structured review of code changes with severity labels.
Part of the task planning workflow. See references/workflow-overview.md for the full pipeline.
Read project docs (CLAUDE.md, contributing guides, style guides) to understand conventions before reviewing.
git diff main...HEAD
Or for a PR: gh pr diff $NUMBER
Determine what the change is trying to accomplish. Read linked task docs, PR description, or commit messages.
List all files added, modified, or deleted. Group by area (backend, frontend, tests, config).
Run whatever automated tooling the project has:
Report results. If automated checks fail, note as [blocking].
Review each file change against these dimensions:
End with a verdict and summary:
## Review Summary
**Verdict**: Approve / Request Changes / Comment
**Stats**: N blocking, N important, N nit, N suggestion, N praise
### Blocking Issues
- [blocking] file.ts:42 -- description
### Important Issues
- [important] file.ts:15 -- description
### Nits & Suggestions
- [nit] file.ts:88 -- description
- [suggestion] file.ts:100 -- description
### Praise
- [praise] file.ts:60 -- description
npx claudepluginhub mistakenot/skills --plugin planning-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.