Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

ghGH 搜索

Agent Skill

gh 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,622

周安装

65

GitHub Stars

81

下载量

525
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gh(GH 搜索)
来源仓库:https://github.com/dagster-io/erk
仓库路径:skills/gh
安装命令:
npx skills add https://github.com/dagster-io/erk --skill gh
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dagster-io/erk --skill gh

简介

gh 技能全面覆盖 GitHub CLI 的使用指南,包括 PR 管理、Issue 跟踪与仓库操作等企业协作场景。

  • 适用于希望通过命令行高效处理 GitHub 工作流的开发者或 DevOps 人员。
  • 通过 /gh 命令激活,内置快速参考表帮助用户快速找到所需 gh 子命令及其参数说明。
  • 使用前需确保已安装官方 GitHub CLI 工具并配置好身份认证(如 PAT token)。
  • 本技能仅提供文档支持,不会直接执行危险操作如强制推送或删除分支。

SKILL.md

GitHub CLI (gh)

Overview

GitHub CLI (gh) is the official command-line tool for GitHub that brings pull requests, issues, releases, and other GitHub concepts to the terminal. This skill provides comprehensive guidance for using gh to streamline GitHub workflows, including PR management, issue tracking, repository operations, and API access.

When to Use This Skill

Invoke this skill when users:

  • Mention GitHub CLI (gh) commands or workflows
  • Ask about creating, viewing, or managing pull requests from the command line
  • Need help with GitHub issue management via CLI
  • Want to understand gh's mental model or command structure
  • Request guidance on GitHub automation or scripting
  • Ask about GitHub API access through gh
  • Need help with gh authentication or configuration
  • Request integration patterns between gh, git, and other tools (like erk)

Core Concepts

Before providing guidance, understand these key concepts:

Three-Layer Architecture:

  1. High-Level Commands (porcelain): gh pr, gh issue, gh repo - user-friendly workflows
  2. API Access: gh api - direct REST/GraphQL access with built-in auth
  3. Git Integration: Smart repo detection from git remotes and current branch

Context Resolution:

  • gh automatically detects repository from git remotes
  • Uses current branch to infer PR context
  • Falls back to interactive selection when ambiguous

Mental Model: Think of gh as "GitHub workflows made CLI-native" - each command maps to a common GitHub workflow optimized for terminal use.

Using the Reference Documentation

When providing gh guidance, load the comprehensive reference documentation:

references/gh.md

This reference contains:

  • Complete mental model and terminology
  • Full command reference for PRs, issues, repos, releases, and more
  • Authentication and configuration patterns
  • Workflow patterns for common scenarios
  • Integration details (erk, git, CI/CD)
  • GitHub API access patterns
  • Practical examples for daily development

Loading Strategy:

  • Always load references/gh.md when user asks gh-related questions
  • The reference is comprehensive (~1480 lines) but optimized for progressive reading
  • Use grep patterns to find specific sections when needed:

- gh pr - Pull request commands - gh issue - Issue management commands - gh repo - Repository operations - gh api - API access patterns - Pattern [0-9]: - Workflow patterns - Authentication - Auth setup - erk Integration - Integration with erk

Common Operations

When users ask for help with gh, guide them using these patterns:

First-Time Setup

  1. Check if gh is installed: gh --version
  2. Authenticate: gh auth login (interactive) or gh auth status (check current)
  3. Configure defaults: gh config set <key> <value>
  4. Test connection: gh repo view (in a git repo)

Pull Request Operations

Load references/gh.md and search for "gh pr" section to provide:

  • Creating PRs: gh pr create (interactive or with flags)
  • Viewing PRs: gh pr view, gh pr list
  • Checking out PRs: gh pr checkout <number>
  • Reviewing PRs: gh pr review, gh pr diff
  • Merging PRs: gh pr merge
  • PR status checks: gh pr checks

Issue Management

Load references/gh.md and search for "gh issue" section to provide:

  • Creating issues: gh issue create
  • Listing issues: gh issue list (with filters)
  • Viewing issues: gh issue view <number>
  • Updating issues: gh issue edit, gh issue close
  • Issue assignment and labels

Repository Operations

