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
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
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>