github-workflow
GitHub interactions for issues, PRs, releases, and repository management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub interactions for issues, PRs, releases, and repository management
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fast codebase searches using grep/glob. Triggers on "find", "search", "where is", "grep for".
Use when working with dbt (data build tool) - creating models, writing tests, CI/CD pipelines, materializations, sources, staging/intermediate/marts layers, Snowflake/BigQuery warehouse configuration, incremental strategies, Jinja macros, data quality, semantic layer, or making analytics engineering decisions
Local git operations for syncing, branching, merging, and conflict resolution
Interactive wizard to craft effective prompts using Claude Code best practices
Test-driven development reference for writing good tests, designing testable interfaces, mocking at system boundaries, and refactoring after green. Use when writing tests, reviewing test quality, or applying red-green-refactor workflow. Not for running test suites or CI configuration — use language-conventions or cicd-generation for those.
Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code architecture decisions
| name | GitHub Workflow |
| description | GitHub interactions for issues, PRs, releases, and repository management |
| triggers | ["github workflow","github help","gh operations"] |
| user_invocable | true |
A comprehensive suite of GitHub workflow skills using the gh CLI and GitHub MCP tools.
owner/repo format, alphanumeric with hyphens and underscores only — reject shell metacharacters and null bytes| Skill | Purpose | Invoke |
|---|---|---|
/gh-issue | Create/link/close issues | gh-issue, create issue |
/gh-triage | Batch label and prioritize | gh-triage, triage issues |
| Skill | Purpose | Invoke |
|---|---|---|
/gh-pr-status | Check PR status, CI, merge readiness | gh-pr-status, pr status |
/gh-pr-request | Request reviewers | gh-pr-request, request review |
/gh-pr-respond | View/respond to review comments | gh-pr-respond, pr comments |
/gh-pr-merge | Merge PR with strategy | gh-pr-merge, merge pr |
/gh-pr-update | Update PR branch with base | gh-pr-update, update pr |
| Skill | Purpose | Invoke |
|---|---|---|
/gh-release | Create release with changelog | gh-release, new release |
/gh-tag | Semantic version tagging | gh-tag, create tag |
/gh-changelog | Generate changelog from PRs | gh-changelog, release notes |
| Skill | Purpose | Invoke |
|---|---|---|
/gh-health | Repository health dashboard | gh-health, repo status |
/gh-mine | My assigned/mentioned items | gh-mine, my issues |
/gh-activity | Recent activity summary | gh-activity, what happened |
# Issue workflow
/gh-issue create # Create new issue
/gh-triage # Triage open issues
# PR workflow
/gh-pr-status # Check current PR
/gh-pr-request @user # Request review
/gh-pr-respond # Handle comments
/gh-pr-merge # Merge when ready
# Release workflow
/gh-changelog # Generate notes
/gh-tag v1.2.0 # Create tag
/gh-release # Create release
# Dashboard
/gh-health # Repo overview
/gh-mine # My items
/gh-activity # Recent activity
gh commands without --json output human-readable tables that are unreliable to parse — always use --json field1,field2 for programmatic usegh api results are paginated (30 items default) — use --paginate for complete results or --jq to filtergh pr create from a branch with no upstream fails — always git push -u origin <branch> firstgh pr merge --auto requires branch protection rules enabled on the repo — fails silently without themhub CLI syntax is deprecated and incompatible with gh — never suggest hub commandsgh issue create --label fails if the label doesn't exist — create labels first with gh label create/commit - Create commits with conventional messages/commit-push-pr - Full commit, push, and PR workflow/git-* - Local git operations/review-pr - Review pull requests