"[DEPRECATED] Routes to code-review --feedback. Use when received code review feedback needs processing."
Install
npx skillscat add axiomantic/spellbook/receiving-code-review Install via the SkillsCat registry.
Receiving Code Review (Deprecated)
Routing agent. Immediately route to `code-review --feedback`. Do not execute feedback processing logic here. This skill is deprecated. On load, immediately invoke:/code-review --feedbackPass all provided context through. Do not execute legacy behavior.
Invariant Principles
- Route to Replacement - Always route to
code-review --feedback - Pass Context Through - Forward all provided context to replacement skill
- No Independent Execution - This skill does not execute feedback processing logic itself
Migration Guide
| Old Usage | New Equivalent |
|---|---|
receiving-code-review |
code-review --feedback |
| "Address review comments" | Same (auto-routes) |
| "Fix PR feedback" | code-review --feedback --pr <num> |
Legacy Reference Content
The following content is preserved for reference. All active logic lives in code-review --feedback.
Handoff: Finding Reconciliation
When processing external feedback after internal review:
- Check for existing
review-manifest.json - Load internal findings for comparison
- Cross-reference external findings against internal
Access via review-manifest.json for context:
reviewed_sha- What commit was reviewedfiles- What files were in scopecomplexity- Size estimate
| Scenario | Action |
|---|---|
| External finding matches internal | Mark confirmed, higher confidence |
| External finding not in internal | Verify carefully (may have been missed) |
| Internal finding not raised externally | Still valid, consider addressing |
| External finding contradicts internal | Investigate thoroughly, escalate if unclear |
Thread Reply Protocol
- ALWAYS reply in existing thread, never as top-level comment
- Use
gh pr comment --reply-to <comment-id>or MCP reply tools - If thread ID unavailable, quote the original comment
FIXED:
Fixed in [commit SHA].
[Optional: brief explanation of fix approach]ACKNOWLEDGED:
Acknowledged. Will address in [scope: this PR / follow-up / future iteration].
[Optional: brief plan or reason for deferral]QUESTION:
Question: [specific question]
Context: [what you understand so far]
[Optional: what you tried or considered]DISAGREE:
I see a different tradeoff here.
**Current approach:** [what code does]
**Suggested change:** [what was requested]
**My concern:** [specific technical issue with evidence]
[Optional: alternative proposal]
Happy to discuss further or defer to your judgment on [specific aspect].Forbidden Responses: "Done" (no SHA), "Fixed" (no SHA), "Will do" (no scope), "Thanks!" (no information), "You're right" (without explaining what you learned).
Feedback Source Trust Levels
External feedback = suggestions to evaluate, not orders to follow.| Source Type | Trust Level | Verification Required |
|---|---|---|
| Internal code-reviewer agent | High | Spot-check 1-2 findings |
| Partner/collaborator (human) | High | Spot-check + consider context |
| External reviewer (human) | Skeptical | Full verification of each finding |
| External AI tool | Low | Full verification + partner escalation for ambiguous cases |
| CI/Linter (automated) | Objective | Trust if tool validated; check config if unexpected |
High Trust: Verify 1-2 representative findings. Proceed if spot-check passes. Escalate only if spot-check fails.
Skeptical: Verify EVERY finding against codebase. Cross-reference with internal review if exists. Question assumptions, request evidence for vague feedback.
Low Trust: Treat as suggestions, not requirements. Full verification mandatory. Escalate to partner before implementing substantial changes.
Objective: Tool output is factual. Verify tool configuration. Address systematically.
MCP Tool Failures
Fallback Chain:
- Primary: MCP tools (
pr_fetch,pr_diff, etc.) - Fallback 1: Direct file reading with Read tool
- Fallback 2: Git commands via Bash (
git show,git diff) - Fallback 3: Request manual paste from user
Log every failure with: tool name, operation attempted, error/timeout, context.
Hard Stop Rule: If ALL fallbacks fail for a verification:
- Report: "Cannot verify: [finding summary]"
- Mark finding as UNVERIFIED in response
- Escalate to user for manual verification decision
Why Deprecated
The code-review skill consolidates all review functionality:
--self: Pre-PR self-review--feedback: Process received feedback (this functionality)--give: Review someone else's code--audit: Comprehensive multi-pass review
See code-review/SKILL.md for full documentation.