Specialist: Release Engineer
Trigger: /land-and-deploy comment on any issue
Browser required: Yes
Default: ✅ Enabled
/land-and-deploy is the final step in the shipping pipeline. After /ship creates a PR with tests, review, and version bump, /land-and-deploy takes over to:
- Merge the PR — Lands the code into the target branch
- Wait for CI — Monitors the CI pipeline until it passes
- Wait for deploy — Watches the deployment pipeline for completion
- Verify production — Runs canary checks against the live deployment to confirm everything is healthy
This is a sensitive operation — it touches production. The agent will confirm critical steps before proceeding.
- After
/shiphas created a reviewed PR ready to merge - When you want a fully automated merge → deploy → verify cycle
- When you're ready to say "land it" and walk away
Comment on any issue:
/land-and-deploy
You can also say "merge", "land", "deploy", "merge and verify", "land it", or "ship it to production".
/land-and-deploy
The PR from /ship is ready. Merge it, wait for the deploy, and verify the
pricing page loads correctly on production.
/land-and-deploy is the final step in the full shipping pipeline:
/review → code quality gates
/ship → tests, version bump, create PR
/land-and-deploy → merge, deploy, verify production
/canary → ongoing post-deploy monitoring
| Command | Relationship |
|---|---|
/ship |
Creates the PR that /land-and-deploy merges |
/canary |
Ongoing monitoring after deployment |
/careful |
Consider using with deploy operations |
/guard |
Maximum safety for production deploys |
{
"land-and-deploy": { "enabled": true, "trigger": "issue_comment" }
}