Setup & Installation

Install Aj Github using the ClawHub CLI or OpenClaw CLI:

clawhub install aj-github

If the CLI is not installed:

npx clawhub@latest install aj-github

Or install with OpenClaw CLI:

openclaw skills install aj-github

View on ClawHub · View on GitHub

What This Skill Does

Aj Github is a Software Development skill for OpenClaw by aceundefeated.

GitHub Skill

Use the gh CLI to interact with GitHub. Always specify --repo owner/repo when not in a git directory, or use URLs directly.

Pull Requests

Check CI status on a PR:

gh pr checks 55 --repo owner/repo

List recent workflow runs:

gh run list --repo owner/repo --limit 10

View a run and see which steps failed:

gh run view <run-id> --repo owner/repo

View logs for failed steps only:

gh run view <run-id> --repo owner/repo --log-failed

API for Advanced Queries

The gh api command is useful for accessing data not available through other subcommands.

Get PR with specific fields:

gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'

JSON Output

Most commands support --json for structured output. You can use --jq to filter:

gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'

Version History

Latest version: 1.0.0

First published: Mar 26, 2026. Last updated: Mar 26, 2026.

1 version released.

Frequently Asked Questions

Is Aj Github free to use?
Yes. Aj Github is a free, open-source skill available on the OpenClaw Skills Registry. You can install and use it at no cost, and the source code is publicly available for review and contribution.
What languages/platforms does Aj Github support?
It runs on any platform that supports OpenClaw, including macOS, Linux, and Windows. As long as you have the OpenClaw runtime installed, Aj Github will work seamlessly across operating systems.
How do I update Aj Github?
Run openclaw skills update aj-github to get the latest version. OpenClaw will download and apply the update automatically, preserving your existing configuration.
Can I use Aj Github with other skills?
Yes. OpenClaw skills are composable — you can combine Aj Github with any other installed skill in your workflows. This allows you to build powerful multi-step automations by chaining skills together.