troubleshoot
Installation
SKILL.md
Troubleshooting Protocol
Follow this systematic root cause analysis process. NEVER retry the same approach without understanding WHY it failed.
Protocol
- STOP: Do not re-execute the same command
- Observe: What exactly happened? What was expected?
- Hypothesize: What could cause this? (list 2-3 possibilities)
- Investigate: Check official docs, logs, stack traces, config
- Root Cause: Identify the fundamental cause (not symptoms)
- Fix: Implement a solution that addresses the root cause
- Verify: Confirm the fix works
- Learn: Document the solution for future reference