Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobcob7/dot-tools --skill gh명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | gh |
| description | GitHub CLI commands for PRs, issues, repos, and workflows |
| argument-hint | [command or question] |
| allowed-tools | Bash, Read |
Help with GitHub CLI (gh) based on $ARGUMENTS.
gh auth login # Interactive login
gh auth status # Check auth status
gh auth token # Print token
# Create
gh pr create # Interactive
gh pr create --title "Title" --body "Description"
gh pr create --draft # Create as draft
gh pr create --base main # Specify base branch
# View
gh pr list # List open PRs
gh pr view # View current branch's PR
gh pr view 123 # View PR #123
gh pr view --web # Open in browser
# Review
gh pr checkout 123 # Check out PR branch
gh pr diff # View diff
gh pr review --approve # Approve PR
gh pr review --comment -b "LGTM"
gh pr review --request-changes -b "Please fix..."
# Merge
gh pr merge # Merge current PR
gh pr merge --squash # Squash merge
gh pr merge --rebase # Rebase merge
gh pr merge --auto # Auto-merge when ready
gh issue create # Interactive
gh issue create --title "Bug" --body "Details"
gh issue list # List open issues
gh issue view 123 # View issue
gh issue close 123 # Close issue
gh issue comment 123 --body "Comment"
gh repo create # Create new repo
gh repo clone owner/repo # Clone repo
gh repo fork # Fork current repo
gh repo view # View repo info
gh repo view --web # Open in browser
gh workflow list # List workflows
gh workflow run <name> # Trigger workflow
gh run list # List runs
gh run view # View latest run
gh run watch # Watch run in progress
gh run rerun 12345 # Rerun failed run
gh api repos/{owner}/{repo} # GET request
gh api repos/{owner}/{repo}/issues --method POST -f title="New issue"
gh api graphql -f query='{ viewer { login } }'
gh alias set pv 'pr view' # Create alias
gh alias list # List aliases