con un clic
github
Read pull requests, issues and CI checks via GitHub REST API.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Read pull requests, issues and CI checks via GitHub REST API.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Bounded auto-iteration for a prompt with explicit stop predicates.
Memory hygiene workflow to classify, deduplicate, and promote durable knowledge across local memory layers.
Bounded simplification pass for a file or hunk that preserves behavior while reducing complexity.
Turn a repeatable workflow into a reusable local SKILL.md with explicit steps, criteria, and safe defaults.
Bounded auto-debug loop for failing build/test commands with evidence-first diagnosis.
Safely update Nexo config files with read-before-write merges, schema-aware mapping, and reload/restart awareness.
| name | GitHub |
| description | Read pull requests, issues and CI checks via GitHub REST API. |
| requires | {"bins":[],"env":["GITHUB_TOKEN"]} |
Use this skill for repository operations: pull requests, issues, CI checks.
Backed by the github extension which calls the GitHub REST API directly with
a Personal Access Token. No gh CLI dependency.
git directlystatusNo arguments. Returns whether GITHUB_TOKEN is set and, if so, the
authenticated user.
pr_listrepo (string) — owner/repo. Falls back to GITHUB_DEFAULT_REPO.state (string, optional) — open|closed|all. Default open.limit (integer, optional) — 1–100, default 20.Returns {repo, state, limit, count, pulls: [{number, title, state, draft, user, head_sha, base_ref, html_url, created_at, updated_at}]}.
pr_viewrepo (string, optional)number (integer, required)Returns the raw GitHub PR object.
pr_checksrepo (string, optional)number (integer, required)Two-step: fetches the PR to get the head SHA, then fetches check-runs.
Returns {repo, number, head_sha, checks: {total_count, check_runs: [...]}}.
issue_listrepo (string, optional)state (string, optional)limit (integer, optional, 1–100)Returns issues with PRs filtered out (pull_request field absent).
status if uncertain about auth (verifies token + lists default repo).-32011 (unauthorized) → GITHUB_TOKEN is missing or invalid; ask the operator.-32013 (rate limited) → wait until the reset_at epoch in the message.repo only when different from GITHUB_DEFAULT_REPO.pr_checks over pr_view when the user asks "what is failing in PR X".