| name | fix-issue |
| description | Fix a GitHub issue end-to-end — from reading the issue to creating a PR |
| disable-model-invocation | true |
Fix the GitHub issue: $ARGUMENTS
- Run
gh issue view $ARGUMENTS to get full issue details
- Understand the problem and identify affected files
- Search the codebase for relevant code
- Implement the fix
- Run
yarn generate if any GraphQL or SQL schema changed
- Run
yarn test to verify no regressions
- Run
yarn lint to verify code style
- Create a descriptive commit:
git commit -m "fix: <description> (closes #$ARGUMENTS)"
- Push and create a PR:
gh pr create --fill