This skill should be used when processing code review feedback, responding to reviewer comments, or when feedback seems unclear or technically questionable. Requires verification before implementing.
Processes code review feedback by verifying each issue against the codebase before implementing. Used when responding to reviewer comments to distinguish valid fixes from unclear or incorrect suggestions.
/plugin marketplace add pproenca/dot-claude/plugin install dev-workflow@pproencaThis skill is limited to using the following tools:
Process code review feedback with technical evaluation, not emotional performance.
This skill is invoked after code-reviewer agent returns output. This skill processes the feedback.
From code-reviewer output, separate issues:
| Category | Action | Examples |
|---|---|---|
| Critical | Fix immediately | Security, data loss, broken functionality |
| Important | Fix before proceeding | Architecture, missing tests, error handling |
| Minor | Note for later | Style, optimization, documentation |
For each Critical and Important issue:
# Check if the issue is real
# Read the file/line mentioned
# Determine if feedback is accurate
Questions to ask:
For each verified issue:
If valid:
If unclear:
If wrong:
Never say:
Instead: Restate the technical requirement, or fix silently.
Order of implementation:
For each fix:
# 1. Implement the fix
# 2. Run tests
npm test # or project test command
# 3. If tests pass, commit
git add -A && git commit -m "fix: [description from review]"
# 4. Next fix
Do not batch fixes. One fix, one test run, one commit.
Push back when:
How to push back:
Issue: "[reviewer's concern]"
Response: Not implementing. [Technical reasoning with code references]
Reference working tests, existing patterns, or documentation.
Before implementing external feedback:
External reviewers may not know:
Verify before implementing.
✅ "Fixed. [Brief description]"
✅ [Just fix it silently]
❌ "You're absolutely right!"
❌ "Thanks for [anything]"
Actions speak. The code shows the feedback was heard.
After processing all feedback, report:
Review processed:
- Critical: [N] found, [M] fixed
- Important: [N] found, [M] fixed
- Minor: [N] noted for later
- Pushed back: [N] (not valid for this codebase)
All fixes verified with tests.
Uses:
dev-workflow:verification-before-completion - Verify each fix before nextReceives from:
dev-workflow:code-reviewer agent outputThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.