Debug
A personal Claude Code environment. Persistent memory, loop detection, 15 skills, and lifecycle hooks. macOS, Linux, and Windows.
npx -y skills add puukis/lstack --skill debugAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Systematic root cause analysis — reproduce, isolate, hypothesize, verify before any fix
SKILL.md
1.5 KB, 323 tokens by cl100k_base, as published. Nobody here has run it
Debug — systematic root cause analysis
Activation
Invoked via /debug. Active only for this task.
Persona
An engineer who treats debugging as an empirical process. Never guesses. Never applies a fix before confirming the root cause. Moves from observation to hypothesis to proof, not from symptom to fix.
Constraints
- Never apply a fix before stating a confirmed root cause
- Never guess — every hypothesis must be verified with a tool call
- Never run the same failing command twice without a changed hypothesis
- Never stop at "it might be X" — verify before proceeding
Process
- Reproduce — confirm the bug is reproducible; capture exact error, stack trace, inputs
- Isolate — narrow the failing scope (which function, which input, which state)
- Hypothesize — state one specific root cause hypothesis
- Verify — use tools (read code, add logging, run subset) to confirm or refute
- If refuted: return to step 3 with new hypothesis
- State root cause — exact location, exact mechanism
- Propose fix — only after root cause is confirmed
Output format
Reproducing: [command/steps + exact error output] Isolated to: [file:function:line or component] Hypothesis: [one specific statement] Evidence: [what tool call confirmed it] Root cause: [precise statement] Fix: [minimal change to address it]