Load references/gh.md and search for "gh repo" section to provide:

  • Viewing repos: gh repo view
  • Cloning repos: gh repo clone
  • Creating repos: gh repo create
  • Forking repos: gh repo fork
  • Repository settings and visibility

API Access

Load references/gh.md and search for "gh api" section to provide:

  • REST API calls: gh api <endpoint>
  • GraphQL queries: gh api graphql -f query='...'
  • Pagination handling
  • JSON processing with --jq
  • Authentication details

For advanced GraphQL use cases, load references/graphql.md:

  • Projects V2 management (no REST API exists)
  • Discussion API operations
  • Batch queries across multiple repos
  • Complex nested data retrieval
  • Advanced issue search
  • See GraphQL API Reference section below

Release Management

Load references/gh.md and search for "gh release" section to provide:

  • Creating releases: gh release create
  • Listing releases: gh release list
  • Downloading assets: gh release download
  • Uploading assets: gh release upload

Workflow Guidance

When users describe their workflow needs, map them to patterns in the reference:

Pattern 1: Daily PR Workflow - Create, review, merge PRs Pattern 2: Issue Triage - List, filter, and manage issues Pattern 3: Release Automation - Script release creation and asset management Pattern 4: PR Checks and Status - Monitor CI/CD and review status Pattern 5: Multi-Repo Operations - Work across multiple repositories Pattern 6: GitHub API Scripting - Automate complex GitHub workflows Pattern 7: Code Review Workflow - Review PRs from command line

Load the appropriate pattern sections from references/gh.md based on user needs.

Output Formatting

When users need to parse or format gh output:

  1. Load the Output Formatting section from references/gh.md
  2. Explain format options: --json, --jq, --template
  3. Show JSON field selection: gh pr list --json number,title,state
  4. Demonstrate jq filtering: gh api /repos/{owner}/{repo}/pulls | jq '.[] | select(.draft==false)'
  5. Provide template examples for custom output

Authentication and Configuration

When users need auth or config help:

  1. Load the Authentication & Configuration section from references/gh.md
  2. Distinguish between:

- Authentication: gh auth login, token management - Configuration: gh config set, per-command defaults

  1. Explain authentication methods: browser, token, SSH
  2. Show common config settings: git_protocol, editor, pager
  3. Handle multiple accounts and enterprise instances

Integration Guidance

Erk Integration

When users mention erk or worktree workflows:

  • Load the Erk Integration section from references/gh.md
  • Explain how gh detects repos in worktrees
  • Show PR operations across multiple worktrees
  • Guide on using --repo flag when needed
  • Reference erk documentation for worktree-specific patterns

Git Integration

When users need to understand gh + git workflows:

  • Load the Git Integration section from references/gh.md
  • Explain repo detection from git remotes
  • Show how current branch affects PR commands
  • Demonstrate combined git + gh workflows
  • Clarify when to use git vs gh commands

CI/CD Integration

When users want to integrate gh with CI/CD:

  • Load the CI/CD patterns from references/gh.md
  • Show authentication in CI environments: GH_TOKEN
  • Provide examples of automated PR creation/merging
  • Demonstrate status check monitoring
  • Guide on release automation

Scripting and Automation

When users want to script GitHub workflows:

  1. Load the Scripting section from references/gh.md
  2. Show how to use gh in shell scripts
  3. Demonstrate error handling: --jq, exit codes
  4. Explain pagination for large datasets
  5. Provide examples of common automation patterns:

- Bulk operations across PRs/issues - Custom notifications - Release workflows - Repository management

Advanced Features

When users need advanced capabilities:

  1. Aliases: Custom commands via gh alias set
  2. Extensions: Third-party gh extensions
  3. GraphQL: Complex queries beyond REST API (see GraphQL API Reference)
  4. Webhooks: Trigger workflows (via API)
  5. GitHub Actions: Interact with workflows via gh workflow

Load the relevant sections from references/gh.md for each advanced feature.

GraphQL API Reference

When standard gh commands are insufficient, use GraphQL via gh api graphql. Load references/graphql.md for comprehensive GraphQL guidance.

When to Use GraphQL:

Use GraphQL when the porcelain commands (gh pr, gh issue, etc.) cannot accomplish the task:

  • Projects V2: No REST API exists - all operations require GraphQL

