원클릭으로
fix-issue
Fix a GitHub issue by implementing the requested changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fix a GitHub issue by implementing the requested changes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guides building and testing conversational Claude skills. Use when creating a new skill, reviewing an existing skill, or iterating on skill design. Trigger when users say things like "create a new skill", "build a skill", "review this skill", or "make this skill better."
Deeply analyze codebase architecture and dependencies. Use when understanding system design, finding patterns, or mapping how components interact.
Project coding standards and conventions. Loaded automatically when writing or reviewing code to ensure consistency.
Summarize changes and discussion in a pull request
Brief description of when to use this skill
| name | fix-issue |
| description | Fix a GitHub issue by implementing the requested changes |
| argument-hint | ["issue-number"] |
| disable-model-invocation | true |
| allowed-tools | ["Bash(gh *)","Bash(git *)","Read","Write","Edit"] |
Implement a fix for the specified GitHub issue following project standards.
Fix GitHub issue $ARGUMENTS:
Use gh issue view $ARGUMENTS to get the full issue details:
Before creating a PR, ensure:
Commit changes with a descriptive message:
fix: [brief description] (fixes #$ARGUMENTS)
[Detailed explanation of root cause and fix approach]
Create PR linking to the issue:
gh pr create --title "Fix: [description]" \
--body "Fixes #$ARGUMENTS
## Changes
- [List key changes]
## Testing
- [How to verify the fix]"
Before marking as complete: