What problem does it solve? Setting up a repository that depends on Vercel-linked resources often fails when developers run database migrations or dev servers before linking the project and pulling environment variables. This Skill enforces the correct bootstrap order so linking, env provisioning, and first-run commands happen safely. ## Core Features & Use Cases - Ordered Bootstrap Workflow: Runs preflight checks (Vercel CLI auth, project linkage), then env setup, then database and dev commands only after verification passes. - Postgres Provisioning Paths: Prefers Vercel-managed Neon integration, with dashboard and Neon CLI fallbacks when the managed flow is unavailable. - Secret-Safe Env Management: Generates AUTH_SECRET without printing it, stores it in Vercel, and verifies required env keys by name only, never exposing values. - Use Case: You clone a Next.js repo with a .env.example and Drizzle schema. The Skill links the Vercel project, adds the Neon integration, pulls env vars, verifies keys, then runs db:push, db:seed, and dev in order. ## Quick Start Ask the AI to bootstrap this repository by linking it to my Vercel project, pulling the environment variables, and running the database setup and dev server in the correct order.