What problem does it solve? Deploying to staging or production without a structured process leads to broken releases, zombie server processes, and undetected failures in API, database, or auth layers. This Skill enforces a repeatable deployment pipeline with verification at every stage. ## Core Features & Use Cases - Pre-Deployment Verification: Runs tests, lint checks, and git status validation before any deployment proceeds. - Branch-Based Routing: Maps develop branch pushes to staging and main branch merges to production via CI auto-deploy. - Post-Deploy Smoke Testing: Verifies port listening, API endpoints, Supabase connectivity, and auth middleware redirects after each deploy. - Rollback & WSL Pitfall Handling: Provides git revert rollback steps and documents WSL-specific issues like zombie next-server processes that survive shell exit. - Use Case: After merging a feature into develop, use this Skill to confirm the staging deploy succeeded by checking that port 3000 is listening, the tasks API returns data, and unauthenticated users are redirected to the login page. ## Quick Start Ask the agent to deploy the current project to staging and run the full post-deploy verification including API, Supabase, and auth checks.