| name | fix-github-issue |
| description | Workflow for analyzing and fixing GitHub issues. Use when given an issue number to investigate and resolve. |
Fix GitHub Issue Skill
Analyze and fix GitHub issues systematically.
Workflow
Get Issue Details
gh issue view <issue_number>Understand the Problem
- Read issue description and comments
- Identify affected components
- Determine root cause
Search Codebase
- Find relevant files
- Understand current implementation
- Check related tests
Implement Fix
- Follow coding standards (see code-writer skill)
- Import contracts from
rainze.core.contracts - Add bilingual comments
Validate
make lint # Check linting make typecheck # Check types make test # Run testsCommit & PR
- Use conventional commit format
- Reference issue number:
Fixes #<number> - Create PR with description
Requirements
- Follow CLAUDE.md coding standards
- Run
make checkbefore committing - Include test for the fix when applicable