| name | triage-issue |
| description | Investigate a bug, find root cause, and create a GitHub issue with a TDD fix plan. |
Triage Issue
Minimize questions. Investigate first.
Workflow
- Get the problem statement. If missing, ask one question.
- Explore deeply:
- where it fails
- code path
- root cause
- related code and tests
- recent relevant changes
- Define the minimal fix:
- affected modules
- behaviors to verify
- bug type: regression, missing feature, or design flaw
- Write a TDD plan as ordered red-green cycles.
- Create the GitHub issue with
gh issue create.
Issue Shape
- Problem
- Root Cause Analysis
- TDD Fix Plan
- Acceptance Criteria
Rules
- Tests assert observable behavior.
- Describe durable contracts, not current file layout.
- Do not ask for pre-review before creating the issue.