원클릭으로
land
Land one reviewed Sprints lane when workflow merge authority is present.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Land one reviewed Sprints lane when workflow merge authority is present.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a focused commit for one Sprints lane after verification passes.
Sync the current lane branch with origin/main without losing local work.
Push a lane branch and create or update its pull request.
Review one Sprints pull request and return structured approval or required fixes.
Diagnose a blocked or failing Sprints lane using local state, logs, and runtime metadata.
| name | land |
| description | Land one reviewed Sprints lane when workflow merge authority is present. |
Use this in coder merge step after the lane input shows merge authority,
usually through the merge step label or merge signal. The runner must not
call gh pr merge directly from workflow Python; this skill owns
the landing mechanics for the assigned lane.
blocked when merge permission, CI, conflicts, or review state blocks
landing.done.closed.gh pr view.blocked with concrete blockers;
do not merge.pull skill and push the resolved branch.gh issue close.closed.code, review, and merge; add
done.{
"status": "done",
"mode": "land",
"summary": "PR landed and lane cleanup completed",
"pull_request": {
"url": "https://github.com/owner/repo/pull/123",
"number": 123,
"state": "merged",
"merged": true,
"merge_commit": "merge commit sha if known"
},
"cleanup": {
"removed_labels": ["code", "review", "merge"],
"added_labels": ["done"],
"issue_state": "closed",
"issue_url": "https://github.com/owner/repo/issues/20"
},
"checks": [],
"reviews": [],
"blockers": [],
"artifacts": {}
}
Return waiting only for bounded, retryable waits such as GitHub still
computing mergeability or checks still running.
{
"status": "waiting",
"mode": "land",
"summary": "PR is waiting for checks to finish",
"pull_request": {
"url": "https://github.com/owner/repo/pull/123",
"number": 123,
"state": "open"
},
"checks": [],
"blockers": [],
"artifacts": {}
}
{
"status": "blocked",
"mode": "land",
"summary": "PR cannot be landed yet",
"blockers": [
{
"kind": "review_required",
"command": "gh pr view",
"message": "Pull request has unresolved review feedback."
}
],
"artifacts": {
"pull_request": {}
}
}