agentsclimarketplace

Github

Skill yuelenghan/orbit/skills/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.

Install
npx -y skills add yuelenghan/orbit --skill github

Assembled 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.get
  • repo.config.set
  • repo.repo.list
  • repo.repo.search
  • repo.repo.get
  • repo.repo.content
  • repo.repo.default-branch.get
  • repo.branch.list
  • repo.branch.create
  • repo.pr.list
  • repo.pr.get
  • repo.pr.changes
  • repo.pr.diff
  • repo.pr.activities
  • repo.pr.create
  • repo.pr.update
  • repo.pr.comment
  • repo.pr.review-comment
  • repo.pr.approve
  • repo.commit.list
  • repo.commit.get
  • repo.commit.changes
  • repo.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

TaskCommand
Version diagnosticsBIN version
Runtime diagnosticsBIN doctor
Store configBIN config set --base-url <URL> --token <TOKEN>
Read config metadataBIN config get
List org reposBIN repo list --namespace <owner>
Get repositoryBIN repo get --namespace <owner> --repo <name>
Read file contentBIN repo content --namespace <owner> --repo <name> --path <path> [--at <ref>]
List pull requestsBIN pr list --namespace <owner> --repo <name>
Get pull requestBIN pr get --namespace <owner> --repo <name> --number <id>

BIN means the resolved launcher path in the current session.

Supporting files

  • Read references/commands.md for the packaged command surface.
  • Read references/usage.md for execution expectations and shared framework positioning.

What ships with it: 10 files

21.2 KB alongside SKILL.md, 2 of them executable

bin/

examples/

references/

Keep looking

Skills are one crate of 327,132. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.