Claude Skill

github

Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download navinspire-ia-navin-navin_skills_github-e9c73a3.zip · 0 KB
Part of navinspire-ia/navin — 182 skills

Install

skills CLI npx skills add https://github.com/Navinspire-ia/navin/tree/main/navin/skills/github
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install navinspire-ia-navin@llmmart
Git git clone https://github.com/Navinspire-ia/navin.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole navinspire-ia/navin collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

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.

gh is only for the GitHub API surface (PRs, issues, CI runs, releases). For plain version-control work - commits, branches, merges, rebases, history - use the git skill instead.

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)"'
Files (navin)
  • SKILL.md 1.8 KB
    ---
    name: github
    description: "Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries."
    metadata: {"navin":{"emoji":"🐙","requires":{"bins":["gh"]},"install":[{"id":"brew","kind":"brew","formula":"gh","bins":["gh"],"label":"Install GitHub CLI (brew)"},{"id":"apt","kind":"apt","package":"gh","bins":["gh"],"label":"Install GitHub CLI (apt)"},{"id":"dnf","kind":"dnf","package":"gh","bins":["gh"],"label":"Install GitHub CLI (dnf)"},{"id":"pacman","kind":"pacman","package":"github-cli","bins":["gh"],"label":"Install GitHub CLI (pacman)"},{"id":"winget","kind":"winget","package":"GitHub.cli","bins":["gh"],"label":"Install GitHub CLI (winget)"}]}}
    ---
    
    # 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.
    
    `gh` is only for the GitHub API surface (PRs, issues, CI runs, releases). For plain version-control work - commits, branches, merges, rebases, history - use the `git` skill instead.
    
    ## Pull Requests
    
    Check CI status on a PR:
    ```bash
    gh pr checks 55 --repo owner/repo
    ```
    
    List recent workflow runs:
    ```bash
    gh run list --repo owner/repo --limit 10
    ```
    
    View a run and see which steps failed:
    ```bash
    gh run view <run-id> --repo owner/repo
    ```
    
    View logs for failed steps only:
    ```bash
    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:
    ```bash
    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:
    
    ```bash
    gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'
    ```
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related