Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:3
forks:1
updated:May 6, 2026 at 16:32
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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": {}
}
}