π¦ ClawHub
Lobster Debugging
by @wangxiaofei860208-source
Systematic debugging framework. 4-phase root-cause analysis with defense-in-depth. Never guess, never patch symptoms. From Claude Code + Superpowers.
TERMINAL
clawhub install lobster-debuggingπ About This Skill
name: lobster-debugging version: 1.0.0 description: "Systematic debugging framework. 4-phase root-cause analysis with defense-in-depth. Never guess, never patch symptoms. From Claude Code + Superpowers." author: "Super Lobster π¦" tags: ["debugging", "testing", "quality", "root-cause"] license: MIT
Lobster Debugging π¦
Systematic root-cause debugging. No guessing. No symptom patches. Ever.
The Iron Law
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
4-Phase Process
Phase 1: Root Cause Investigation
1. Read error messages completely (they often contain the solution) 2. Reproduce consistently (can't fix what you can't reproduce) 3. Check recent changes (git diff, recent commits) 4. Add diagnostic instrumentation at component boundaries 5. Binary search the codebase to isolate the failure pointPhase 2: Condition-Based Waiting
sleep(5000) with event-based waitingPhase 3: Defense-in-Depth
Phase 4: Academic Verification
Red Flags β Stop and Re-Investigate
When to Escalate
After 2 failed fix attempts: 1. Stop. You're guessing. 2. Go back to Phase 1. 3. If still stuck, bring in a second agent with fresh context.