github-readonly-live
Use this skill for current live GitHub REST data from the single repository
allowed by the sandbox policy.
When to use
- Inspect the currently allowed live GitHub repository.
- Read current issues, issue comments, pull requests, pull request files,
reviews, commits, branches, labels, milestones, README, or repository
contents.
- Check live state when the source ETL mirror may be stale or empty.
Do not use this skill for GitHub discussions or NVIDIA forums. Use
source-etl-query for those mirrored sources.
Access model
- The allowed repository is
$GITHUB_READONLY_REPO.
- Requests use the OpenShell GitHub provider placeholder from
GITHUB_TOKEN.
Treat it as a secret placeholder: do not print
it, modify it, or copy it into responses.
- Do not run
env, printenv, echo, or similar commands against
GITHUB_TOKEN. The helper loads the placeholder itself.
- Do not inspect
.env files, shell environments, proxy settings, or token
variables to troubleshoot GitHub. If the helper cannot authenticate or reach
GitHub, it will report the error itself.
- Only repo-scoped
GET requests to api.github.com are allowed.
- Do not use
gh, git, github.com, raw.githubusercontent.com,
codeload.github.com, GraphQL, or GitHub search endpoints.
- If a request returns an OpenShell policy 403, report the policy scope instead
of trying another GitHub host, another binary, or a write-like method.
- If explicitly asked to validate that a write is blocked, do not inspect the
token variable. Use direct shell expansion in the Authorization header and
report only the policy error.
Write-block validation pattern:
auth="${GITHUB_TOKEN:-}"
curl -sS -o /tmp/github-write-denied.json -w 'HTTP Status: %{http_code}\n' \
-X POST \
-H "Authorization: Bearer ${auth}" \
-H 'Accept: application/vnd.github+json' \
-H 'X-GitHub-Api-Version: 2022-11-28' \
"https://api.github.com/repos/${GITHUB_READONLY_REPO:-NVIDIA/OpenShell}/issues/<number>/comments" \
-d '{"body":"policy-validation-test"}'
cat /tmp/github-write-denied.json
Procedure
Always run the bundled helper script via the terminal tool. It constructs only
repo-scoped GitHub REST GET requests. Prefer the generic get command and map
the user's question to a repo-relative REST route plus query params.
Do not invoke github-readonly-live as a shell command; it is the skill name,
not an executable. Do not call a tool named github-readonly-live; use
skill_view only if you need to read this instruction file.
Do not search for GitHub binaries with which, command -v, ls /usr/bin,
or similar commands. The canonical helper path below is the only supported live
GitHub access path.
On transient helper failures such as DNS resolution errors, connection resets,
or timeouts, retry the exact same helper command once. If the retry fails, give
the user the helper error and stop. Do not diagnose by inspecting token env vars,
.env files, proxy env vars, DNS tools, curl, gh, git, custom Python
requests, or alternate GitHub hosts.
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py rate-limit
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get . --fields full_name,description,open_issues_count
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get issues --param state=open --limit 20 --exclude-pulls --fields number,title,state,html_url
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get issues/<number>/comments --paginate --fields user.login,created_at,body
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get pulls --param state=open --paginate --count
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get pulls/<number>/files --paginate --fields filename,status,changes
/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get contents/<path>
Generic route rules:
- Use repo-relative REST routes only:
., issues, issues/<number>,
issues/<number>/comments, pulls, pulls/<number>,
pulls/<number>/files, commits, branches, contents/<path>, etc.
- Put query strings in
--param KEY=VALUE, not in the route.
- Use
--paginate --count for exact counts. Use --limit only when the user
asks for a sample or "latest N" items.
- Use
--fields to keep output small instead of piping to python -c, jq,
or custom scripts.
- Use
--exclude-pulls on the issues route when the user asks for issues
rather than PRs, because GitHub's issues endpoint includes pull requests.
Compatibility aliases such as issues, issue-counts, pulls,
pull-counts, and contents are available, but the generic get command is
the default pattern for new GitHub questions.
Pitfalls
- For "how many issues" questions, use generic count:
get issues --param state=all --paginate --count --exclude-pulls. Do not use
GitHub search endpoints; they are outside policy by design.
- For "how many PRs" or "how many pull requests" questions, use generic count:
get pulls --param state=open --paginate --count or the requested state. Do
not estimate from a single page.
- The live GitHub scope and the source ETL mirror scope can be different repos.
Do not merge their results without naming which source each fact came from.
- If the helper is rate-limited, report that GitHub auth was absent or
exhausted; use
source-etl-query only when the user's task can tolerate
mirrored data.
- The helper filters pull requests out of the
issues command. Use pulls or
pull-counts when the user specifically asks for PRs.
1---2name: github-readonly-live3description: Read the configured live GitHub repository through authenticated, policy-scoped GitHub REST GET requests.4---56# github-readonly-live78Use this skill for current live GitHub REST data from the single repository9allowed by the sandbox policy.1011## When to use1213- Inspect the currently allowed live GitHub repository.14- Read current issues, issue comments, pull requests, pull request files,15 reviews, commits, branches, labels, milestones, README, or repository16 contents.17- Check live state when the source ETL mirror may be stale or empty.1819Do not use this skill for GitHub discussions or NVIDIA forums. Use20`source-etl-query` for those mirrored sources.2122## Access model2324- The allowed repository is `$GITHUB_READONLY_REPO`.25- Requests use the OpenShell GitHub provider placeholder from `GITHUB_TOKEN`.26 Treat it as a secret placeholder: do not print27 it, modify it, or copy it into responses.28- Do not run `env`, `printenv`, `echo`, or similar commands against29 `GITHUB_TOKEN`. The helper loads the placeholder itself.30- Do not inspect `.env` files, shell environments, proxy settings, or token31 variables to troubleshoot GitHub. If the helper cannot authenticate or reach32 GitHub, it will report the error itself.33- Only repo-scoped `GET` requests to `api.github.com` are allowed.34- Do not use `gh`, `git`, `github.com`, `raw.githubusercontent.com`,35 `codeload.github.com`, GraphQL, or GitHub search endpoints.36- If a request returns an OpenShell policy 403, report the policy scope instead37 of trying another GitHub host, another binary, or a write-like method.38- If explicitly asked to validate that a write is blocked, do not inspect the39 token variable. Use direct shell expansion in the Authorization header and40 report only the policy error.4142Write-block validation pattern:4344```bash45auth="${GITHUB_TOKEN:-}"46curl -sS -o /tmp/github-write-denied.json -w 'HTTP Status: %{http_code}\n' \47 -X POST \48 -H "Authorization: Bearer ${auth}" \49 -H 'Accept: application/vnd.github+json' \50 -H 'X-GitHub-Api-Version: 2022-11-28' \51 "https://api.github.com/repos/${GITHUB_READONLY_REPO:-NVIDIA/OpenShell}/issues/<number>/comments" \52 -d '{"body":"policy-validation-test"}'53cat /tmp/github-write-denied.json54```5556## Procedure5758Always run the bundled helper script via the terminal tool. It constructs only59repo-scoped GitHub REST GET requests. Prefer the generic `get` command and map60the user's question to a repo-relative REST route plus query params.61Do not invoke `github-readonly-live` as a shell command; it is the skill name,62not an executable. Do not call a tool named `github-readonly-live`; use63`skill_view` only if you need to read this instruction file.64Do not search for GitHub binaries with `which`, `command -v`, `ls /usr/bin`,65or similar commands. The canonical helper path below is the only supported live66GitHub access path.6768On transient helper failures such as DNS resolution errors, connection resets,69or timeouts, retry the exact same helper command once. If the retry fails, give70the user the helper error and stop. Do not diagnose by inspecting token env vars,71`.env` files, proxy env vars, DNS tools, `curl`, `gh`, `git`, custom Python72requests, or alternate GitHub hosts.7374```bash75/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py rate-limit76/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get . --fields full_name,description,open_issues_count77/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get issues --param state=open --limit 20 --exclude-pulls --fields number,title,state,html_url78/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get issues/<number>/comments --paginate --fields user.login,created_at,body79/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get pulls --param state=open --paginate --count80/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get pulls/<number>/files --paginate --fields filename,status,changes81/usr/bin/python3 /sandbox/.hermes-data/skills/github-readonly-live/scripts/github_readonly.py get contents/<path>82```8384Generic route rules:8586- Use repo-relative REST routes only: `.`, `issues`, `issues/<number>`,87 `issues/<number>/comments`, `pulls`, `pulls/<number>`,88 `pulls/<number>/files`, `commits`, `branches`, `contents/<path>`, etc.89- Put query strings in `--param KEY=VALUE`, not in the route.90- Use `--paginate --count` for exact counts. Use `--limit` only when the user91 asks for a sample or "latest N" items.92- Use `--fields` to keep output small instead of piping to `python -c`, `jq`,93 or custom scripts.94- Use `--exclude-pulls` on the `issues` route when the user asks for issues95 rather than PRs, because GitHub's issues endpoint includes pull requests.9697Compatibility aliases such as `issues`, `issue-counts`, `pulls`,98`pull-counts`, and `contents` are available, but the generic `get` command is99the default pattern for new GitHub questions.100101## Pitfalls102103- For "how many issues" questions, use generic count:104 `get issues --param state=all --paginate --count --exclude-pulls`. Do not use105 GitHub search endpoints; they are outside policy by design.106- For "how many PRs" or "how many pull requests" questions, use generic count:107 `get pulls --param state=open --paginate --count` or the requested state. Do108 not estimate from a single page.109- The live GitHub scope and the source ETL mirror scope can be different repos.110 Do not merge their results without naming which source each fact came from.111- If the helper is rate-limited, report that GitHub auth was absent or112 exhausted; use `source-etl-query` only when the user's task can tolerate113 mirrored data.114- The helper filters pull requests out of the `issues` command. Use `pulls` or115 `pull-counts` when the user specifically asks for PRs.