ワンクリックで
github
Interact with GitHub repositories, issues, pull requests, releases, gists, labels, and CI/CD
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Interact with GitHub repositories, issues, pull requests, releases, gists, labels, and CI/CD
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
ElevenLabs text-to-speech, voice management, and sound effects via REST API
Send messages, manage channels, reactions, and files in Slack with declarative channel-level permissions
Summarize documents using Claude
Test skill with band config
A valid banded skill for testing with two scripts
Example banded skill demonstrating the banded skills format
| name | github |
| description | Interact with GitHub repositories, issues, pull requests, releases, gists, labels, and CI/CD |
| allowed-tools | Bash(./scripts/*) |
Manage GitHub repositories, issues, pull requests, releases, gists, labels, and CI/CD.
IMPORTANT: You MUST use ONLY the scripts provided below for ALL GitHub operations. Do NOT use gh, curl, the GitHub API directly, git commands that hit the GitHub API, or any other CLI or library. Every GitHub interaction must go through ./scripts/<script-name>. If a script doesn't exist for what you need, say so — do not work around it.
Run scripts with ./scripts/<script-name>, e.g. ./scripts/gist-list --limit=5. Use --help on any script to see its parameters.
issue-list — List issues. Input: repo, state, labels, assignee, limitissue-create — Create an issue. Input: repo, title, body, labels, assignees, milestoneissue-view — View issue details. Input: repo, number, commentsissue-comment — Comment on an issue. Input: repo, number, bodyissue-edit — Edit an issue. Input: repo, number, title, body, milestone, add_labels, remove_labels, add_assignees, remove_assigneesissue-close — Close an issue. Input: repo, number, reason, commentissue-reopen — Reopen an issue. Input: repo, number, commentpr-list — List PRs. Input: repo, state, base, head, label, limitpr-create — Create a PR. Input: repo, title, body, base, head, draft, labels, reviewers, assignees, milestonepr-view — View PR details. Input: repo, number, commentspr-diff — View PR diff. Input: repo, number, name_only, patchpr-checks — View CI checks. Input: repo, number, requiredpr-review — Review a PR. Input: repo, number, event, bodypr-merge — Merge a PR. Input: repo, number, method, delete_branchpr-close — Close a PR. Input: repo, number, comment, delete_branchrelease-create — Create a release. Input: repo, tag, title, notes, draft, prerelease, target, generate_notesrelease-list — List releases. Input: repo, limitrelease-view — View release details. Input: repo, tagrelease-delete — Delete a release. Input: repo, tag, cleanup_taglabel-list — List labels. Input: repo, limitlabel-create — Create a label. Input: repo, name, color, descriptionlabel-delete — Delete a label. Input: repo, namegist-create — Create a gist. Input: filename, content, description, publicgist-list — List your gists. Input: limit, public, secretgist-view — View gist details. Input: idgist-delete — Delete a gist. Input: idrepo-view — View repo metadata. Input: reporun-list — List workflow runs. Input: repo, limit, workflow, status, branchrun-view — View a workflow run. Input: repo, run_idsearch — Search GitHub. Input: query, type, repo, limitapi — Make any GitHub API call (REST). Use for any operation not covered by the scripts above, including getting the authenticated user (endpoint: "user"). Input: endpoint, method, body, headers