skills/github-workflow/SKILL.md
GitHub interactions for issues, pull requests, releases, labels, and repository management via the gh CLI.
npx skillsauth add dtsong/my-claude-setup github-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 requestsdevelopment
Use when the council needs to surface organizational knowledge buried across multiple internal sources (wikis, design docs, ADRs, past tickets, postmortems, chat archives, code repos). Plans where to look, what to cross-reference, and how to synthesize findings into evidence the council can act on. Do not use for external market research (use competitive-analysis), library evaluation (use library-evaluation), or technology trend assessment (use technology-radar).
testing
Use to convert a Word .docx file to PDF and/or verify its page count. Triggers on: converting docx to pdf, rendering a document, checking how many pages a docx produces, or asserting a page-count constraint (e.g. a resume must stay 2 pages). Wraps LibreOffice headless conversion.
development
Security audit checklist for web applications. Use when reviewing, auditing, or hardening a web app's security posture. Covers rate limiting, auth headers, IP blocking, CORS, security middleware, input validation, file upload limits, ORM usage, and password hashing. Triggers on requests like "review security", "harden this app", "security audit", "check for vulnerabilities", or when building/reviewing API endpoints.
development
Interactive wizard to craft effective prompts using Claude Code best practices