Automates PR landing by syncing with main, resolving conflicts, and verifying CI health.

Install

mkdir -p .claude/skills/land-sushaantu && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15439" && unzip -o skill.zip -d .claude/skills/land-sushaantu && rm skill.zip

Installs to .claude/skills/land-sushaantu

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Land a PR by monitoring conflicts, resolving them, waiting for checks, and
74 chars · catalog descriptionno explicit “when” trigger
Beginner

Key capabilities

  • Ensure the PR is conflict-free with `main`.
  • Keep CI green and fix failures when they occur.
  • Squash-merge the PR once checks pass.
  • Locate the PR for the current branch.
  • Watch checks until complete.

How it works

The skill monitors the PR for conflicts and CI status, resolving issues and merging when all conditions are met. It uses `gh pr merge --squash` to perform the final merge.

Inputs & outputs

You give it
A pull request on the current branch
You get back
A squash-merged PR on `main`

When to use land

  • Land PR
  • Merge code to main
  • Fix CI on PR

About this skill

Land

Goals

  • Ensure the PR is conflict-free with main.
  • Keep CI green and fix failures when they occur.
  • Squash-merge the PR once checks pass.
  • Do not yield until the PR is merged unless blocked.

Preconditions

  • gh CLI is authenticated.
  • You are on the PR branch with a clean working tree.

Steps

  1. Locate the PR for the current branch.
  2. Confirm the full gauntlet is green locally before any push:
    • bun run lint
    • bun run test
    • bun run test:e2e for user-facing changes
  3. If the working tree has uncommitted changes, commit with the commit skill and push with the push skill before proceeding.
  4. Check mergeability and conflicts against main.
  5. If conflicts exist, use the pull skill to merge origin/main, resolve conflicts, and then use the push skill to publish the updated branch.
  6. Ensure review comments are acknowledged and any required fixes are handled before merging.
  7. Watch checks until complete.
  8. If checks fail, inspect logs, fix the issue, commit, push, and restart the watch.
  9. When all checks are green and review feedback is addressed, squash-merge the PR.

Commands

branch=$(git branch --show-current)
pr_number=$(gh pr view --json number -q .number)
pr_title=$(gh pr view --json title -q .title)
pr_body=$(gh pr view --json body -q .body)
mergeable=$(gh pr view --json mergeable -q .mergeable)

if [ "$mergeable" = "CONFLICTING" ]; then
  echo "Run the pull skill, resolve conflicts, then push the branch again."
  exit 1
fi

python3 .codex/skills/land/land_watch.py

gh pr merge --squash --subject "$pr_title" --body "$pr_body"

Failure handling

  • If checks fail, inspect gh pr checks and gh run view --log, fix the issue locally, commit, push, and rerun the watch.
  • If mergeability is UNKNOWN, wait and re-check.
  • Do not merge while actionable review comments remain unresolved.

When not to use it

  • When the PR is already merged.
  • When the PR is blocked and cannot be merged.

Prerequisites

`gh` CLI is authenticated.You are on the PR branch with a clean working tree.

Limitations

  • Does not merge if actionable review comments remain unresolved.
  • Requires `gh` CLI authentication.
  • Does not merge if the PR is in a `CONFLICTING` state without manual intervention.

How it compares

This skill automates the conflict resolution, CI monitoring, and squash-merge process, unlike manually performing each step.

Compared to similar skills

land side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
land (this skill)02moReviewBeginner
github-workflow-automation112moReviewAdvanced
testing-workflow169moReviewIntermediate
github-actions-templates74moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

Search skills

Search the agent skills registry