在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用github
星标38
分支0
更新时间2026年2月3日 11:15
Interact with GitHub using the `gh` CLI
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Interact with GitHub using the `gh` CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Remote-control tmux sessions for interactive CLIs
Be proactive - schedule follow-ups, reminders, and check-ins
Periodic self-assessment, goal tracking, and proactive improvement
Get weather forecasts using wttr.in (no API key required)
基于 SOC 职业分类
| name | github |
| description | Interact with GitHub using the `gh` CLI |
| always | false |
| triggers | ["github","gh","pull request","pr","issue","repo","workflow","actions"] |
| requires | ["bin:gh"] |
| metadata | {"pocketrb":{"emoji":"🐙"}} |
Use the gh CLI for GitHub operations. This skill provides guidance on common GitHub workflows.
The gh CLI must be installed and authenticated:
# Install (macOS)
brew install gh
# Install (Linux)
# See https://github.com/cli/cli/blob/trunk/docs/install_linux.md
# Authenticate
gh auth login
# List PRs
gh pr list --repo owner/repo
# View PR details
gh pr view 55 --repo owner/repo
# Check PR status/checks
gh pr checks 55 --repo owner/repo
# Create PR
gh pr create --title "Title" --body "Description"
# Merge PR
gh pr merge 55 --squash --delete-branch
# Review PR
gh pr diff 55 --repo owner/repo
# List issues
gh issue list --repo owner/repo
# View issue
gh issue view 123 --repo owner/repo
# Create issue
gh issue create --title "Bug" --body "Description"
# Close issue
gh issue close 123
# List workflow runs
gh run list --repo owner/repo --limit 10
# View run details
gh run view 12345 --repo owner/repo
# Watch a run
gh run watch 12345 --repo owner/repo
# Rerun failed jobs
gh run rerun 12345 --failed
# Get PR info as JSON
gh api repos/owner/repo/pulls/55 --jq '.title'
# Get issue comments
gh api repos/owner/repo/issues/123/comments
# Create a comment
gh api repos/owner/repo/issues/123/comments -f body="Comment text"
--repo owner/repo or -R owner/repo to specify repository--json field1,field2 to get specific fields as JSON--jq '.field' to filter JSON output--web to open in browser