fix-issue
19
总安装量
4
周安装量
#18469
全站排名
安装命令
npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill fix-issue
Agent 安装分布
claude-code
3
opencode
2
antigravity
2
windsurf
1
trae
1
Skill 文档
Fix Issue
Systematic issue resolution with 5-7 parallel agents.
Quick Start
/fix-issue 123
/fix-issue 456
Phase 1: Understand the Issue
# Get full issue details
gh issue view $ARGUMENTS --json title,body,labels,assignees,comments
# Check related PRs
gh pr list --search "issue:$ARGUMENTS"
Phase 2: Create Feature Branch
git checkout dev
git pull origin dev
git checkout -b issue/$ARGUMENTS-fix
Phase 3: Memory Check
mcp__memory__search_nodes(query="issue $ARGUMENTS")
Phase 4: Parallel Analysis (5 Agents)
| Agent | Task |
|---|---|
| Explore #1 | Root cause analysis |
| Explore #2 | Impact analysis |
| backend-system-architect | Backend fix design |
| frontend-ui-developer | Frontend fix design |
| code-quality-reviewer | Test requirements |
All 5 agents run in ONE message, then synthesize fix plan.
Phase 5: Context7 for Patterns
mcp__context7__get-library-docs(libraryId="/tiangolo/fastapi", topic="relevant")
mcp__context7__get-library-docs(libraryId="/facebook/react", topic="relevant")
Phase 6: Implement the Fix (2 Agents)
| Agent | Task |
|---|---|
| backend/frontend | Implement fix |
| code-quality-reviewer | Write tests |
Requirements:
- Make minimal, focused changes
- Add proper error handling
- Include type hints
- DO NOT over-engineer
Phase 7: Validation
# Backend
cd backend
poetry run ruff format --check app/
poetry run ruff check app/
poetry run ty check app/
poetry run pytest tests/unit/ -v --tb=short
# Frontend
cd frontend
npm run format:check
npm run lint
npm run typecheck
npm run test
Phase 8: Commit and PR
git add .
git commit -m "fix(#$ARGUMENTS): [Brief description]"
git push -u origin issue/$ARGUMENTS-fix
gh pr create --base dev --title "fix(#$ARGUMENTS): [Brief description]"
Summary
Total Parallel Agents: 7
- Phase 4 (Analysis): 5 agents
- Phase 6 (Implementation): 2 agents
Agents Used:
- 2 Explore (root cause, impact)
- 1 backend-system-architect
- 1 frontend-ui-developer
- 2 code-quality-reviewer
Workflow:
- Understand issue
- Create branch
- Parallel analysis
- Design fix
- Implement + test
- Validate
- PR with issue reference
Related Skills
- commit: Commit issue fixes
- debug-investigator: Debug complex issues
- errors: Handle error patterns
- issue-progress-tracking: Auto-updates issue checkboxes from commits