--- name: gh description: GitHub CLI for pull requests, issues, releases, workflows, and repository operations. Use for creating PRs, managing issues, viewing repository information, and accessing GitHub URLs. --- # gh - GitHub CLI gh is the official GitHub command-line interface for interacting with GitHub repositories, issues, pull requests, and more. ## Triggers pull request, PR, issue, GitHub API, release, workflow, repository info, GitHub operations, GitHub URL ## When to Use Creating PRs, managing issues, viewing repository information, releases, accessing GitHub URLs ## Examples Create a PR for this repository I'll create a PR using gh command: `gh pr create --title "feat: add new feature" --body "Description of changes"` Show me recent issues I'll list issues with gh: `gh issue list --limit 10 --state all` Check the review comments on this PR I'll view PR comments with gh: `gh pr view --comments` Read the discussion in https://github.com/owner/repo/issues/12345 I'll fetch the issue with gh: `gh issue view 12345 --repo owner/repo --comments` Can you check what's in this PR? https://github.com/owner/repo/pull/42 I'll view the PR details with gh: `gh pr view 42 --repo owner/repo` Check the workflows in this repository I'll list workflows with gh: `gh workflow list`