Back to list
orbat-mapper

github-issues

by orbat-mapper

Recreate historic battles and military scenarios in your browser

92🍴 22📅 Jan 21, 2026

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 list before 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 status to see a summary of issues relevant to you.

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

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

+5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

+5

Reviews

💬

Reviews coming soon