| name | claude-command-fix-issue |
| description | Use when the user wants the Claude `/fix-issue` command workflow in Codex, or asks to run `fix-issue` using the claudet command template. |
Claude Command: /fix-issue
Generated by claudet agent-config-sync.
Follow this workflow in Codex. The original Claude slash command body is below.
/fix-issue — Fix a GitHub Issue
Given an issue number or description, locate the bug and apply a fix.
Steps
- Read the issue description provided by the user
- Search the codebase for relevant files (
grep, file reads)
- Reproduce the logic of the bug mentally — trace the data flow
- Propose a fix with explanation
- Apply the fix
- Write or update a test that would catch this regression
- Run
npm run typecheck and npm run test to verify
- Summarize what was changed and why
Usage
/fix-issue #42
/fix-issue "Login button does nothing when email is empty"
Rules
- Do not change unrelated code
- Keep the fix minimal and focused
- Add a comment if the fix is non-obvious