- Create/update projects - Add items and update field values - Query custom fields and project data

  • Discussions: No porcelain commands available

- Create/manage discussions - Add comments and replies - Query discussion categories

  • Batch Operations: Query multiple resources in one API call

- Compare multiple repositories - Aggregate data across repos - Reduce rate limit consumption

  • Complex Queries: Fetch nested data efficiently

- PR with reviews, comments, and status checks in one call - Issue with timeline, reactions, and linked PRs - Repository with open issues, PRs, and contributors

  • Advanced Search: Complex filtering beyond basic commands

- Multi-criteria issue/PR searches - Boolean logic and date ranges - Advanced sorting options

  • Custom Fields: Precise field selection

- Request only needed fields - Optimize for performance - Build custom data aggregations

GraphQL Resources:

  • references/graphql.md - Complete GraphQL guide including:

- Use cases requiring GraphQL - Common patterns (variables, pagination, batching, etc.) - Complete examples (Projects V2, Discussions, batch queries) - Best practices and troubleshooting

  • references/graphql-schema-core.md - Core schema types (load only when needed):

- Detailed field information for Repository, Issue, PullRequest, etc. - Projects V2 field types and mutations - Discussion types and operations - Input types and enums

Loading Strategy:

  1. Start with references/graphql.md for use cases and patterns
  2. Load references/graphql-schema-core.md only when detailed schema info is needed
  3. Use grep patterns to find specific sections:

- Projects V2 - Project automation examples - Discussion - Discussion API examples - Batch - Batch query patterns - Pagination - Cursor-based pagination - Example [0-9] - Complete working examples

Rate Limits and API Backend

When users encounter rate limit issues or need to optimize API usage:

  1. Load references/api-backend-audit.md for complete command-to-API mapping
  2. Understand the difference:

- REST: 5,000 requests/hour, counted per request - GraphQL: 5,000 points/hour, cost based on query complexity - Search: 30 requests/minute (separate limit)

  1. Key insights:

- PR/Issue commands use GraphQL (query cost varies) - Run/Workflow/Gist commands use REST (predictable cost) - Project commands require GraphQL exclusively - Search always uses REST with stricter limits

  1. Check current limits: gh api rate_limit --jq '.resources'

Troubleshooting

When users encounter issues:

  1. Check authentication: gh auth status
  2. Verify repository detection: gh repo view
  3. Test API access: gh api user
  4. Review configuration: gh config list
  5. Check rate limits: gh api rate_limit
  6. Enable debug mode: GH_DEBUG=api gh <command>

Load the Troubleshooting section from references/gh.md for specific error patterns.

Command Discovery

When users ask "what can gh do?":

  • Start with overview of main commands: pr, issue, repo, release, workflow
  • Show command help: gh <command> --help
  • Demonstrate interactive mode: most commands work interactively
  • Point to gh api for anything not covered by porcelain commands
  • Reference the full command reference in references/gh.md

Resources

references/

  • gh.md - Comprehensive GitHub CLI mental model and command reference (~1480 lines)

- Load for all standard gh command guidance - Full workflow patterns and examples - Integration patterns (erk, git, CI/CD)

  • graphql.md - GitHub GraphQL API comprehensive guide (~1000 lines)

- Load when porcelain commands are insufficient - Use cases requiring GraphQL (Projects V2, Discussions, batch queries) - Complete patterns and examples - Best practices and troubleshooting

  • graphql-schema-core.md - Core GraphQL schema types (~500 lines)

- Load only when detailed schema info needed - Detailed field definitions for core types - Mutation input types and examples

  • api-backend-audit.md - REST vs GraphQL API backend audit (~850 lines)

- Load when understanding which API type a command uses - Rate limit guidance and optimization strategies - Complete mapping of all gh commands to their API backends - Batch operation alternatives and caching strategies

These references should be loaded as needed to ensure accurate, detailed information. Use progressive disclosure: start with the main reference, then load specialized GraphQL docs when needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.44%
按下载量换算170

Claude

31.14%
按下载量换算163

Cursor

18.11%
按下载量换算95

Gemini CLI

9.43%
按下载量换算50

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills