> github
Interact with GitHub using the gh CLI. Create issues, open pull requests, check CI status, review PRs, manage releases, and run advanced queries. Use when a user asks to create a GitHub issue, open a PR, check CI runs, list pull requests, review a PR, search GitHub issues, or manage releases.
curl "https://skillshub.wtf/TerminalSkills/skills/github?format=md"GitHub
Overview
Interact with GitHub repositories using the gh CLI tool. Handles issues, pull requests, CI/CD runs, releases, and advanced search queries without leaving the terminal. Supports creating, listing, reviewing, and managing all core GitHub resources.
Instructions
When a user asks you to interact with GitHub, follow this process:
Step 1: Verify gh CLI is available
Run gh --version to confirm the CLI is installed. If not installed, instruct the user to install it:
# macOS
brew install gh
# Linux
sudo apt install gh # or snap install gh
# Then authenticate
gh auth login
Check authentication status with gh auth status.
Step 2: Determine the repository context
- If inside a git repo,
ghauto-detects the remote. Confirm withgh repo view --json nameWithOwner -q .nameWithOwner. - If the user specifies a repo (e.g.,
owner/repo), use the-R owner/repoflag on all commands. - If neither, ask the user which repository to target.
Step 3: Execute the requested action
Issues:
# List open issues
gh issue list
# Create an issue
gh issue create --title "Bug: login fails" --body "Steps to reproduce..."
# View issue details
gh issue view 42
# Close an issue
gh issue close 42 --comment "Fixed in #55"
# Search issues across repos
gh search issues "memory leak" --repo owner/repo --state open
Pull Requests:
# List open PRs
gh pr list
# Create a PR from the current branch
gh pr create --title "Add caching layer" --body "## Summary\n- Added Redis caching"
# View PR details including checks
gh pr view 123
# Review a PR (approve, comment, request changes)
gh pr review 123 --approve --body "Looks good"
# Merge a PR
gh pr merge 123 --squash --delete-branch
# Check out a PR locally
gh pr checkout 123
CI/CD Runs:
# List recent workflow runs
gh run list --limit 10
# View a specific run
gh run view 123456
# Watch a running workflow
gh run watch 123456
# View failed job logs
gh run view 123456 --log-failed
# Re-run failed jobs
gh run rerun 123456 --failed
Releases:
# List releases
gh release list
# Create a release from a tag
gh release create v1.2.0 --title "v1.2.0" --generate-notes
# Download release assets
gh release download v1.2.0
Advanced Queries with gh api:
# Get repo stats
gh api repos/owner/repo --jq '.stargazers_count, .forks_count'
# List PR review comments
gh api repos/owner/repo/pulls/123/comments
# Search code across GitHub
gh search code "TODO FIXME" --repo owner/repo --filename "*.ts"
Step 4: Format and present results
- Summarize results clearly. For lists, show the most relevant fields (number, title, status, author).
- For long outputs, highlight the key information rather than dumping raw output.
- When creating resources, confirm the URL of the created item.
Examples
Example 1: Create a bug report issue
User request: "Create a GitHub issue for the login timeout bug"
Actions:
gh issue create \
--title "Bug: Login times out after 30 seconds on slow connections" \
--body "## Description
Users on slow connections experience a timeout during login.
## Steps to Reproduce
1. Throttle network to Slow 3G
2. Navigate to /login
3. Submit credentials
4. Observe timeout error after 30s
## Expected Behavior
Login should succeed or show a retry option.
## Environment
- Browser: Chrome 120
- OS: macOS 14.2" \
--label "bug,priority:high"
Output: "Created issue #87: Bug: Login times out after 30 seconds on slow connections — https://github.com/owner/repo/issues/87"
Example 2: Check why CI is failing
User request: "Why is CI failing on my PR?"
Actions:
# Get the current PR
gh pr view --json number,headRefName,statusCheckRollup
# List runs for the current branch
gh run list --branch feature/my-branch --limit 5
# View the failed run logs
gh run view 789012 --log-failed
Output: Summarize the failure cause, the specific job and step that failed, and suggest a fix based on the error logs.
Example 3: Search for related issues before creating a new one
User request: "Is there already an issue about dark mode?"
Actions:
gh search issues "dark mode" --repo owner/repo --limit 10
gh issue list --search "dark mode" --state all
Output: List matching issues with their number, title, state, and labels. Recommend whether to create a new issue or comment on an existing one.
Guidelines
- Always check
gh auth statusbefore running commands if there is any doubt about authentication. - When creating PRs, use the
--bodyflag with a structured description including Summary and Test Plan sections. - For destructive operations (closing issues, merging PRs, deleting branches), confirm with the user first.
- Use
--jsonand--jqflags to extract specific fields when raw output is too verbose. - When searching, start broad and narrow down. Use
--state,--label,--authorfilters. - Prefer
gh pr createover manual git push + web UI for a streamlined workflow. - For large repos with many issues/PRs, always use
--limitto avoid overwhelming output.
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.