一键导入
github
GitHub operations: list/create issues, PRs, check CI, manage repos. Requires GH_TOKEN.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub operations: list/create issues, PRs, check CI, manage repos. Requires GH_TOKEN.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guide for creating, updating, and managing skills. Use when: you need to extend your capabilities with a new skill, or the user asks you to create one. Skills are persistent Markdown instruction modules auto-discovered at runtime.
Send and read WhatsApp messages via the wacli CLI. Search chats, view history, send text and files to contacts or groups.
Access 1Password secrets via the op CLI: read passwords, inject secrets into commands, manage vaults. Requires desktop app integration.
Manage Apple Reminders via remindctl CLI: list, add, edit, complete, delete. Supports lists, date filters, and JSON output. Syncs to iOS devices.
Create, search, and manage Bear notes via the grizzly CLI. Supports tags, x-callback-url, and JSON output.
Control Bluesound/NAD players: discovery, playback, volume, grouping, and TuneIn radio via blu CLI.
| name | github |
| description | GitHub operations: list/create issues, PRs, check CI, manage repos. Requires GH_TOKEN. |
| requires_env | ["GH_TOKEN"] |
Manage repositories, issues, pull requests, and CI workflows on GitHub.
All requests require:
Authorization: Bearer $GH_TOKEN
Accept: application/vnd.github+json
Base URL: https://api.github.com
curl -s "https://api.github.com/repos/OWNER/REPO/issues?state=open&per_page=10" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json"
curl -s -X POST "https://api.github.com/repos/OWNER/REPO/issues" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json" \
-H "Content-Type: application/json" \
-d '{"title": "Bug: ...", "body": "Description...", "labels": ["bug"]}'
curl -s "https://api.github.com/repos/OWNER/REPO/pulls?state=open&per_page=10" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json"
curl -s -X POST "https://api.github.com/repos/OWNER/REPO/issues/NUMBER/comments" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json" \
-H "Content-Type: application/json" \
-d '{"body": "Comment text..."}'
curl -s "https://api.github.com/repos/OWNER/REPO/commits/REF/check-runs" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json"
curl -s "https://api.github.com/search/issues?q=repo:OWNER/REPO+is:open+label:bug" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json"
curl -s "https://api.github.com/user/repos?sort=updated&per_page=10" \
-H "Authorization: Bearer $GH_TOKEN" \
-H "Accept: application/vnd.github+json"
per_page and page for paginationrepo scope