github

Automate GitHub operations via the gh CLI for PRs, issues, CI runs, and API queries.

109|11|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/TermiX-official/cryptoclaw --skill github-termix-official
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github
Source: https://github.com/TermiX-official/cryptoclaw/tree/main/skills/github
Command: npx skills add https://github.com/TermiX-official/cryptoclaw --skill github-termix-official

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates GitHub operations through the gh CLI from within CryptoClaw, reducing manual context switching and speeding up repository workflows.

Core Features & Use Cases

  • PR checks & status: quickly query CI status and run details for pull requests.
  • Issue & PR management: create, list, read, and manage issues and PRs across repos.
  • Workflow & API access: list workflow runs and fetch data via gh api for advanced queries.
  • Repo discovery & automation: run common operations across multiple repositories with a single command.

Quick Start

Install the GitHub CLI (gh) via brew or apt, then authenticate and start issuing commands.

  • brew install gh
  • gh auth login
  • gh pr checks 55 --repo owner/repo
  • gh run list --repo owner/repo --limit 10
  • gh run view <run-id> --repo owner/repo

Frequently Asked Questions about github

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check CI status and run details for a pull request using the GitHub CLI?

To check CI status for a pull request using the GitHub CLI, you run the `gh pr checks` command with the PR number and repository, which queries and displays the run details directly in your terminal.

Can I manage issues and PRs across multiple repositories with a single gh command?

Yes, you can manage issues and PRs across multiple repositories by running common gh CLI operations. This automation allows you to create, list, read, and manage repository workflows from a single command interface.

Do I need to install and authenticate the GitHub CLI before automating workflows?

Yes, you need to install the GitHub CLI via brew or apt and run `gh auth login` to configure authentication. These prerequisites are required before you can automate any PR, issue, or workflow operations.

How do I list and view GitHub Actions workflow runs from the terminal?

You list and view GitHub Actions workflow runs by executing `gh run list` to fetch recent runs and `gh run view <run-id>` to display detailed information for a specific run within the targeted repository.

What is the best way to fetch advanced repository data via the GitHub API?

The best way to fetch advanced repository data is by using `gh api` for advanced queries. This approach allows you to access GitHub API endpoints directly to retrieve specific workflow and repository data.

Why use CLI automation for GitHub repository workflows instead of manual context switching?

Using CLI automation for GitHub repository workflows reduces manual context switching and speeds up operations. It allows you to quickly query CI status, manage issues, and access API data without leaving your terminal.