log-driven-debugging
Installation
SKILL.md
When the bug is slippery, stop guessing and build observability.
This skill is for situations where:
- the visible symptom is known, but the actual failure layer is not
- static code reading is no longer enough
- one execution with good logs can collapse a large search space
The workflow is simple:
- decide where to instrument
- add high-signal logs
- have the user rerun the scenario
- analyze the returned logs
- only then propose or implement the real fix
First move
Before adding any logs, ask the user for a log prefix.
This is required, not optional. Explain why briefly: the prefix makes the new logs searchable and prevents them from being lost in normal application output.