What problem does it solve? Setting up Drizzle ORM with a Neon Postgres database involves many error-prone steps: provisioning credentials, choosing the right connection adapter, configuring environment loading, and running migrations. This Skill automates the entire workflow so you end up with working code that can immediately query the database. ## Core Features & Use Cases - Guided Setup Workflows: Step-by-step guides for new projects, existing applications, and schema-only changes, with automatic detection of your package manager, framework, and deployment target. - Adapter Selection: Automatically chooses between the HTTP adapter (Vercel, Edge, serverless) and WebSocket adapter (Express, Node.js servers) based on your environment. - Schema & Migration Automation: Generates type-safe schemas with relations, creates migration files, and runs them against your Neon database with built-in troubleshooting. - Use Case: Tell it "Setup Drizzle for my Next.js blog on Vercel" and it provisions a Neon database, installs dependencies, writes the connection config, generates a blog schema with users and posts, and applies the migrations. ## Quick Start Set up Drizzle ORM with a Neon database for my Next.js project, including a users table and migrations.