用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jaylikesbunda/OSAgent --skill github命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | github |
| description | GitHub operations via `gh` CLI |
| emoji | 🐙 |
| requires | {"bins":["gh"]} |
| config | [{"name":"GITHUB_TOKEN","type":"api_key","description":"GitHub personal access token with repo scope","required":true},{"name":"DEFAULT_REPO","type":"string","description":"Default repository in owner/repo format (e.g. octocat/hello-world)","required":false}] |
| actions | [{"name":"list_issues","description":"List open issues in the configured repository","type":"http","method":"GET","url":"https://api.github.com/repos/{{ config.DEFAULT_REPO }}/issues","headers":{"Authorization":"Bearer {{ config.GITHUB_TOKEN }}","Accept":"application/vnd.github+json"},"query":{"state":"open","per_page":"10"}},{"name":"create_issue","description":"Create a new issue in the configured repository","type":"http","method":"POST","url":"https://api.github.com/repos/{{ config.DEFAULT_REPO }}/issues","headers":{"Authorization":"Bearer {{ config.GITHUB_TOKEN }}","Accept":"application/vnd.github+json"},"body":{"title":"{{ args.title }}","body":"{{ args.body }}"},"parameters":["[Truncated]","[Truncated]"]},{"name":"list_prs","description":"List open pull requests in the configured repository","type":"http","method":"GET","url":"https://api.github.com/repos/{{ config.DEFAULT_REPO }}/pulls","headers":{"Authorization":"Bearer {{ config.GITHUB_TOKEN }}","Accept":"application/vnd.github+json"},"query":{"state":"open","per_page":"10"}},{"name":"create_pr","description":"Create a new pull request in the configured repository","type":"http","method":"POST","url":"https://api.github.com/repos/{{ config.DEFAULT_REPO }}/pulls","headers":{"Authorization":"Bearer {{ config.GITHUB_TOKEN }}","Accept":"application/vnd.github+json"},"body":{"title":"{{ args.title }}","body":"{{ args.body }}","head":"{{ args.head }}","base":"{{ args.base }}"},"parameters":["[Truncated]","[Truncated]","[Truncated]","[Truncated]"]}] |
Use the GitHub REST API to manage issues and pull requests.
list_issues lists open issues in the configured repo.create_issue(title, body?) creates a new issue.list_prs lists open pull requests.create_pr(title, head, base?, body?) creates a new pull request.repo scope.GITHUB_TOKEN field in Skills settings.DEFAULT_REPO to your repository in owner/repo format.This skill does not require the gh CLI to be installed for runtime actions.
The requires: bins: ["gh"] is kept for backward compatibility with skill documentation.