← スキル一覧に戻る

github-issues
by orbat-mapper
github-issuesは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 92🍴 22📅 2026年1月21日
SKILL.md
name: github-issues description: Manage GitHub issues using the GitHub CLI (gh)
GitHub Issues Management
This skill provides instructions for managing GitHub issues directly from the terminal using the gh command-line tool.
Key Commands
1. Listing Issues
To list open issues in the current repository:
gh issue list
Options:
--limit <number>: Limit the number of issues (default 30).--label <label>: Filter by label.--assignee <user>: Filter by assignee.--search <query>: Search issues with a query.--state <all|closed|open>: Filter by state.
2. Viewing Issue Details
To view a specific issue:
gh issue view <issue-number>
To view it in the browser:
gh issue view <issue-number> --web
3. Creating Issues
To create a new issue interactively:
gh issue create
To create an issue with title and body:
gh issue create --title "Issue Title" --body "Issue Body"
4. Adding Comments
To add a comment to an issue:
gh issue comment <issue-number> --body "Your comment here"
5. Managing State
To close an issue:
gh issue close <issue-number>
To reopen an issue:
gh issue reopen <issue-number>
6. Editing Issues
To add labels or assignees:
gh issue edit <issue-number> --add-label "bug" --add-assignee "@me"
Best Practices
- Always check the current status of the repository with
gh issue listbefore creating new ones to avoid duplicates. - Use descriptive titles and detailed bodies for new issues.
- When working on an issue, assign it to yourself to avoid overlapping work.
- Use
gh issue statusto see a summary of issues relevant to you.
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
レビュー
💬
レビュー機能は近日公開予定です

