ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年4月27日 17:12
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill github-issuesコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | github-issues |
| description | Create, list, view, and manage GitHub issues using the gh CLI |
| category | developer |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | github, issues, bug-tracker, gh-cli, labels, milestones, comments, triage, project-management |
Manage GitHub issues — create, list, view, label, assign, and close issues — using the gh CLI. Requires gh auth login (see github-auth skill) or GH_TOKEN environment variable.
# List open issues in current repo
gh issue list
# List with specific filters
gh issue list --state open --label bug --limit 20
# List issues assigned to me
gh issue list --assignee @me
gh issue view 42
gh issue view 42 --comments
# Interactive (opens editor)
gh issue create
# Non-interactive with all fields
gh issue create --title "Login fails on mobile Safari" --body "Steps to reproduce:
1. Open app on iOS Safari
2. Tap Sign In
3. Form submits but returns to login page
Expected: successful login. Actual: redirect loop." --label bug --assignee "@me"
gh issue comment 42 --body "Investigated — root cause is a CSRF token mismatch. Fix in progress."
# Add a label
gh issue edit 42 --add-label "priority:high"
# Remove a label and add another
gh issue edit 42 --remove-label bug --add-label wont-fix
# Assign to someone
gh issue edit 42 --add-assignee johndoe
# Change title
gh issue edit 42 --title "Login redirect loop on mobile Safari"
# Close (resolved)
gh issue close 42 --comment "Fixed in v2.1.3"
# Close as not planned
gh issue close 42 --reason "not planned"
# Reopen
gh issue reopen 42
# Search open issues mentioning a keyword
gh issue list --repo owner/repo --search "authentication token" --state all
# GitHub search syntax in --search
gh issue list --repo owner/repo --search "label:bug created:>2026-01-01"
# Close all issues with a specific label
gh issue list --label "duplicate" --limit 100 --json number |
python -c "import json,sys; [print(i['number']) for i in json.load(sys.stdin)]" |
ForEach-Object { gh issue close $_ --reason "not planned" }
"Create a GitHub issue for the login bug we just found"
→ Use step 3 with title, body describing steps to reproduce, and --label bug.
"Show me all open bugs assigned to me in this repo"
→ Use step 1: gh issue list --label bug --assignee @me.
"Close issue 42 and add a comment that it's fixed"
→ Use step 6: gh issue close 42 --comment "Fixed in latest release".
gh must be authenticated — run gh auth status to verify before use--add-label will error--repo owner/repo for multi-repo workflows