land-and-deploy

Merge pull requests, wait for CI and deployment, and verify production health.

3|14|Updated Mar 10, 2026
One-click install
npx skills add https://github.com/cegit27/moodle-proctor --skill land-and-deploy-cegit27
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: land-and-deploy
Source: https://github.com/cegit27/moodle-proctor/tree/main/.claude/skills/gstack/land-and-deploy
Command: npx skills add https://github.com/cegit27/moodle-proctor --skill land-and-deploy-cegit27

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Shipping code to production is stressful and error-prone. You have to merge the PR, wait for tests and deployment, and then check if the site is actually working. This skill handles the entire landing and deploy sequence so you don't have to babysit pipelines or manually verify canary health.

Core Features & Use Cases

  • End-to-End Deploy Workflow: Automatically merges the PR, waits for CI to pass, waits for deployment to finish, and verifies production health.
  • Canary Health Checks: Confirms the production environment is stable before marking the deploy as successful.
  • Use Case: You just finished a code review and ran /ship to create a PR. Instead of manually merging and watching the deploy, run this skill to land the code and get a verified production status.

Quick Start

Use the land-and-deploy skill to merge the current pull request, wait for CI and deployment to complete, and verify that production is healthy via canary checks.

Frequently Asked Questions about land-and-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate a git merge and deployment workflow?

Automating a git merge and deployment workflow requires a tool to merge pull requests, wait for CI to pass, monitor deployment completion, and verify production health. This handles the entire sequence to prevent manually babysitting pipelines.

What is a canary deployment health check and when do I need it?

A canary deployment health check verifies that the production environment remains stable after new code is deployed to a subset of traffic. You need it to confirm production health and automatically mark the deploy as successful before full rollout.

What do I need to verify production health after a CI/CD pipeline finishes?

To verify production health after a CI/CD pipeline finishes, you need access to Git, CI/CD systems, and production health check endpoints. These integrations allow automated wait and verify operations to confirm the environment is stable.

Can I use an automated PR merge tool with my existing continuous integration pipelines?

Yes, you can use an automated PR merge tool with existing continuous integration pipelines if the tool has access to your Git repositories and CI/CD systems. It triggers the merge, waits for CI to pass, and then monitors the deployment.

Why does my production deployment need automated verification after merging?

Production deployments need automated verification after merging because shipping code is error-prone. Automated canary checks confirm the production environment is stable after deployment, catching issues that manual monitoring might miss.