Fix GitHub issue: $ARGUMENTS
Workflow
- •Understand: Use
gh issue view $ARGUMENTSto get details - •Investigate: Search codebase for relevant files
- •Plan: Identify changes needed
- •Implement: Make the changes
- •Test: Write/run tests to verify the fix
- •VERIFY (Required):
bash
# Must pass ALL of these before continuing: python -c "from my_project import *; print('imports ok')" pytest -x pytest tests/test_smoke.py -v # Smoke tests my-project info # CLI actually runs - •Lint: Run linter and type checker
- •Commit: Create descriptive commit message
- •PR: Push and create pull request with
gh pr create
IMPORTANT: Verification
Do NOT proceed to commit/PR until you have:
- • Run the code you changed (not just tests)
- • Verified output is correct
- • Checked for errors/warnings in output
Tests passing is necessary but NOT sufficient. Actually run the code.
Guidelines
- •Address root cause, not just symptoms
- •Follow existing code patterns
- •Include test coverage for the fix