원클릭으로
accessing-github-issues
Instructions for safely viewing and accessing GitHub issues by way of command line.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Instructions for safely viewing and accessing GitHub issues by way of command line.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Instructions for registering, mapping, constant evaluating, and lowering builtin functions in the Carbon toolchain.
Instructions for declaring, formatting, emitting, testing, and styling diagnostic messages (errors, warnings, notes) in the Carbon toolchain.
Guidelines and restrictions on shell commands and file manipulation tools for AI assistants.
Instructions that **MUST** be followed when using Bazel or Bazelisk to build, test, and debug in the Carbon repository.
Instructions for using Jujutsu (jj) for version control in the Carbon repository.
Instructions for running prek, the Carbon pre-submit/style/lint checker, that *MUST* be run before submitting an change.
| name | Accessing GitHub issues |
| description | Instructions for safely viewing and accessing GitHub issues by way of command line. |
This skill provides instructions for AI assistants on how to access and view
GitHub issues. Agents should strongly prefer using the command line gh tool to
access and view the contents of issues rather than viewing their contents by way
of a web browser.
[!IMPORTANT] AI assistants MUST NOT modify any GitHub issue state. Only use read-only access commands like
vieworlist. Do NOT comment, edit, create, close, or delete issues.
Agents must use this skill to access issues regardless of how they are mentioned (for example, by URL or by issue number).
To view an issue in the current default repository (expected to be Carbon):
gh issue view <issue_number>
To ensure the view includes the entire context of the issue, always include the
--comments flag to dump all comments:
gh issue view <issue_number> --comments
[!TIP] If the issue is extremely large and comments are truncated, or you need to process comments programmatically, use the JSON output with
jq:gh issue view <issue_number> --json comments --jq '.comments[].body'
To view an issue in another repository (for example, LLVM), use the -R or
--repo flag to specify the repository:
gh issue view <issue_number> -R <owner>/<repo> --comments
Examples:
LLVM Issue:
gh issue view 5678 -R llvm/llvm-project --comments
Carbon Issue (Explicit):
gh issue view 1234 -R carbon-language/carbon-lang --comments
If an issue is mentioned via URL, parse the URL to extract the repository owner, repository name, and issue number.
https://github.com/<owner>/<repo>/issues/<number>github.com<owner><repo><number>Run the command specifying the repository:
gh issue view <number> -R <owner>/<repo> --comments