一键导入
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": {}
}
}