Reproduce Bug
Use this skill for issue-driven debugging and reproducible bug reports.
Invoke with $reproduce-bug [issue number or URL].
Workflow
- •
Resolve issue context:
- •Read issue title, body, and latest comments.
- •Extract expected behavior, actual behavior, environment, and repro steps.
- •
Investigate likely failure points:
- •Search relevant files and recent changes.
- •Inspect logs and error traces.
- •Run targeted commands/tests to validate hypotheses.
- •
Reproduce behavior:
- •For backend/data bugs, run the minimal command/test that reproduces failure.
- •For UI bugs, use
$test-browserfor navigation, snapshots, and console checks.
- •
Capture evidence:
- •Exact steps to reproduce.
- •Affected files/locations.
- •Error output (or "not reproduced" status with attempted paths).
- •
Report findings:
- •Root cause hypothesis.
- •Confidence level.
- •Suggested fix direction.
Output Template
markdown
## Bug Reproduction Report - Issue: #[number] - Reproduced: [yes/no] - Environment: [local details] ### Reproduction Steps 1. ... 2. ... ### Observed Result ... ### Expected Result ... ### Evidence - Logs/errors: - Screenshots (if UI): - Relevant files: ### Root Cause (Hypothesis) ... ### Proposed Fix ...