
Github Ops
- 4.2k installs
- 238k repo stars
- Updated August 5, 2026
- affaan-m/everything-claude-code
Automated GitHub repository management via gh CLI covering triage, PR review, CI debugging, release, and security operations.
About
GitHub Operations provides structured workflows for managing repositories via gh CLI, covering issue triage (classification, labeling, deduplication), pull request reviews (CI checks, merge readiness, staleness detection), CI/CD debugging (failed run diagnosis, flaky test identification), release management (changelog generation, tag creation), and security monitoring (Dependabot alerts, secret scanning). Developers activate this skill when triaging issues, reviewing PRs, debugging broken CI/CD pipelines, or preparing releases. Key workflows include searching for duplicate issues, applying priority and type labels, checking PR mergeable status and review age, viewing failed workflow logs, generating changelogs from merged PRs, and reviewing dependency and secret scanning alerts. Issue triage by type (bug, feature-request, question, documentation, enhancement, duplicate, good-first-issue) and priority (critical, high, medium, low) with label automation. PR management tracking review status, CI checks, staleness (7+ days), and mergeable state via gh CLI.
- Issue triage by type (bug, feature-request, question, documentation, enhancement, duplicate, good-first-issue) and prior
- PR management tracking review status, CI checks, staleness (7+ days), and mergeable state via gh CLI
- CI/CD debugging identifying failing steps, distinguishing flaky vs real failures, and re-running failed workflows
- Release workflow generating changelogs from merged PRs, creating releases and pre-releases with gh release create
- Security monitoring of Dependabot alerts, secret scanning, and safe dependency bump auto-merge
Github Ops by the numbers
- 4,199 all-time installs (skills.sh)
- +246 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #18 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
github-ops capabilities & compatibility
- Capabilities
- search and triage issues by keywords and type · apply labels and manage issue state · monitor pr review status and ci checks · detect and flag stale prs and issues · debug ci workflow failures and flaky tests · generate changelogs from merged prs · create releases and pre releases · monitor dependabot and secret scanning alerts
- Works with
- github
- Use cases
- code review · ci cd · security audit
- Platforms
- macOS · Windows · Linux · WSL
- Runs
- Runs locally
- Pricing
- Free
What github-ops says it does
Manage GitHub repositories with a focus on community health, CI reliability, and contributor experience.
npx skills add https://github.com/affaan-m/everything-claude-code --skill github-opsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4.2k |
|---|---|
| repo stars | ★ 238k |
| Security audit | 2 / 3 scanners passed |
| Last updated | August 5, 2026 |
| Repository | affaan-m/everything-claude-code ↗ |
What it does
Automate GitHub issue triage, PR reviews, CI debugging, and release management for open-source repositories.
Who is it for?
Open-source project maintainers, DevOps engineers managing CI/CD, teams needing consistent issue/PR workflows.
Skip if: Solo contributors, builders without CLI access, teams not using GitHub.
When should I use this skill?
User says 'check GitHub', 'triage issues', 'review PRs', 'merge', 'release', 'CI is broken', or 'Dependabot alert'.
What you get
Structured, repeatable workflows reduce manual GitHub overhead, improve response times, and maintain code quality gates pre-release.
- classified and labeled issues
- PR review status and merge readiness assessment
- CI failure root cause analysis
By the numbers
- Stale policy: issues 14+ days inactive, PRs 7+ days inactive, auto-close after 30 days
- Issue types: 8 categories (bug, feature-request, question, documentation, enhancement, duplicate, invalid, good-first-is
- Priority levels: 4 tiers (critical, high, medium, low)
Files
GitHub Operations
Manage GitHub repositories with a focus on community health, CI reliability, and contributor experience.
When to Activate
- Triaging issues (classifying, labeling, responding, deduplicating)
- Managing PRs (review status, CI checks, stale PRs, merge readiness)
- Debugging CI/CD failures
- Preparing releases and changelogs
- Monitoring Dependabot and security alerts
- Managing contributor experience on open-source projects
- User says "check GitHub", "triage issues", "review PRs", "merge", "release", "CI is broken"
Tool Requirements
- gh CLI for all GitHub API operations
- Repository access configured via
gh auth login
Issue Triage
Classify each issue by type and priority:
Types: bug, feature-request, question, documentation, enhancement, duplicate, invalid, good-first-issue
Priority: critical (breaking/security), high (significant impact), medium (nice to have), low (cosmetic)
Triage Workflow
1. Read the issue title, body, and comments 2. Check if it duplicates an existing issue (search by keywords) 3. Apply appropriate labels via gh issue edit --add-label 4. For questions: draft and post a helpful response 5. For bugs needing more info: ask for reproduction steps 6. For good first issues: add good-first-issue label 7. For duplicates: comment with link to original, add duplicate label
# Search for potential duplicates
gh issue list --search "keyword" --state all --limit 20
# Add labels
gh issue edit <number> --add-label "bug,high-priority"
# Comment on issue
gh issue comment <number> --body "Thanks for reporting. Could you share reproduction steps?"PR Management
Review Checklist
1. Check CI status: gh pr checks <number> 2. Check if mergeable: gh pr view <number> --json mergeable 3. Check age and last activity 4. Flag PRs >5 days with no review 5. For community PRs: ensure they have tests and follow conventions
Stale Policy
- Issues with no activity in 14+ days: add
stalelabel, comment asking for update - PRs with no activity in 7+ days: comment asking if still active
- Auto-close stale issues after 30 days with no response (add
closed-stalelabel)
# Find stale issues (no activity in 14+ days)
gh issue list --label "stale" --state open
# Find PRs with no recent activity
gh pr list --json number,title,updatedAt --jq '.[] | select(.updatedAt < "2026-03-01")'CI/CD Operations
When CI fails:
1. Check the workflow run: gh run view <run-id> --log-failed 2. Identify the failing step 3. Check if it is a flaky test vs real failure 4. For real failures: identify the root cause and suggest a fix 5. For flaky tests: note the pattern for future investigation
# List recent failed runs
gh run list --status failure --limit 10
# View failed run logs
gh run view <run-id> --log-failed
# Re-run a failed workflow
gh run rerun <run-id> --failedRelease Management
When preparing a release:
1. Check all CI is green on main 2. Review unreleased changes: gh pr list --state merged --base main 3. Generate changelog from PR titles 4. Create release: gh release create
# List merged PRs since last release
gh pr list --state merged --base main --search "merged:>2026-03-01"
# Create a release
gh release create v1.2.0 --title "v1.2.0" --generate-notes
# Create a pre-release
gh release create v1.3.0-rc1 --prerelease --title "v1.3.0 Release Candidate 1"Security Monitoring
# Check Dependabot alerts
gh api repos/{owner}/{repo}/dependabot/alerts --jq '.[].security_advisory.summary'
# Check secret scanning alerts
gh api repos/{owner}/{repo}/secret-scanning/alerts --jq '.[].state'
# Review and auto-merge safe dependency bumps
gh pr list --label "dependencies" --json number,title- Review and auto-merge safe dependency bumps
- Flag any critical/high severity alerts immediately
- Check for new Dependabot alerts weekly at minimum
Quality Gate
Before completing any GitHub operations task:
- all issues triaged have appropriate labels
- no PRs older than 7 days without a review or comment
- CI failures have been investigated (not just re-run)
- releases include accurate changelogs
- security alerts are acknowledged and tracked
Related skills
Forks & variants (1)
Github Ops has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.
- affaan-m - 1.4k installs
How it compares
Choose github-ops over terminal-ops when tasks specifically require GitHub.com issue, PR, release, or Actions operations via gh rather than generic shell work.
FAQ
How do I classify issues automatically?
Read issue title/body, search for duplicates with gh issue list --search, apply labels via gh issue edit --add-label with type (bug, feature-request, etc.) and priority (critical, high, medium, low).
What triggers stale issue/PR actions?
Issues: 14+ days no activity add 'stale' label; PRs: 7+ days no review/activity get flagged. Auto-close stale issues after 30 days with 'closed-stale' label.
How do I debug a failed CI run?
Use gh run view <run-id> --log-failed to see failing steps, distinguish flaky tests from real failures, then identify root cause and suggest fix or re-run with gh run rerun <run-id> --failed.
Is Github Ops safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.