重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
github by dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill github使用 gh CLI 与 GitHub 仓库和服务进行交互。
检查认证状态:
gh auth status
登录:
gh auth login
刷新令牌:
gh auth refresh
克隆仓库:
gh repo clone owner/repo
创建新仓库:
gh repo create my-repo --public --source=. --push
复刻仓库:
gh repo fork owner/repo --clone
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
在浏览器中查看仓库:
gh repo view --web
列出你的仓库:
gh repo list
列出议题:
gh issue list
创建议题:
gh issue create --title "Bug: Login fails" --body "Description here"
交互式创建议题:
gh issue create
查看议题:
gh issue view 123
关闭议题:
gh issue close 123
重新打开议题:
gh issue reopen 123
对议题发表评论:
gh issue comment 123 --body "Working on this"
分配议题:
gh issue edit 123 --add-assignee @me
添加标签:
gh issue edit 123 --add-label "bug,priority:high"
列出 PR:
gh pr list
创建 PR:
gh pr create --title "Add feature" --body "Description"
从当前分支创建 PR:
gh pr create --fill
查看 PR:
gh pr view 45
在浏览器中查看 PR:
gh pr view 45 --web
在本地检出 PR:
gh pr checkout 45
评审 PR:
gh pr review 45 --approve
gh pr review 45 --request-changes --body "Please fix X"
gh pr review 45 --comment --body "Looks good but..."
合并 PR:
gh pr merge 45 --squash
gh pr merge 45 --merge
gh pr merge 45 --rebase
关闭 PR:
gh pr close 45
列出 PR 检查:
gh pr checks 45
查看 PR 差异:
gh pr diff 45
列出工作流运行:
gh run list
查看运行详情:
gh run view 12345
监视运行进度:
gh run watch 12345
查看运行日志:
gh run view 12345 --log
重新运行失败的任务:
gh run rerun 12345 --failed
列出工作流:
gh workflow list
手动运行工作流:
gh workflow run deploy.yml
带输入参数运行:
gh workflow run deploy.yml -f environment=production
禁用/启用工作流:
gh workflow disable deploy.yml
gh workflow enable deploy.yml
列出发布:
gh release list
创建发布:
gh release create v1.0.0 --title "Version 1.0" --notes "Release notes"
基于标签创建:
gh release create v1.0.0 --generate-notes
上传资源:
gh release upload v1.0.0 ./dist/app.zip
下载资源:
gh release download v1.0.0
删除发布:
gh release delete v1.0.0
创建 Gist:
gh gist create file.txt --public
从标准输入创建:
echo "Hello" | gh gist create -
列出 Gists:
gh gist list
查看 Gist:
gh gist view GIST_ID
编辑 Gist:
gh gist edit GIST_ID
搜索仓库:
gh search repos "react hooks" --limit 10
搜索议题:
gh search issues "bug authentication" --repo owner/repo
搜索 PR:
gh search prs "fix memory leak" --state open
搜索代码:
gh search code "function handleAuth" --repo owner/repo
发起 API 请求:
gh api repos/owner/repo
POST 请求:
gh api repos/owner/repo/issues -f title="New issue" -f body="Description"
GraphQL 查询:
gh api graphql -f query='{ viewer { login } }'
分页结果:
gh api repos/owner/repo/issues --paginate
列出标签:
gh label list
创建标签:
gh label create "priority:high" --color FF0000 --description "High priority"
列出项目:
gh project list
查看项目:
gh project view 1
列出 SSH 密钥:
gh ssh-key list
添加 SSH 密钥:
gh ssh-key add ~/.ssh/id_ed25519.pub --title "My laptop"
列出 GPG 密钥:
gh gpg-key list
添加 GPG 密钥:
gh gpg-key add key.gpg
列出密钥:
gh secret list
设置密钥:
gh secret set MY_SECRET
从文件设置:
gh secret set MY_SECRET < secret.txt
删除密钥:
gh secret delete MY_SECRET
列出变量:
gh variable list
设置变量:
gh variable set MY_VAR --body "value"
列出已安装的扩展:
gh extension list
安装扩展:
gh extension install owner/gh-extension
浏览扩展:
gh extension browse
创建别名:
gh alias set pv 'pr view'
列出别名:
gh alias list
查看配置:
gh config list
设置默认编辑器:
gh config set editor vim
设置默认浏览器:
gh config set browser "open"
# 创建分支,提交,推送,创建 PR
git checkout -b feature/my-feature
# ... 进行更改 ...
git add . && git commit -m "Add feature"
git push -u origin feature/my-feature
gh pr create --fill
gh pr checkout 45
# ... 评审代码 ...
gh pr review --approve
gh pr merge --squash --delete-branch
gh pr checks
gh run watch
每周安装量
71
仓库
GitHub 星标数
61
首次出现
2026年1月20日
安全审计
安装于
gemini-cli55
opencode55
codex54
cursor50
github-copilot47
amp46
Use the gh CLI to interact with GitHub repositories and services.
Check auth status:
gh auth status
Login:
gh auth login
Refresh token:
gh auth refresh
Clone repository:
gh repo clone owner/repo
Create new repo:
gh repo create my-repo --public --source=. --push
Fork repository:
gh repo fork owner/repo --clone
View repo in browser:
gh repo view --web
List your repos:
gh repo list
List issues:
gh issue list
Create issue:
gh issue create --title "Bug: Login fails" --body "Description here"
Create issue interactively:
gh issue create
View issue:
gh issue view 123
Close issue:
gh issue close 123
Reopen issue:
gh issue reopen 123
Comment on issue:
gh issue comment 123 --body "Working on this"
Assign issue:
gh issue edit 123 --add-assignee @me
Add labels:
gh issue edit 123 --add-label "bug,priority:high"
List PRs:
gh pr list
Create PR:
gh pr create --title "Add feature" --body "Description"
Create PR from current branch:
gh pr create --fill
View PR:
gh pr view 45
View PR in browser:
gh pr view 45 --web
Checkout PR locally:
gh pr checkout 45
Review PR:
gh pr review 45 --approve
gh pr review 45 --request-changes --body "Please fix X"
gh pr review 45 --comment --body "Looks good but..."
Merge PR:
gh pr merge 45 --squash
gh pr merge 45 --merge
gh pr merge 45 --rebase
Close PR:
gh pr close 45
List PR checks:
gh pr checks 45
View PR diff:
gh pr diff 45
List workflow runs:
gh run list
View run details:
gh run view 12345
Watch run in progress:
gh run watch 12345
View run logs:
gh run view 12345 --log
Rerun failed jobs:
gh run rerun 12345 --failed
List workflows:
gh workflow list
Run workflow manually:
gh workflow run deploy.yml
Run with inputs:
gh workflow run deploy.yml -f environment=production
Disable/enable workflow:
gh workflow disable deploy.yml
gh workflow enable deploy.yml
List releases:
gh release list
Create release:
gh release create v1.0.0 --title "Version 1.0" --notes "Release notes"
Create from tag:
gh release create v1.0.0 --generate-notes
Upload assets:
gh release upload v1.0.0 ./dist/app.zip
Download assets:
gh release download v1.0.0
Delete release:
gh release delete v1.0.0
Create gist:
gh gist create file.txt --public
Create from stdin:
echo "Hello" | gh gist create -
List gists:
gh gist list
View gist:
gh gist view GIST_ID
Edit gist:
gh gist edit GIST_ID
Search repos:
gh search repos "react hooks" --limit 10
Search issues:
gh search issues "bug authentication" --repo owner/repo
Search PRs:
gh search prs "fix memory leak" --state open
Search code:
gh search code "function handleAuth" --repo owner/repo
Make API request:
gh api repos/owner/repo
POST request:
gh api repos/owner/repo/issues -f title="New issue" -f body="Description"
GraphQL query:
gh api graphql -f query='{ viewer { login } }'
Paginate results:
gh api repos/owner/repo/issues --paginate
List labels:
gh label list
Create label:
gh label create "priority:high" --color FF0000 --description "High priority"
List projects:
gh project list
View project:
gh project view 1
List SSH keys:
gh ssh-key list
Add SSH key:
gh ssh-key add ~/.ssh/id_ed25519.pub --title "My laptop"
List GPG keys:
gh gpg-key list
Add GPG key:
gh gpg-key add key.gpg
List secrets:
gh secret list
Set secret:
gh secret set MY_SECRET
Set from file:
gh secret set MY_SECRET < secret.txt
Delete secret:
gh secret delete MY_SECRET
List variables:
gh variable list
Set variable:
gh variable set MY_VAR --body "value"
List installed extensions:
gh extension list
Install extension:
gh extension install owner/gh-extension
Browse extensions:
gh extension browse
Create alias:
gh alias set pv 'pr view'
List aliases:
gh alias list
View config:
gh config list
Set default editor:
gh config set editor vim
Set default browser:
gh config set browser "open"
# Create branch, commit, push, create PR
git checkout -b feature/my-feature
# ... make changes ...
git add . && git commit -m "Add feature"
git push -u origin feature/my-feature
gh pr create --fill
gh pr checkout 45
# ... review code ...
gh pr review --approve
gh pr merge --squash --delete-branch
gh pr checks
gh run watch
Weekly Installs
71
Repository
GitHub Stars
61
First Seen
Jan 20, 2026
Security Audits
Gen Agent Trust HubFailSocketPassSnykWarn
Installed on
gemini-cli55
opencode55
codex54
cursor50
github-copilot47
amp46
Azure 升级评估与自动化工具 - 轻松迁移 Functions 计划、托管层级和 SKU
111,700 周安装
变异测试指南:100%杀死率确保代码质量,支持Rust/TypeScript/Python/Elixir
84 周安装
异步PR审查工具 - 基于Gemini的AI代码审查与测试自动化
63 周安装
Cloudflare Durable Objects 指南:在边缘构建有状态应用 | 协调、存储、实时通信
84 周安装
Trello自动化集成指南:通过Rube MCP实现看板管理与工作流自动化
84 周安装
Google Analytics 4 (GA4) 自动化报告与资源管理工具 - 通过 Rube MCP 实现
84 周安装
Next.js Server Actions 服务器操作完整指南:定义、表单处理与状态管理
85 周安装