Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/jaylikesbunda/OSAgent --skill githubコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.