一键导入
approve-pr
Approve and merge a GitHub PR. Use when you want to approve and merge the current branch's PR, or a specific PR number.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Approve and merge a GitHub PR. Use when you want to approve and merge the current branch's PR, or a specific PR number.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Address CodeRabbit or other reviewer comments on a PR to make it merge-ready.
Create a GitHub issue for vultisig-windows using the official bug/feature templates.
God-mode orchestrator. Takes a Linear ticket OR PR and handles the ENTIRE workflow end-to-end — branch creation, implementation, testing, commits, PR creation, Linear updates, OR exhaustive PR review with parallel agents. Use for complete feature delivery or deep PR audits.
Comprehensive testing guide covering unit, integration, and E2E tests. Reference for deciding what to test and how, with Vitest and Playwright patterns.
Search and analyze feature implementations in sibling iOS, Android, and backend repositories. Use when porting features or validating cross-platform parity.
Stage, commit, and optionally push changes. Use after completing a task.
| name | approve-pr |
| description | Approve and merge a GitHub PR. Use when you want to approve and merge the current branch's PR, or a specific PR number. |
| disable-model-invocation | true |
/approve-pr — approves and merges the PR for the current branch
/approve-pr 123 — approves and merges PR #123
If a PR number was passed as argument, use it. Otherwise:
gh pr view --json number --jq '.number'
gh pr view <number> --json title,state,mergeable,statusCheckRollup,reviews
state is not OPEN, abort and tell the user.mergeable is CONFLICTING, abort and tell the user to resolve conflicts first.gh pr review <number> --approve
gh pr merge <number> --squash --auto
Use --auto so it merges once all required checks pass. If the PR is already mergeable now, it merges immediately.
Print the PR URL and confirm it was approved and queued for merge.
state != OPEN--auto and let CI decide