debug-fixed
Installation
SKILL.md
Debug Fixed
User confirms the bug is fixed. Clean up and summarize.
User Notes
$ARGUMENTS
Workflow
Step 1: Remove Instrumentation
Remove all __debugLog() calls from instrumented files:
- All
__debugLog(...)calls - The logger function declaration at the top of each file
- Any imports added for the logger (e.g.,
appendFileSync,mkdirSync,existsSync)
Step 2: Stop Collector
Related skills
More from mikecfisher/claude-debug-mode
debug-reproduced
User confirms the bug was reproduced. Analyze logs and iterate on hypotheses.
2debug-mode
Hypothesis-driven debugging with runtime log instrumentation. Use when user reports a bug, unexpected behavior, flaky test, or when runtime evidence is needed to understand code behavior. Invoke for issues like "X isn't working", "I'm seeing Y error", "why does Z happen", or when multiple code paths could cause the problem.
2