What problem does it solve? Preparing a project for deployment to Render or Vercel involves checking build commands, start commands, output directories, environment variables, and health checks, which is error-prone when done manually. This Skill inspects the project, verifies local readiness, and produces correct provider configuration without performing any external deploy action. ## Core Features & Use Cases - Project Inspection: Reads plans, package files, framework config, and git state to identify app type, build/start commands, runtime needs, and required env var names. - Readiness Verification: Runs local, non-destructive checks such as build, test, and smoke tests against a health path, reporting gaps instead of guessing. - Config Generation: Creates or updates render.yaml or vercel.json only when defaults are insufficient, including service type, build command, health check path, and env var names without values. - Use Case: After finishing a Next.js feature, run /release vercel to confirm the build passes, list required env vars, and get a release packet with the exact next deployment step. ## Quick Start Ask the assistant to run /release to check deployment readiness and prepare Render or Vercel configuration for this project.