用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/emanueleielo/ciana-parrot --skill github命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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