$npx -y skills add smartwhale8/claude-playbook --skill fix-issueAnalyze and fix a GitHub issue end-to-end
| 1 | Analyze and fix the GitHub issue: $ARGUMENTS |
| 2 | |
| 3 | Follow this workflow: |
| 4 | |
| 5 | 1. **Understand**: Run `gh issue view $ARGUMENTS` to get issue details |
| 6 | 2. **Investigate**: Search the codebase for relevant files and understand the root cause |
| 7 | 3. **Plan**: Describe your approach before making changes |
| 8 | 4. **Implement**: Make the necessary code changes |
| 9 | 5. **Test**: Write a test that would have caught this issue, then run the test suite |
| 10 | 6. **Verify**: Ensure lint and type checks pass |
| 11 | 7. **Commit**: Create a descriptive commit message referencing the issue |
| 12 | 8. **PR**: Push and create a PR with `gh pr create` |
| 13 | |
| 14 | Important: |
| 15 | - Address the ROOT CAUSE, not just the symptom |
| 16 | - If the fix requires changes across multiple files, explain why |
| 17 | - If the issue is unclear, ask for clarification before implementing |