一键导入
github-ops
GitHub operations via gh CLI: list/view/create/update issues and PRs, manage releases, check action runs. Destructive ops require confirmation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub operations via gh CLI: list/view/create/update issues and PRs, manage releases, check action runs. Destructive ops require confirmation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized.
Implement the SDD task list. Read tasks and design from memory, write code, run tests.
Archive all SDD artifacts for a change as a single completed record in memory.
Write the technical design for a planned change: components, interfaces, data flows, edge cases.
Explore the codebase to build context for a planned change. First phase of the SDD workflow.
Propose 2–3 solution approaches for a planned change, evaluating trade-offs and recommending one.
| name | github-ops |
| description | GitHub operations via gh CLI: list/view/create/update issues and PRs, manage releases, check action runs. Destructive ops require confirmation. |
| compatibility | opencode |
Use this skill when:
gh pr list, gh pr view, gh pr create)gh issue list, gh issue view, gh issue create)gh release list, gh release create)gh run list, gh run view)REQUIRE:
gh auth status before any operation — report to calling agent if not authenticatedgh pr checks)REJECT if:
gh auth status fails)gh pr status — check for existing PRs on the current branchgit log --oneline origin/main..HEAD — review commits to includegh pr create --title "<title>" --body "$(cat <<'EOF' ... EOF)" — create the PRgh pr list --state open — list open PRsgh pr view <number> — view PR detailsgh pr diff <number> — view PR changesgh pr checks <number> — check CI statusgh pr review <number> --approve|--comment|--request-changes — submit reviewgh issue list --state open — list open issuesgh issue view <number> — view issue detailsgh issue create --title "<title>" --body "<body>" — create issuegh issue close <number> — close issuegh issue reopen <number> — reopen issuegh release list — list releasesgh release view <tag> — view release detailsgh release create <tag> --title "<title>" --notes "<notes>" — create releasegh run list --limit 10 — recent workflow runsgh run view <run-id> — view run detailsgh run watch <run-id> — follow a running jobgh auth status returns non-zero. Report to calling agent, do not proceed.gh outputs HTTP 403/429. Report rate limit message and suggest retry delay.git remote -v shows no origin. Report to calling agent.command not found: gh. Report that github-ops requires the GitHub CLI (brew install gh / apt install gh).gh pr status shows existing PR. Report to calling agent instead of creating duplicate.