com um clique
github-ops
GitHub issue, PR, and release operations via gh CLI. Not for code review or release builds.
Menu
GitHub issue, PR, and release operations via gh CLI. Not for code review or release builds.
Package any website into a lightweight desktop app using Pake (Tauri/Rust). Use when the user wants to: wrap a URL as a native app, build a desktop app from a website, use Pake CLI to package a page, set up proxy for a packaged app, customize app icons or bundle IDs, or mentions 'pake', 'tauri package', 'website to app', 'wrap site'. Also trigger when the user asks about Pake CLI options, proxy configuration for packaged apps, or icon handling.
Pake project adapter for Waza check/code-review. Use for TypeScript CLI, Rust/Tauri, release artifact, and CI review.
Prepare, validate, and publish a Pake release. Not for version bumps without release intent.
| 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"] |
Use this skill when working with GitHub issues, PRs, and releases for Pake.
ALWAYS use gh CLI for GitHub operations. Never use the web UI or make assumptions about state — always query first.
# View a specific issue
gh issue view 123
# List open issues
gh issue list --state open
# List issues with a label
gh issue list --label bug
# Add a comment (only with explicit user request)
gh issue comment 123 --body "..."
# Close an issue
gh issue close 123
# List open PRs
gh pr list
# View a PR
gh pr view 456
# Check PR status and CI checks
gh pr checks 456
# View PR diff
gh pr diff 456
# Read inline review comments on a PR
gh api repos/tw93/Pake/pulls/456/comments
# Merge a PR (only with explicit user request)
gh pr merge 456 --squash
# Create a PR
gh pr create --title "..." --body "..."
# List releases
gh release list
# View a specific release
gh release view V3.10.0
# Check CI runs for a tag
gh run list --workflow=release.yml
gh run list --workflow=npm-publish.yml
# Watch a running CI job
gh run watch
# View CI run logs
gh run view <run-id> --log
# Verify npm registry state after publish
npm view pake-cli version
npm view pake-cli@<version> dist.tarball
# List recent workflow runs
gh run list
# Filter by workflow
gh run list --workflow=release.yml
gh run list --workflow=quality-and-test.yml
# Re-run failed jobs
gh run rerun <run-id> --failed-only
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.npm view pake-cli version for CLI releases or gh release view <tag> for app releases.gh issue view <id> --json number,title,state,author,url and include the concrete version or upgrade command in the comment.