Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jaylikesbunda/OSAgent --skill github명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.