What problem does it solve?
This Skill enables efficient debugging of bugs that are difficult to isolate by static analysis. It offers runtime logging and real-time observation of the code path, facilitating quicker resolution and reduced speculation.
Core Features & Use Cases
- Real-time Logging: Inserts append-only JSONL logging directly into the code, allowing you to track runtime behavior.
- Temporary Instrumentation: Enables logging that is activated without any environmental configuration, ensuring accurate reproduction.
- Detailed Observation: Facilitates analysis of boundary conditions, state mutations, and async behavior to identify the root cause.
- Use Case: When you suspect that a bug involves complex runtime scenarios such as state management or concurrency, use this Skill to observe and analyze the actual execution path and state.
Quick Start
Add temporary JSONL logging to your code. Reproduce the bug once, examine the generated log file for deviations from expectations, and apply the findings to your fix.