원클릭으로
github
Use when interacting with GitHub issues, PRs, CI runs, or the GitHub API via the gh CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when interacting with GitHub issues, PRs, CI runs, or the GitHub API via the gh CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when reviewing a spec or task graph for completeness before implementation
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when decomposing a spec, design, or feature description into a task dependency graph with self-evaluating acceptance criteria
Use when doing creative product, feature, component, functionality, or behavior design work
Use when infrastructure or features are built but before declaring done -- verifies work is wired into the system and actively used
| name | github |
| description | Use when interacting with GitHub issues, PRs, CI runs, or the GitHub API via the gh CLI |
Use the gh CLI to interact with GitHub. Always specify --repo owner/repo when not in a git directory.
gh pr checks <pr-number> --repo owner/repo
gh pr view <pr-number> --repo owner/repo
gh pr diff <pr-number> --repo owner/repo
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
- Change description
## Test plan
- [ ] Tests pass
EOF
)"
gh issue list --repo owner/repo
gh issue view <issue-number> --repo owner/repo
gh issue create --title "title" --body "description" --repo owner/repo
gh run list --repo owner/repo --limit 10
gh run view <run-id> --repo owner/repo
gh run view <run-id> --repo owner/repo --log-failed
The gh api command accesses data not available through other subcommands:
# Get PR with specific fields
gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'
# Get PR comments
gh api repos/owner/repo/pulls/55/comments
# Get PR review comments
gh api repos/owner/repo/pulls/55/reviews
Most commands support --json for structured output with --jq filtering:
gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'
gh pr list --json number,title,state --jq '.[] | "\(.number): \(.title) [\(.state)]"'
gh auth status to verify authenticationgh pr view/gh pr diff over checking out PR branches for reviews--jq for precise field extraction from JSON outputgh api supports pagination with --paginategh pr merge without user confirmation