ワンクリックで
merge-and-update
Merge the current PR, wait for merge queue/checks to complete, then switch to main and pull
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Merge the current PR, wait for merge queue/checks to complete, then switch to main and pull
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Welcome new users to DeepWork — introduce features, set up reviews, and optionally record a first workflow
Run DeepWork Reviews on the current branch — review changed files using .deepreview rules
Creates a new LearningAgent with directory structure, core-knowledge.md, and Claude Code agent file. Guides the user through initial configuration.
Runs the learning cycle on all LearningAgent sessions with pending transcripts. Identifies issues, investigates root causes, and incorporates learnings into agent definitions.
Reference documentation for DeepWork Reviews — automated code review rules using .deepreview configs and DeepSchema-generated rules
Start or continue DeepWork workflows using MCP tools
| name | merge_and_update |
| description | Merge the current PR, wait for merge queue/checks to complete, then switch to main and pull |
Merge the current branch's PR, wait for it to land, then update local main.
Merge the PR using gh pr merge --squash. Do NOT use --delete-branch as it is incompatible with merge queues. This will add it to the merge queue if one is configured.
Wait for PR checks to complete using gh pr checks --watch --fail-fast. This blocks until all PR-level checks finish or one fails.
Wait for merge queue checks — after the PR enters the merge queue, a separate merge_group workflow run is triggered. Find and watch it:
run_id=$(gh run list --event merge_group --limit 1 --json databaseId -q '.[0].databaseId')
gh run watch "$run_id" --exit-status
If no merge queue run is found (repo doesn't use a merge queue), skip this step.
Switch to main and pull:
git checkout main && git pull
Report the result to the user.
gh pr merge fails (e.g., no PR for current branch, merge conflicts), stop and report the error.