Automate GitHub repositories, issues, pull requests, branches, CI/CD, and permissions via gh CLI. Manage code workflows, review PRs, search code, and handle deployments programmatically.
Automates GitHub repository management, pull requests, issues, and CI/CD workflows using the gh CLI.
/plugin marketplace add https://www.claudepluginhub.com/api/plugins/aventerica89-claude-codex/marketplace.json/plugin install aventerica89-claude-codex@cpd-aventerica89-claude-codexThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Automate GitHub repository management, issue tracking, pull request workflows, branch operations, and CI/CD using the gh CLI.
# List issues
gh issue list --state open --limit 20
# Create issue
gh issue create --title "Bug: login fails" --body "Steps to reproduce..." --label bug
# Add comment
gh issue comment 42 --body "Fixed in PR #43"
# Search issues
gh search issues "auth error" --repo owner/repo
Tips:
gh issue list returns both issues AND PRs; filter with --label# List PRs
gh pr list --state open
# Create PR
gh pr create --title "feat: add auth" --body "## Summary..."
# Review PR
gh pr diff 42
gh pr review 42 --approve
# Merge PR (verify CI first)
gh pr checks 42
gh pr merge 42 --squash
Tips:
gh pr checks# List repos
gh repo list --limit 20
# Create repo
gh repo create my-app --private --clone
# List branches
gh api repos/owner/repo/branches --jq '.[].name'
# Create branch from current
git checkout -b feature/new-thing
git push -u origin feature/new-thing
# Search code
gh search code "API_KEY" --repo owner/repo
# List commits
gh api repos/owner/repo/commits --jq '.[].commit.message' | head -20
# Get commit details
gh api repos/owner/repo/commits/SHA
Tips:
# List workflows
gh workflow list
# Trigger workflow
gh workflow run ci.yml --ref main
# Check run status
gh run list --workflow ci.yml --limit 5
# View run logs
gh run view RUN_ID --log
# List collaborators
gh api repos/owner/repo/collaborators --jq '.[].login'
# Check permissions
gh api repos/owner/repo/collaborators/username/permission --jq '.permission'
# Branch protection
gh api repos/owner/repo/branches/main/protection
| Task | Command |
|---|---|
| List repos | gh repo list |
| Create issue | gh issue create |
| List PRs | gh pr list |
| Create PR | gh pr create |
| Merge PR | gh pr merge |
| Check CI | gh pr checks |
| Search code | gh search code |
| List workflows | gh workflow list |
| Trigger workflow | gh workflow run |
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.