.claude/skills/speckit-superb-debug/SKILL.md
Systematic debugging protocol. Loads the obra/superpowers systematic-debugging SKILL.md at runtime. Enforces root-cause investigation before any fix attempt. Use when TDD hits repeated failures or any unexpected behavior surfaces during implementation.
npx skillsauth add pradeepmouli/lspeasy speckit-superb-debugInstall 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
systematic-debuggingInvocation: Standalone command. Call manually when blocked, or escalated from the TDD gate after 2+ failed fix attempts.
Locate and internalize the superpowers systematic-debugging skill using this priority chain:
skills/systematic-debugging/SKILL.md from the
workspace root (present when superpowers is installed as a plugin).https://raw.githubusercontent.com/obra/superpowers/main/skills/systematic-debugging/SKILL.mdNO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST. Phase 1: Read errors, reproduce, check recent changes, trace data flow. Phase 2: Find working examples, compare, identify differences. Phase 3: Form single hypothesis, test minimally, one variable at a time. Phase 4: Create failing test, implement single fix, verify. If 3+ fixes fail, question the architecture — don't attempt fix #4.
You must internalize the full SKILL.md content before proceeding. Its rules override any urge to "just try something."
$ARGUMENTS
tasks.md to identify which task is blocked.spec.md to understand the intended behavior (not what the code does,
but what it should do).git diff or git log --oneline -10Do not propose any fix yet. Evidence gathering is Phase 1.
Apply the loaded skill's four-phase protocol:
If 3 or more fix attempts have failed:
This command is the escalation path from speckit.superb.tdd.
When the TDD cycle hits repeated RED failures that don't resolve with simple
GREEN fixes:
TDD cycle → RED passes but GREEN fails repeatedly
→ 2+ attempts without resolution
→ STOP TDD → invoke this command
→ resolve root cause
→ return to TDD cycle
After debugging resolves the root cause, return to the TDD gate and resume the RED → GREEN → REFACTOR cycle for the current task.
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.