Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

github-skillGitHub 技能

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

333

周安装

14

GitHub Stars

8

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/idanbeck/claude-skills --skill github-skill

简介

通用型 GitHub 交互技能集合模块。

  • 封装常用查询与管理接口供统一调用。
  • 降低多技能组合使用的复杂度。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 扩展功能需持续跟进上游更新维护。
  • github-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Skill - PRs & Code Review

Read, search, and manage GitHub pull requests and issues. View reviews, check CI status, track notifications.

No Setup Required

This skill uses the gh CLI which should already be authenticated. Verify with:

gh auth status

Commands

List Open PRs

python3 ~/.claude/skills/github-skill/github_skill.py prs [--repo OWNER/REPO] [--mine] [--limit N] [--state STATE]

Arguments:

  • --repo / -r - Repository in owner/repo format (optional if in git repo)
  • --mine / -m - Only show your PRs
  • --limit / -l - Number of results (default: 20)
  • --state / -s - Filter: open, closed, merged, all (default: open)

Get PR Details

python3 ~/.claude/skills/github-skill/github_skill.py pr NUMBER [--repo OWNER/REPO] [--format FORMAT]

Arguments:

  • NUMBER - PR number
  • --repo / -r - Repository
  • --format / -f - Output format: json (default) or vault (markdown for notes)

Get PR Review Comments

python3 ~/.claude/skills/github-skill/github_skill.py pr-comments NUMBER [--repo OWNER/REPO]

Get PR Reviews

python3 ~/.claude/skills/github-skill/github_skill.py pr-reviews NUMBER [--repo OWNER/REPO]

PRs Awaiting Your Review

python3 ~/.claude/skills/github-skill/github_skill.py review-requests [--repo OWNER/REPO] [--limit N]

Perfect for morning standup prep - shows all PRs where your review is requested.

List Issues

python3 ~/.claude/skills/github-skill/github_skill.py issues [--repo OWNER/REPO] [--mine] [--limit N] [--state STATE]

Get Issue Details

python3 ~/.claude/skills/github-skill/github_skill.py issue NUMBER [--repo OWNER/REPO]

List Your Repos

python3 ~/.claude/skills/github-skill/github_skill.py repos [--limit N]

Unread Notifications

python3 ~/.claude/skills/github-skill/github_skill.py notifications [--limit N]

Workflow Examples

Morning Standup Prep

# See what PRs need your review
python3 ~/.claude/skills/github-skill/github_skill.py review-requests

# Check status of your open PRs
python3 ~/.claude/skills/github-skill/github_skill.py prs --mine

This gives you:

  • PRs awaiting your review (with CI status)
  • Your open PRs (with review decisions)

Format for standup: "Review Andre's PR (EPO-428) - CI passing, needs approval"

Check Specific PR

# Get full details
python3 ~/.claude/skills/github-skill/github_skill.py pr 123 --repo epochml/epoch

# See review comments
python3 ~/.claude/skills/github-skill/github_skill.py pr-comments 123 --repo epochml/epoch

# Get vault-formatted markdown
python3 ~/.claude/skills/github-skill/github_skill.py pr 123 --repo epochml/epoch --format vault

Cross-Reference with Linear

PR titles often include Linear issue IDs (e.g., "EPO-428: Fix manifest flattening"). The skill extracts these automatically in output:

{
  "number": 123,
  "title": "EPO-428: Fix manifest flattening",
  "linear_id": "EPO-428",
  ...
}

Use with Linear skill:

# Get PR details
python3 ~/.claude/skills/github-skill/github_skill.py pr 123 --repo epochml/epoch

# Get Linear issue details
python3 ~/.claude/skills/linear-skill/linear_skill.py issue EPO-428

Output

All commands output JSON by default. The --format vault option (for pr command) outputs markdown suitable for Obsidian notes:

## PR #123: EPO-428: Fix manifest flattening

**Status:** OPEN, Changes Requested
**Author:** @andre
**Linear:** EPO-428
**Link:** [epochml/epoch#123](https://github.com/epochml/epoch/pull/123)

### Checks
- CI: OK
- lint: OK

### Reviews
- @idan: CHANGES_REQUESTED - "Need to handle edge case..."

Output Fields

PR List Output

{
  "number": 123,
  "title": "EPO-428: Fix manifest flattening",
  "author": {"login": "andre"},
  "state": "OPEN",
  "reviewDecision": "CHANGES_REQUESTED",
  "linear_id": "EPO-428",
  "checks_summary": "5 passed, 1 pending",
  "url": "https://github.com/epochml/epoch/pull/123"
}

Review Decision Values

  • APPROVED - Ready to merge
  • CHANGES_REQUESTED - Needs work
  • REVIEW_REQUIRED - Waiting for review
  • null - No reviews yet

Requirements

  • gh CLI installed and authenticated
  • Python 3.9+

Security Notes

  • Uses existing gh CLI authentication
  • No credentials stored in this skill
  • Inherits permissions from gh auth status

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.68%
按下载量换算40

Claude

30.63%
按下载量换算36

Cursor

16.04%
按下载量换算19

Gemini CLI

9.11%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills