What problem does it solve? Setting up a repository that depends on Vercel-linked resources often fails because developers run 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: Verifies Vercel CLI authentication, links the project via vercel link, provisions Postgres through the Neon integration, and pulls env vars before any database or dev command runs. - Secret-Safe Env Management: Generates AUTH_SECRET without printing it, stores it in Vercel, and verifies required env keys by comparing names only, never values. - Framework-Aware Setup: Handles Next.js + shadcn UI baselines and next-forge monorepos with per-app env files and pnpm migrate instead of db:push. - Use Case: You clone a Next.js repo backed by Neon Postgres and Clerk auth. The Skill links the Vercel project, adds the Neon integration, pulls .env.local, verifies all required keys, then runs db:push, db:seed, and dev in order. ## Quick Start Set up this repository by linking it to my Vercel project, provisioning the database, pulling environment variables, and starting the dev server in the correct order.