Github
An open-source arsenal of reusable skills for AI agents — repo understanding, code review, delivery workflows, security pentests, and plug-and-play integrations with Jira, GitHub, GitLab, Jenkins & more. Drop into Claude Code, Codex, or any skill-aware host.
npx -y skills add yuelenghan/orbit --skill githubAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the user needs GitHub repository, branch, pull request, comment, review, or commit operations through the packaged launcher and local CLI runtime.
SKILL.md
2.8 KB, 613 tokens by cl100k_base, as published. Nobody here has run it
GitHub Skill
Use this skill to operate GitHub.com and GitHub Enterprise Server repositories, branches, pull requests, reviews, and commits through the packaged launcher and local CLI runtime.
Within Orbit's shared provider framework, this skill is one implementation of the repo capability.
Runtime and execution
Always run the packaged launcher through ${GITHUB_SKILL_DIR} so it works from the user's current working directory:
- macOS/Linux:
${GITHUB_SKILL_DIR}/bin/github - Windows:
${GITHUB_SKILL_DIR}\bin\github.cmd
${GITHUB_SKILL_DIR} is a documentation placeholder, not a guaranteed shell environment variable.
Resolve BIN to a real launcher path once before the first CLI call.
Do not call node app/dist/cli.js directly.
Scope and boundaries
- Supports GitHub.com and GHES.
- CLI-mediated operations only.
- Do not call GitHub REST endpoints directly from skill content.
Capability Domain
Domain:
repo
Provides:
repo.config.getrepo.config.setrepo.repo.listrepo.repo.searchrepo.repo.getrepo.repo.contentrepo.repo.default-branch.getrepo.branch.listrepo.branch.createrepo.pr.listrepo.pr.getrepo.pr.changesrepo.pr.diffrepo.pr.activitiesrepo.pr.createrepo.pr.updaterepo.pr.commentrepo.pr.review-commentrepo.pr.approverepo.commit.listrepo.commit.getrepo.commit.changesrepo.commit.pull-requests- provider-specific workflow helpers
Config check:
github config get
Config check
Run github config get when configuration state is unknown or before the first provider-scoped task in a new session.
Quick reference
| Task | Command |
|---|---|
| Version diagnostics | BIN version |
| Runtime diagnostics | BIN doctor |
| Store config | BIN config set --base-url <URL> --token <TOKEN> |
| Read config metadata | BIN config get |
| List org repos | BIN repo list --namespace <owner> |
| Get repository | BIN repo get --namespace <owner> --repo <name> |
| Read file content | BIN repo content --namespace <owner> --repo <name> --path <path> [--at <ref>] |
| List pull requests | BIN pr list --namespace <owner> --repo <name> |
| Get pull request | BIN pr get --namespace <owner> --repo <name> --number <id> |
BIN means the resolved launcher path in the current session.
Supporting files
- Read
references/commands.mdfor the packaged command surface. - Read
references/usage.mdfor execution expectations and shared framework positioning.
What ships with it: 10 files
21.2 KB alongside SKILL.md, 2 of them executable
assets/
- runtime-bootstrap.env707 B
- version.json224 B
bin/
- githubruns4.3 KB
- github.cmdruns4.3 KB
examples/
- common-workflows.md2.2 KB
references/
- commands.md4.8 KB
- usage.md256 B
- manifest.json3.7 KB
- package.json99 B
- README.txt640 B