원클릭으로
gh-cli
Use gh for GitHub PRs, issues, runs, releases, comments, checks, labels, and raw API tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use gh for GitHub PRs, issues, runs, releases, comments, checks, labels, and raw API tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Shell out to claude CLI.
Run a multi-agent debate to compare options and converge on a decision.
Run the same task with multiple agents for reviews, critiques, or model comparison.
Autonomous large-task delivery agent. Use for long-running coding work that should go from objective or plan to implemented code, review fixes, PR/MR, and green CI with minimal human-in-the-loop gates.
Manage ClickUp tasks.
Generate a project template for Coolify
| name | gh-cli |
| description | Use gh for GitHub PRs, issues, runs, releases, comments, checks, labels, and raw API tasks. |
Use this skill for GitHub-hosted work. Prefer gh over browser workflows or generic web fetching when the task is about repository state.
owner/repo and the PR, issue, run, or commit identifier from itgit remote get-url origingit branch --show-currentgh commandsUse high-level commands first when they cover the task cleanly:
gh pr view, gh pr list, gh pr diff, gh pr checks, gh pr create, gh pr comment, gh pr edit, gh pr statusgh issue view, gh issue listgh searchgh run list, gh run view, gh run watchPrefer machine-readable output:
--json ... --jq ... when supportedjq and keep only the fields needed for the current taskgh api for gapsUse gh api when a high-level command does not expose the needed operation or fields.
gh api for repository security advisories, including POST /repos/{owner}/{repo}/security-advisoriesgh api graphql for operations with no REST equivalent — notably resolving PR review threads (see reference.md)-f for string fields and -F for integer or typed fields--input with a HEREDOC for nested JSON request bodies such as advisory payloads! via HEREDOC — shell history expansion will rewrite ! to \! and break the query. Write the query with the Write tool to a temp file, then pass via -F query=@file. See the gotcha in reference.md.Always pass explicit flags instead of relying on prompts.
--title, --body, --body-file, --json, --jq, --reporesolveReviewThread)For GitHub Actions triage, prefer branch-scoped run inspection first.
gh run list --branch "$(git branch --show-current)" --limit 3 --json databaseId,displayTitle,conclusion,statusgh run watch <RUN_ID>gh run view <RUN_ID> --log-failedgh pr checks <PR> as a secondary view when PR-centric status is more useful than branch-centric runsDetailed command patterns live in reference.md.
When posting GitHub inline review comments:
gh api against the PR review comments endpointRIGHT for added or unchanged lines and LEFT for removed lines```suggestion block, follow the Committable Suggestion Blocks rules — the body's line count MUST equal the anchor range, otherwise GitHub applies a broken patchgh reports authentication or repo access errors, surface that clearly instead of guessinggh api repos/{owner}/{repo}/... for repo-scoped API callsrepo or repository_advisories:write scope