소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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