| name | working-github-cli |
| description | Use when working with GitHub repositories, pull requests, issues, releases, or other GitHub operations via the gh CLI |
Working with GitHub CLI
Use the gh CLI tool via the Bash tool for all GitHub operations.
Authentication & Account Issues
IMPORTANT: If you encounter "repository not found" or authentication errors:
Check authentication status:
gh auth statusIf multiple accounts are configured, try switching accounts:
gh auth switchIf not authenticated, prompt user to run:
gh auth login
Commands & Usage
See @common-commands.md for detailed command reference, examples, and common operations.
Best Practices
- Use
ghcommands instead of git+web workflows when possible - Always check
gh <command> --helpfor options - Use
--jsonflag for machine-readable output when parsing - Use heredoc for multiline bodies (PR descriptions, issue bodies)