GitHub CLI operations for repository and workflow management. USE FOR: gh repo, gh pr, gh issue, gh workflow, GitHub API, repository management, pull request automation. DO NOT USE FOR: Azure DevOps (use @ado-integration), Terraform (use terraform-cli), Kubernetes (use kubectl-cli).
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
GitHub CLI operations for repository and workflow management. USE FOR: gh repo, gh pr, gh issue, gh workflow, GitHub API, repository management, pull request automation. DO NOT USE FOR: Azure DevOps (use @ado-integration), Terraform (use terraform-cli), Kubernetes (use kubectl-cli).
When to Use
GitHub API operations
Pull request management
Workflow triggering
Issue management
Prerequisites
GitHub CLI installed and authenticated
Appropriate repository permissions
For GitHub Enterprise Managed Users, user accounts are governed by the enterprise IdP. Use GitHub App or token credentials for Backstage technical integration even when Backstage sign-in uses Microsoft Entra ID.
Commands
Authentication
# Check auth status
gh auth status
# Login
gh auth login
# List workflows
gh workflow list
# Run workflow
gh workflow run <workflow-name>
# View workflow run
gh run view <run-id>
# Watch workflow run
gh run watch <run-id>
Issue Operations
# Create issue
gh issue create --title "Title" --body "Description"# List issues
gh issue list
# Close issue
gh issue close <number>