원클릭으로
github-issues
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
Read, search, create, and update Notion pages and databases via the Notion API.
| name | github-issues |
| description | List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI. |
| always | false |
| metadata | {"clawlite":{"emoji":"🐙","requires":{"bins":["gh","git"]},"auth":{"optionalEnv":["GH_TOKEN"]}}} |
Use this skill for GitHub issue and PR management using the gh CLI.
gh auth status # verify active session
gh auth login # interactive login
# or set GH_TOKEN env var for headless operation
gh issue list --repo owner/repo --state open --limit 20
gh issue list --repo owner/repo --label bug --assignee @me
gh issue view 123 --repo owner/repo
gh issue create --repo owner/repo --title "Title" --body "Body" --label bug
gh issue close 123 --repo owner/repo
gh issue comment 123 --repo owner/repo --body "comment text"
gh issue edit 123 --repo owner/repo --add-label "priority:high"
gh pr list --repo owner/repo --state open
gh pr view 456 --repo owner/repo
gh pr create --title "Fix bug" --body "Fixes #123" --base main
gh pr merge 456 --squash --repo owner/repo
gh pr review 456 --approve --body "LGTM"
gh issue list --search "is:issue is:open label:bug" --repo owner/repo
gh pr list --search "is:pr is:open review-requested:@me"