Back to list
yonatangross

fix-issue

by yonatangross

The Complete AI Development Toolkit for Claude Code — 159 skills, 34 agents, 20 commands, 144 hooks. Production-ready patterns for FastAPI, React 19, LangGraph, security, and testing.

29🍴 4📅 Jan 23, 2026

SKILL.md


name: fix-issue description: Fix GitHub issue with parallel analysis and implementation. Use when fixing issues, resolving bugs, closing GitHub issues. context: fork version: 1.0.0 author: OrchestKit tags: [issue, bug-fix, github, debugging] user-invocable: true

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)

AgentTask
Explore #1Root cause analysis
Explore #2Impact analysis
backend-system-architectBackend fix design
frontend-ui-developerFrontend fix design
code-quality-reviewerTest 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)

AgentTask
backend/frontendImplement fix
code-quality-reviewerWrite 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:

  1. Understand issue
  2. Create branch
  3. Parallel analysis
  4. Design fix
  5. Implement + test
  6. Validate
  7. PR with issue reference
  • commit: Commit issue fixes
  • debug-investigator: Debug complex issues
  • errors: Handle error patterns
  • issue-progress-tracking: Auto-updates issue checkboxes from commits

References

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon