| name | github-ops |
| description | GitHub issue, PR, and release operations via gh CLI. Not for code review or release builds. |
| version | 1.1.0 |
| allowed-tools | ["Bash","Read"] |
GitHub Operations Skill
Use this skill when working with GitHub issues, PRs, and releases for Pake.
Golden Rule
ALWAYS use gh CLI for GitHub operations. Never use the web UI or make assumptions about state — always query first.
Issue Operations
gh issue view 123
gh issue list --state open
gh issue list --label bug
gh issue comment 123 --body "..."
gh issue close 123
PR Operations
gh pr list
gh pr view 456
gh pr checks 456
gh pr diff 456
gh api repos/tw93/Pake/pulls/456/comments
gh pr merge 456 --squash
gh pr create --title "..." --body "..."
Release Operations
gh release list
gh release view V3.10.0
gh run list --workflow=release.yml
gh run list --workflow=npm-publish.yml
gh run watch
gh run view <run-id> --log
npm view pake-cli version
npm view pake-cli@<version> dist.tarball
CI / Workflow Operations
gh run list
gh run list --workflow=release.yml
gh run list --workflow=quality-and-test.yml
gh run rerun <run-id> --failed-only
Safety Rules
- ALWAYS draft the reply first and show it to the user for approval before calling any write operation (
gh issue comment, gh pr comment, gh pr merge, gh issue close, gh release create, etc.). Approval of one draft does not extend to future comments.
- NEVER merge, close, or modify without explicit user request.
- ALWAYS query current state before taking action — never assume.
- Before replying to an issue or PR, read the body to confirm the author's language; match their language in the reply. This applies to the author, not to arbitrary thread commenters.
- Before replying that a fix is released, verify the public artifact first:
npm view pake-cli version for CLI releases or gh release view <tag> for app releases.
- Before closing an issue after release, confirm the target with
gh issue view <id> --json number,title,state,author,url and include the concrete version or upgrade command in the comment.