بنقرة واحدة
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: