github
Create issues, pull requests, and manage GitHub repositories. Use when asked to create GitHub issues, open PRs, list repositories, or star repos.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create issues, pull requests, and manage GitHub repositories. Use when asked to create GitHub issues, open PRs, list repositories, or star repos.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test and document API endpoints - validate responses, check status, generate examples
Full company intelligence report - overview, team, funding, products, news
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
| name | github |
| description | Create issues, pull requests, and manage GitHub repositories. Use when asked to create GitHub issues, open PRs, list repositories, or star repos. |
Create issues, pull requests, and manage repositories on GitHub. Connect your GitHub account to interact with repos, create issues, open PRs, and manage your GitHub workflow.
orth CLICreate a new issue in a GitHub repository.
orth run github /create-issue --body '{
"owner": "username",
"repo": "repository-name",
"title": "Bug: Login form validation error",
"body": "When submitting invalid email, no error message appears."
}'
Parameters:
owner (required) - Repository owner username or organizationrepo (required) - Repository nametitle (required) - Issue titlebody - Issue description and detailslabels - Array of label names to applyassignees - Array of usernames to assignmilestone - Milestone number to associate withGet a list of repositories for the authenticated user or organization.
orth run github /list-repos --body '{
"type": "owner",
"sort": "updated",
"per_page": 20
}'
Parameters:
sort - Sort repositories by (created, updated, pushed, full_name)type - Repository type (all, owner, public, private, member)direction - Sort direction (asc, desc)per_page - Number of repositories per pagepage - Page number for paginationsince - Only repos updated after this datebefore - Only repos updated before this dateraw_response - Return raw GitHub API response (true/false)Open a new pull request between branches.
orth run github /create-pr --body '{
"owner": "username",
"repo": "repository-name",
"head": "feature-branch",
"base": "main",
"title": "Add new feature",
"body": "This PR adds the requested feature with tests."
}'
Parameters:
owner (required) - Repository owner username or organizationrepo (required) - Repository namehead (required) - Branch containing changes (source branch)base (required) - Branch to merge into (target branch)title - Pull request titlebody - Pull request descriptiondraft - Create as draft PR (true/false)issue - Issue number to convert to PRhead_repo - Repository containing head branch (for forks)maintainer_can_modify - Allow maintainers to edit (true/false)Star a GitHub repository to bookmark it.
orth run github /star-repo --body '{
"owner": "octocat",
"repo": "Hello-World"
}'
Parameters:
owner (required) - Repository owner username or organizationrepo (required) - Repository name to starCreate bug report:
orth run github /create-issue -b '{"owner":"myorg","repo":"webapp","title":"Login button not working","body":"Steps to reproduce:\n1. Go to login page\n2. Click login button\n3. Nothing happens","labels":["bug","frontend"]}'
Create feature request:
orth run github /create-issue -b '{"owner":"team","repo":"api","title":"Add user authentication","body":"We need JWT-based authentication for the API","labels":["enhancement"],"assignees":["developer1"]}'
List your repositories:
orth run github /list-repos -b '{"type":"owner","sort":"updated","per_page":10}'
Create pull request:
orth run github /create-pr -b '{"owner":"myorg","repo":"project","head":"fix/login-bug","base":"main","title":"Fix login validation bug","body":"Resolves #123\n\nFixed validation logic for email input field."}'
Create draft PR:
orth run github /create-pr -b '{"owner":"team","repo":"app","head":"feature/new-ui","base":"develop","title":"New UI components","draft":true}'
Star useful repository:
orth run github /star-repo -b '{"owner":"microsoft","repo":"vscode"}'