One-click install
npx skills add https://github.com/Houseofmvps/ultraship --skill canary-houseofmvps
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: canary
Source: https://github.com/Houseofmvps/ultraship/tree/main/skills/canary
Command: npx skills add https://github.com/Houseofmvps/ultraship --skill canary-houseofmvps

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

After deploying code to production, teams often lack immediate visibility into whether the deploy introduced regressions, leading to user-facing outages before issues are detected. This Skill eliminates that blind spot by running automated health checks immediately post-deploy to catch problems early.

Core Features & Use Cases

  • Automated Health Checks: Runs multiple HTTP status, response time, and error pattern checks at configurable intervals to catch both immediate and delayed post-deploy failures.
  • Baseline Regression Detection: Compares current deploy metrics against a saved baseline to identify performance or behavior regressions that basic health checks might miss.
  • Incident Response Integration: Escalates critical failures to immediate rollback recommendations and integrates with the /rescue skill and Sentry for fast incident mitigation.
  • Extended Monitoring Support: Supports longer monitoring windows for risky deploys to catch delayed failures like connection pool exhaustion or cache warm-up issues.
  • Use Case: After pushing a new payment feature to production, run this Skill to confirm checkout flows are working, response times are within acceptable ranges, and no new error spikes appear before marking the deploy as successful.

Quick Start

Use the canary skill to run post-deploy health checks on your production URL right after you finish deploying your latest code changes.

Frequently Asked Questions about canary

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

FAQPage Schema
How do I automate production health checks after a deployment?

Automate production health checks by scheduling configurable HTTP status, response time, and error pattern verification immediately following web application deploys to detect site availability regressions before end users are impacted.

What is baseline regression detection for post-deploy monitoring?

Baseline regression detection for post-deploy monitoring compares current production metrics against a saved baseline to identify performance or behavior regressions that basic health checks might miss.

Does post-deploy monitoring support extended windows for delayed failures?

Post-deploy monitoring supports extended monitoring windows for risky deploys to catch delayed production failures like connection pool exhaustion or cache warm-up issues.

Can I integrate incident response tools with deployment verification?

Deployment verification integrates with incident response tools like Sentry and the rescue skill to escalate critical post-deploy failures and provide immediate rollback recommendations for fast mitigation.

Why does basic health checking miss post-deploy production regressions?

Basic health checking misses post-deploy production regressions because it lacks baseline regression comparison, failing to detect subtle performance or behavior degradations that emerge after code reaches production.