What problem does it solve? Deploying the Toollab stack to production involves many fragile steps: building multi-stage Docker images, tagging releases, running migrations safely, configuring workers, and wiring Traefik with TLS. This Skill consolidates the entire production release chain so nothing critical is forgotten or misconfigured. ## Core Features & Use Cases - Release pipeline documentation: Covers git tag triggers, GitHub Actions build-push workflows, and GHCR image tagging for both the API (php-fpm) and front (Nuxt SSR) repositories. - Runtime bootstrap knowledge: Explains the production entrypoint order (storage setup, APP_KEY check, migrate with retry, config/route/view caches, supervisord with 8 queue workers) and the critical php-fpm user configuration. - Infrastructure and rollback guidance: Details Traefik/Let's Encrypt routing, nginx Brotli configuration, critical environment variables, first-time instance provisioning, post-deploy verification, and rollback limits. - Use Case: Before tagging v1.4.0, consult this Skill to confirm both repositories are tagged, migrations have tested up()/down(), and the post-deploy checklist (curl /up, migrate:status, supervisorctl status) is ready. ## Quick Start Ask the assistant to walk you through deploying a new Toollab release to production using the deploiement-prod checklist.