From developer
Critically assess code review feedback before applying fixes. Accepts feedback from AI reviewers (e.g. GitHub Copilot, CodeRabbit), human reviewers, or directly as arguments. Use when user says "resolve it", "address feedback", "resolve feedback", pastes review comments, or wants to evaluate PR suggestions. Do NOT blindly trust the reviewer — analyze validity, trade-offs, and alternatives first.
How this skill is triggered — by the user, by Claude, or both
Slash command
/developer:resolve-itThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Evaluate code review feedback critically before acting on it.
Evaluate code review feedback critically before acting on it.
$ARGUMENTS may contain:
Feedback can come from any source:
Identify each distinct piece of feedback (a comment, suggestion, or requested change).
Read the file and surrounding context to fully understand the code.
Determine if the feedback is:
For each item, provide a concise summary:
## Feedback: <one-line summary>
**Source:** <reviewer name or "AI reviewer" or "self">
**Verdict:** Valid | Partially valid | Invalid
**Why:** <1-2 sentences explaining the reasoning>
**Pros of fixing:**
- <bullet>
**Cons of fixing:**
- <bullet>
**Alternatives:**
- <alternative approach if any>
**Recommendation:** <what you'd do and why>
Drop sections that add no value (e.g. skip "Alternatives" if there are none, skip "Cons" if the fix is clearly good).
After presenting all items, ask:
Apply all recommended fixes? Or pick specific items: [list numbers]
For each approved fix:
If multiple fixes touch the same file, apply them together to avoid conflicts.
npx claudepluginhub xxkeefer/skills --plugin developerCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.