Analyze and fix the GitHub issue: $ARGUMENTS
Follow this workflow:
- •Understand: Run
gh issue view $ARGUMENTSto get issue details - •Investigate: Search the codebase for relevant files and understand the root cause
- •Plan: Describe your approach before making changes
- •Implement: Make the necessary code changes
- •Test: Write a test that would have caught this issue, then run the test suite
- •Verify: Ensure lint and type checks pass
- •Commit: Create a descriptive commit message referencing the issue
- •PR: Push and create a PR with
gh pr create
Important:
- •Address the ROOT CAUSE, not just the symptom
- •If the fix requires changes across multiple files, explain why
- •If the issue is unclear, ask for clarification before implementing