From shiiman-github
オープン Issue の一覧を優先順位付きで表示する。「Issue 一覧」「Issue リスト」「オープン Issue」「Issue を見せて」「チケット一覧」「未解決 Issue」「Issue 確認」などで起動。優先度順にソートして表示。
How this skill is triggered — by the user, by Claude, or both
Slash command
/shiiman-github:issue-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
オープン Issue の一覧を優先順位付きで表示します。
オープン Issue の一覧を優先順位付きで表示します。
$ARGUMENTS に --help が含まれる場合、以下を表示して終了:
/shiiman-github:issue-list - Issue 一覧表示
概要:
オープン Issue の一覧を優先順位付きで表示する。
ラベルに基づく優先度ソートに対応。
使用方法:
/shiiman-github:issue-list [オプション]
オプション:
--all クローズ済みも含めて表示
--mine 自分がアサインされたもののみ
--help このヘルプを表示
例:
/shiiman-github:issue-list # オープン Issue を表示
/shiiman-github:issue-list --all # 全 Issue を表示
/shiiman-github:issue-list --mine # 自分担当の Issue を表示
gh issue list コマンドで Issue 一覧を取得# オープンのみ(デフォルト)
gh issue list --json number,title,labels,assignees,createdAt --limit 50
# クローズ済みも含める(--all)
gh issue list --state all --json number,title,labels,assignees,createdAt,state --limit 50
# 自分がアサインされたもの(--mine)
gh issue list --assignee @me --json number,title,labels,assignees,createdAt --limit 50
優先順位でソート(ラベル: priority-high > priority-medium > priority-low)
以下の形式で表示
## オープン Issue 一覧
| 優先度 | # | タイトル | ラベル | 担当者 | 作成日 |
|:------:|---|----------|--------|--------|--------|
| 🔴 | #5 | バグ修正 | bug, priority: high | @user | 2024-01-01 |
| 🟡 | #3 | 機能追加 | enhancement | - | 2024-01-02 |
| 🟢 | #1 | ドキュメント | docs, priority: low | @user | 2024-01-03 |
合計: 3 件のオープン Issue
| 優先度 | アイコン | 条件 |
|---|---|---|
| 高 | 🔴 | priority: high ラベル または bug ラベル |
| 中 | 🟡 | priority: medium ラベル または ラベルなし |
| 低 | 🟢 | priority: low ラベル または documentation ラベル |
- で表示npx claudepluginhub shiiman/claude-code-plugins --plugin shiiman-githubPrioritizes open GitHub issues by label (bug/critical/security high, enhancement/feature/assigned medium, documentation/good-first-issue low) and displays them with summaries. Useful for triaging issues and creating PRs from issues.
Shows open GitHub Issues sorted by priority (high, medium, low) based on labels like bug, critical, security. Triggered by phrases such as 'show issues' or 'issue list'.
Fetches open GitHub Issues from the current repository and displays them sorted by priority (high/medium/low) based on labels like bug, critical, security, enhancement, etc.