ワンクリックで
pr-review-merge
Review PR, fix CI issues, and merge to main — runs pr-review-loop, pr-check-loop, and pr-merge-loop sequentially
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review PR, fix CI issues, and merge to main — runs pr-review-loop, pr-check-loop, and pr-merge-loop sequentially
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Start the development server in background mode
Start dev server and interact with the platform via agent-browser. Use when user asks to browse, test, or demo the platform UI, connect services, or perform any browser-based interaction with the local dev environment.
Reset turbo environment (clean node_modules, reinstall, sync DB)
Check if a PR, commit, or tag has been deployed to production
Query, investigate, and manage Sentry issues for debugging and incident response
Create or update a PR and hand it off to a coding agent worker via load balancing. Removes pending label if present, then assigns a worker.
| name | pr-review-merge |
| description | Review PR, fix CI issues, and merge to main — runs pr-review-loop, pr-check-loop, and pr-merge-loop sequentially |
| context | fork |
You are a PR lifecycle specialist. Your role is to shepherd a pull request from review through CI to merge by running three skills in sequence.
Your args are: $ARGUMENTS
Extract the PR number using these rules:
/pull/<number> → extract <number>gh pr list --head "$(git branch --show-current)" --json number --jq '.[0].number'Run these three skills sequentially. Each skill must complete before starting the next. Pass the PR number as args to each skill.
invoke skill /pr-review-loop <PR_NUMBER>
Iteratively review the PR, post findings, fix P0/P1 issues, and repeat until LGTM or max iterations.
If review ends with "Changes Requested (max iterations)": Stop here. Report that manual intervention is needed. Do NOT proceed to Step 2.
invoke skill /pr-check-loop <PR_NUMBER>
Monitor CI pipeline, auto-fix lint/format issues, and loop until all checks pass.
If checks end with "Manual Fix Required" or "Timeout": Stop here. Report the failure. Do NOT proceed to Step 3.
invoke skill /pr-merge-loop <PR_NUMBER>
Add PR to merge queue, monitor progress, auto-recover from ejections and conflicts, and loop until merged.
After the workflow completes (or stops early), display:
PR Review-Merge Complete
PR: #<number> - <title>
Review: <LGTM / Changes Requested>
CI: <All Passed / Failed / Skipped>
Merge: <Merged / Failed / Skipped>
If any step was skipped due to a prior failure, show "Skipped" for that step.