CtrlK
BlogDocsLog inGet started
Tessl Logo

github-gh-cli

Inspect GitHub pull requests, issues, workflow runs, and API data with the gh CLI. Use when the user wants repository facts from GitHub without opening the browser, especially for PR status, CI failures, issue lists, or structured JSON output.

80

Quality

100%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

SKILL.md
Quality
Evals
Security

GitHub GH CLI

Use this skill when

Use this skill when the task is about GitHub data and gh is the fastest path:

  • pull request status or checks;
  • recent workflow runs or failed jobs;
  • issue or PR lists;
  • structured JSON output for scripting; or
  • GitHub API queries not covered by simpler commands.

Working rules

  • Prefer gh over browser navigation when command-line access is enough.
  • Prefer --json and --jq when you need structured results.
  • When outside the target repository, pass --repo owner/repo explicitly.
  • If auth is missing, ask the user to handle gh auth login; do not attempt interactive credential setup yourself.

Common commands

Pull requests

gh pr view 123 --repo owner/repo
gh pr checks 123 --repo owner/repo
gh pr list --repo owner/repo --limit 20

Actions / CI

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

Issues

gh issue list --repo owner/repo --limit 20
gh issue list --repo owner/repo --json number,title,state --jq '.[]'

API

gh api repos/owner/repo/pulls/123
gh api repos/owner/repo/issues --jq '.[].title'
Repository
huangruiteng/CS-Notes
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.