.agents/skills/speckit-superb-respond/SKILL.md
Code review response protocol. Loads the obra/superpowers receiving-code-review SKILL.md at runtime. Enforces technical verification before implementing review feedback — no performative agreement, no blind fixes. Pairs with speckit.superb.critique as the implementer counterpart.
npx skillsauth add pradeepmouli/lspeasy speckit-superb-respondInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Skill origin: obra/superpowers
receiving-code-reviewInvocation: Standalone command. Call after receiving output fromspeckit.superb.critiqueor any external code review.
Locate and internalize the superpowers receiving-code-review skill using this priority chain:
skills/receiving-code-review/SKILL.md from the
workspace root (present when superpowers is installed as a plugin).https://raw.githubusercontent.com/obra/superpowers/main/skills/receiving-code-review/SKILL.md
- READ: Complete feedback without reacting.
- UNDERSTAND: Restate each item in own words.
- VERIFY: Check against codebase reality — is the suggestion correct HERE?
- EVALUATE: Technically sound for THIS codebase and spec?
- RESPOND: Technical acknowledgment or reasoned pushback.
- IMPLEMENT: One item at a time, test after each fix. Never say "Great point!" or "You're absolutely right!" — just fix or push back.
You must internalize the full SKILL.md content before proceeding.
critique output, PR comments, or user-provided review):
$ARGUMENTS
spec.md — the spec is the authority, not the reviewer's opinion.tasks.md — understand what was intended to be built.For each review item, classify and verify:
## Review Response
| # | Item | Severity | Verdict | Reasoning |
|---|------|----------|---------|-----------|
| 1 | [summary] | Critical/Important/Minor | Accept/Reject/Clarify | [technical reason] |
| 2 | [summary] | ... | ... | ... |
Verdict rules:
Follow this strict order:
For each accepted item:
After all accepted items are implemented:
## Review Response Complete
**Accepted and fixed:** [N] items
**Rejected with reasoning:** [M] items
**Pending clarification:** [K] items
### Rejections
- Item [#]: [one-line technical reason]
### Test Evidence
[Full test suite output — N tests, N passing, 0 failing]
When rejecting a review item, provide:
If the reviewer's suggestion conflicts with spec.md, the spec wins unless the
user explicitly overrides.
tools
Use for ANY rename, file-move, or move-symbol refactor — especially rename-heavy work across multiple files. Claude Code's built-in LSP tool is READ-ONLY (find references, but no rename / file-move / move-symbol). Hand-editing those refactors silently misses re-exports, aliased imports, type-only imports, and {@link} doc references. This skill drives a real language server via the `lspeasy` CLI to apply a correct WorkspaceEdit that catches every reference. Trigger when the user asks to rename a function/class/variable/type project-wide, move a file and fix its importers, or pull a symbol out into another module.
tools
Documentation site for lspeasy Use when: You are building a browser-based LSP client, a WebSocket-backed language....
tools
Documentation site for lspeasy Use when: You are implementing a custom client layer and need the same validation....
tools
Use when working with lspeasy (client, core, server). Covers: lsp, language-server-protocol, lsp-client, language-client, jsonrpc, transport, lsp-server, language-server.