一键导入
github
Use when inspecting or changing GitHub repository data with gh or gh api, including PRs, issues, comments, checks, workflow runs, releases, or repo metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when inspecting or changing GitHub repository data with gh or gh api, including PRs, issues, comments, checks, workflow runs, releases, or repo metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Route ACP-backed agent requests through the bundled acpx backend.
Apply Vercel's React and Next.js performance optimization rules when auditing or refactoring existing React/Next.js code for waterfalls, bundle size, hydration issues, render cost, or measurable runtime performance problems.
Use when building or improving browser-facing UI where visual hierarchy, responsive layout, interaction design, motion, media, copy, or product polish is the main challenge.
将图文/视频内容发布到小红书(XHS),并支持登录检查、二维码登录辅助、搜索笔记、获取详情、评论/回复、读取内容数据和多账号/多端口运行。使用 Python/CDP 控制面。
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
Use when the user asks to find, compare, install, vet, or create skills, including Chinese requests like 技能, 找技能, 安装 skill, find-skill, find-skills, or install skill.
| name | github |
| description | Use when inspecting or changing GitHub repository data with gh or gh api, including PRs, issues, comments, checks, workflow runs, releases, or repo metadata. |
| metadata | {"crawclaw":{"emoji":"🐙","requires":{"bins":["gh"]},"install":[{"id":"brew","kind":"brew","formula":"gh","bins":["gh"],"label":"Install GitHub CLI (brew)"}]}} |
Use the gh CLI to interact with GitHub repositories, issues, PRs, and workflow runs.
gh api queries for repository data# Pull requests
gh pr list --repo owner/repo
gh pr view 55 --repo owner/repo
gh pr checks 55 --repo owner/repo
gh pr create --title "feat: add feature" --body "Description"
gh pr merge 55 --squash --repo owner/repo
# Issues
gh issue list --repo owner/repo --state open
gh issue create --title "Bug: something broken" --body "Details..."
gh issue close 42 --repo owner/repo
# Workflow runs
gh run list --repo owner/repo --limit 10
gh run view <run-id> --repo owner/repo
gh run view <run-id> --repo owner/repo --log-failed
gh run rerun <run-id> --failed --repo owner/repo
# API
gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'
--repo owner/repo when not in a git directory.gh pr commands.--json plus --jq when you need structured output.