بنقرة واحدة
gh-issue
Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a changelog or release notes from recent git history. Use when asked to write a changelog, summarize recent commits, or produce release notes.
Scaffold a new custom SKILL.md file interactively. Use when asked to create a new skill or slash command.
Create or switch to a feature branch, typically tied to a GitHub issue. Use when asked to create a branch or start work on an issue.
Create, review, or manage GitHub pull requests. Use when asked to open, check, or merge a PR.
Run the linter, auto-fix what's fixable, and report the rest. Use when asked to lint or fix lint errors.
Run the project test suite and surface failures. Use when asked to run tests or check test status.
| name | gh-issue |
| description | Create, view, list, or comment on GitHub issues. Use when asked to file, open, or manage GitHub issues. |
| allowed-tools | Bash |
Manage GitHub issues for this repository.
Current open issues: !{gh issue list --limit 10 --json number,title,state,labels 2>/dev/null || echo "(gh CLI not available or no GitHub remote)"}
Recent commits for context: !{git log --oneline -5 2>/dev/null || echo ""}
Task: $ARGUMENTS
Common operations:
gh issue create --title "Title" --body "Body" [--label bug,enhancement] [--assignee @me]gh issue view <number>gh issue list [--state open|closed|all] [--label <label>] [--assignee <user>]gh issue comment <number> --body "Comment"gh issue close <number> [--comment "Reason"]gh issue edit <number> [--title "New title"] [--body "New body"] [--add-label <label>]When creating an issue:
gh label list)