What problem does it solve? Ad-hoc deploys often skip the two checks that catch most bad releases: confirming the codebase passes verification before shipping, and confirming the deployed service is actually healthy afterward. This Skill makes both steps mandatory and automatic, and rolls back when a healthcheck fails. ## Core Features & Use Cases - Fail-closed deploy pipeline: Runs the full verify contract first and aborts before touching the deploy command if anything is red. - Healthcheck with automatic rollback: Validates the deployed service via an HTTP endpoint or command, and runs a configured rollback command if the check fails. - Encrypted backups and audit logging: Optionally runs and AES-256-GCM-encrypts a pre-deploy backup, and logs every step to an event spine for later review. - Use Case: A CI/CD job or developer runs a single deploy entrypoint that verifies the tree, ships to production, healthchecks the service, and automatically rolls back a broken release instead of leaving it live. ## Quick Start Ask the assistant to deploy the current tree using the configured deploy command and healthcheck.