debug-runbook
Installation
SKILL.md
Debug Runbook
Symptom-first workflow
Every debugging session follows the same loop:
- Symptom — What does the user see? Exact error, behavior, or absence of expected behavior.
- Boundary — Where does the problem live? Client, edge worker, database, third-party service, CI pipeline.
- Tool — Pick the right data source for that boundary (see table below).
- Query — Pull logs, errors, events, or state from that source.
- Interpret — Read the data. Identify root cause vs. symptom.
- Fix — Address the root cause only. No workarounds, no band-aids.
Do NOT skip step 1. The user's description of the symptom determines which tool to reach for. Do NOT start by reading source code — start by reading production data.