From github
GitHub notifications — check events, workflow runs, PRs. Use when user says /github.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github:githubThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
GitHub event monitoring and queries. Parse the subcommand from ARGUMENTS.
GitHub event monitoring and queries. Parse the subcommand from ARGUMENTS.
| User Says | Action |
|---|---|
/github | github_status() — recent events summary |
/github status | github_status() — recent events summary |
/github status <repo> | github_status(repo) — events for specific repo |
/github runs | github_runs() — recent workflow runs |
/github runs --failed | github_runs(status="failure") — failed runs only |
/github runs --status <s> | github_runs(status=s) — filter by status |
/github runs <repo> | github_runs(repo=repo) — runs for specific repo |
/github prs | github_prs() — open PRs |
/github prs <repo> | github_prs(repo=repo) — open PRs for specific repo |
Keep output concise.
github_status, show events as a timeline with timestamps and links.github_runs, format as a table with name, status, conclusion, branch, and link. Highlight failures.github_prs, format as a table with number, title, author, branch, draft status, and reviewers.Channel notifications arrive as <channel source="github" type="..." repo="..." url="...">.
GITHUB_TOKEN env var or gh auth token--repos owner/repo to the server--poll-interval)npx claudepluginhub beorn/bearly --plugin githubPolls GitHub notifications and handles items that dedicated workflows miss — fork PR comments, cross-repo mentions, and stale unanswered items. Runs on a schedule.
Uses the `gh` CLI to interact with GitHub issues, pull requests, Actions runs, and API queries. Useful for checking PR CI status and debugging workflow failures.
Provides GitHub CLI commands with JSON output for AI agent workflows: PR checks/status, workflow runs/logs, issue details, repo ops.