github-cli

star 0

Expertise in managing GitHub repositories, PRs, and issues using the GitHub CLI (`gh`).

888Leonidas888 By 888Leonidas888 schedule Updated 4/13/2026

name: github-cli description: Expertise in managing GitHub repositories, PRs, and issues using the GitHub CLI (gh).

GitHub CLI Skill

This skill allows the agent to interact with GitHub repositories directly from the command line using the official GitHub CLI (gh).

Common Commands

Authentication

Check authentication status:

gh auth status

Pull Requests

List open PRs:

gh pr list

View a specific PR:

gh pr view <number-or-url>

Create a new PR:

gh pr create --title "Title" --body "Body"

Merge a PR:

gh pr merge <number-or-url> --merge

Issues

List open issues:

gh issue list

Create an issue:

gh issue create --title "Title" --body "Body"

Repository

View repository information:

gh repo view

Guidelines for Agents

  • Branching Rule: ALWAYS start new feature branches from a clean and updated main branch.
    git checkout main; git pull origin main; git checkout -b feat/your-feature-name
    
  • PR Workflow: When a PR is created, wait for the CI (GitHub Actions) to pass (Build/Test) before requesting a human review.
  • Descriptive PRs: Use --title and --body flags to explain the "why" of the changes.
  • Authentication: Always check gh auth status if you suspect authentication issues.
  • Atomic Commits: Prefer small, focused commits over large, monolithic ones.
Install via CLI
npx skills add https://github.com/888Leonidas888/SunatGREApi --skill github-cli
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator
888Leonidas888
888Leonidas888 Explore all skills →