github-cli skill
ActiveGitHub CLI workflows for repository management, PRs, CI status, and releases.
GitHub CLIGitCI/CD
What It Does
Wraps the gh CLI for common GitHub operations. Create repos, check PRs,
view CI status, manage releases — all without leaving the terminal.
Common Workflows
Create & Push Repo
git init
git add .
git commit -m "Initial commit"
gh repo create owner/repo --public --source=. --pushCheck PR Status
gh pr list --repo owner/repo
gh pr view 123 --repo owner/repoCI Status
gh run list --repo owner/repo
gh run watch --repo owner/repoThe SSH Gotcha
If you hit SSH config errors during push, use gh auth setup-git.
It configures HTTPS with proper auth tokens, bypassing SSH entirely.