用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/xenoterracide/agent-skills --skill github命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | github |
| description | Use when interacting with GitHub repositories, issues, pull requests, review comments, or GraphQL operations. |
| license | CC-BY-NC-SA-4.0 |
| metadata | {"copyright":"Caleb Cushing"} |
This skill covers GitHub platform tools and APIs — MCP tools, the gh CLI,
and GraphQL queries. It is GitHub-specific; for commit/push/PR workflow
mechanics (which are platform-agnostic), use the pull-request skill instead.
pull_request_read, issue_write)gh command when MCP tools are unavailableGH_PAGER=cat with CLI commandsWhen MCP tools are unavailable, use gh api graphql for operations not covered by REST API:
gh api graphql -f query='
query {
repository(owner: "OWNER", name: "REPO") {
pullRequest(number: N) {
reviewThreads(first: 100) {
nodes {
id
isResolved
comments(first: 1) {
nodes {
id
body
author { login }
}
}
}
}
}
}
}' --jq '.data.repository.pullRequest.reviewThreads.nodes | map(select(.isResolved == false))'
gh api graphql -f query='
mutation {
addPullRequestReviewThreadReply(
input: {
pullRequestReviewThreadId: "THREAD_ID"
body: "Fixed in commit SHA"
}
) {
comment { id }
}
}'