npx claudepluginhub zate/cc-plugins --plugin devloopThis skill is limited to using the following tools:
Comprehensive code review for changes, PRs, or specific files. **You do the work directly.**
Performs code reviews covering quality, security, performance, testing, maintainability, and best practices. Use for pull requests, vulnerability checks, and improvement suggestions.
Automates code reviews on git diffs, staged changes, PRs, files, or branches against CLAUDE.md conventions and prioritized best practices (security first).
Reviews recent git diffs and commits with brutal honesty before PRs, spotting 2am logic flaws, copy-paste artifacts, debug leftovers, hacks, and poor naming.
Share bugs, ideas, or general feedback.
Comprehensive code review for changes, PRs, or specific files. You do the work directly.
AskUserQuestion:
questions:
- question: "What would you like to review?"
header: "Scope"
multiSelect: false
options:
- label: "Uncommitted changes"
description: "Review git diff"
- label: "Staged changes"
description: "Review git diff --cached"
- label: "Recent commits"
description: "Review last few commits"
- label: "Specific files"
description: "I'll specify paths"
git diff # Uncommitted
git diff --cached # Staged
git log -p -n 3 # Recent commits
gh pr diff [number] # PR
Check these areas directly:
Present findings by severity:
## Code Review
### Critical (Must Fix)
- [Issue]: [Location] - [Problem and fix]
### High Priority
- [Issue]: [Location] - [Problem and fix]
### Suggestions
- [Minor improvements]
### Positive
- [Good patterns observed]
AskUserQuestion:
questions:
- question: "Review complete. How proceed?"
header: "Action"
multiSelect: false
options:
- label: "Fix critical"
description: "Address blockers only"
- label: "Fix all"
description: "Apply all suggested fixes"
- label: "Accept as-is"
description: "Proceed without changes"
If fixing, make the changes directly using Edit tool.