Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →GitHub操作、自動化、APIインテグレーション、およびCI/CDワークフロー。
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 76% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 34% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 12% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 27% | 0% |
管理 GitHub 仓库,重点关注社区健康、CI 可靠性和贡献者体验。
gh auth login 配置仓库访问权限按类型和优先级对每个议题进行分类:
类型: bug, feature-request, question, documentation, enhancement, duplicate, invalid, good-first-issue
优先级: critical(破坏性/安全相关), high(重大影响), medium(锦上添花), low(外观/体验优化)
gh issue edit --add-label 应用适当的标签good-first-issue 标签duplicate 标签bash# 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?"
gh pr checks <number>gh pr view <number> --json mergeablestale 标签,评论要求更新closed-stale 标签)bash# 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 失败时:
gh run view <run-id> --log-failedbash# 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> --failed
准备发布时:
gh pr list --state merged --base maingh release createbash# 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"
bash# 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
在完成任何 GitHub 操作任务之前:
Other measured skills in the registry, with their headline benchmark lift.