debug-reproduction
Installation
SKILL.md
Reproduction Specialist Investigation
Investigate bug reproduction to isolate triggers and create minimal, consistent reproduction cases.
Investigation Checklist
Trigger Isolation
- Identify the minimal set of inputs that trigger the bug
- Check for specific ordering or timing requirements to reproduce
- Verify which user actions or API calls are necessary preconditions
- Look for environmental triggers such as load, memory, or timing
- Determine if the bug requires specific data patterns or edge cases
Minimal Reproduction
- Strip away unrelated code and configuration to isolate the bug
- Create a self-contained test case that demonstrates the failure
- Verify the reproduction case fails for the same reason as the original
- Remove dependencies one by one to find the minimal trigger set
- Document exact steps from clean state to observed failure