ワンクリックで
github
Interact with GitHub repositories, pull requests, issues, and code search. Use for repo management and code exploration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Interact with GitHub repositories, pull requests, issues, and code search. Use for repo management and code exploration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Guides agents through isolated Git worktree setup, lifecycle commands, process cleanup, and per-worktree local development state. Use when creating, starting, stopping, inspecting, cleaning up, or troubleshooting Git worktree development environments or when a repository includes a worktree lifecycle CLI.
Continuously watch and fix release main CI until the branch is fully green and verified working. Use when asked to babysit CI, babysit CI release, monitor release main, run /loop for CI, run /goal until checks pass, or keep iterating until release main is green.
Fix flaky tests by repeatedly running the suite, collecting intermittent failures, and proving stability. Use when asked to fix flaky tests or require repeated/consecutive green test runs.
Manage LinkedIn messaging, profiles, posts, connections, and company pages via Unipile. Use for networking, content publishing, and lead engagement.
Scoped commit workflow with a bundled committer script that prevents accidental broad staging. Use when the user asks to commit, commit all, create a git commit, or handle commit-time staging in this repository.
Systematically QA a web application like a real user, triage issues by severity, fix scoped bugs when asked, verify fixes with evidence, and report ship readiness. Use when asked to QA, test a site or app, find bugs, test and fix, or check whether a feature works.
| name | github |
| description | Interact with GitHub repositories, pull requests, issues, and code search. Use for repo management and code exploration. |
Manage repos, PRs, issues, and search code via the GitHub REST API.
GITHUB_ACCESS_TOKEN - GitHub personal access token# List your repositories
github repos [-l limit]
# List pull requests
github prs -o <owner> -r <repo> [-s open|closed|all] [-l limit]
# Get PR details with reviews
github pr <number> -o <owner> -r <repo>
# List your PRs across repos
github my-prs [-f created|assigned|review] [-s state]
# List issues
github issues -o <owner> -r <repo> [-s state] [--labels bug,feature]
# Create an issue
github create-issue -o <owner> -r <repo> -t "Bug title" [-b "Description"] [--labels bug]
# Search code
github search -q "useState filename:*.tsx" [-l limit]
JSON arrays/objects. Example for prs:
[
{ "number": 42, "title": "Fix login", "author": "user1", "draft": false, "url": "https://github.com/..." }
]