| name | fix-issue |
| description | Diagnose and fix a GitHub issue end-to-end |
Analyze and fix the GitHub issue: $ARGUMENTS
- Read the issue:
gh issue view $ARGUMENTS
- Understand the scope: identify which area is affected (engine, API, UI, backend, integration)
- Find the relevant source files using grep and glob
- Read related test files to understand expected behavior
- Implement the fix following the path-specific rules for the affected area
- Write or update tests to cover the fix
- Run verification:
npm run lint
npx tsc --noEmit
npx vitest run (affected test files)
- If backend:
cd server && npm test
- Commit with message:
fix: <description> (closes #$ARGUMENTS)
- Push and create a PR with
gh pr create