gh-cli

Solid

GitHub CLI (gh) for repos, issues, PRs, actions, releases. Use when working with GitHub or running gh commands.

AI & Automation 389 stars 40 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 86/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

<!-- TOC: Quick Start | THE EXACT PROMPT | Essential Commands | AGENTS.md Blurb | When to Use | References --> # gh-cli — GitHub CLI > **Core Capability:** Interact with GitHub repositories and services from the command line using `gh`. ## Quick Start ```bash # Install # macOS brew install gh # Linux (Debian/Ubuntu) curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null sudo apt update && sudo apt install gh # Check auth gh auth status # Login gh auth login # Clone repo gh repo clone owner/repo ``` --- ## THE EXACT PROMPT — Pull Request Workflow ```bash # Create PR from current branch gh pr create --fill # Create PR with title/body gh pr create --title "Add feature" --body "Description" # View PR gh pr view 45 gh pr view 45 --web # Checkout PR locally gh pr checkout 45 # Review PR gh pr review 45 --approve gh pr review 45 --request-changes --body "Please fix X" # Merge PR gh pr merge 45 --squash gh pr merge 45 --merge --delete-branch ``` --- ## THE EXACT PROMPT — Issues ```bash # List issues gh issue list # Create issue gh issue create --title "Bug: Login fails" --body "Description" # View issue gh issue view 123 # Close issue gh issue close 123 # Comment on issue...

Details

Author
boshu2
Repository
boshu2/agentops
Created
7 months ago
Last Updated
today
Language
Go
License
NOASSERTION

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category