원클릭으로
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.