What problem does it solve? Managing Postgres connections in serverless and edge environments is difficult because traditional drivers exhaust connections and fail on cold starts. This Skill provides patterns for using Neon serverless Postgres with proper connection pooling, edge-compatible queries, and database branching for preview environments. ## Core Features & Use Cases - Connection Pooling: Implements pooled connections using the @neondatabase/serverless Pool API to prevent connection exhaustion in serverless functions. - Edge Runtime Queries: Uses the neon serverless driver for direct SQL queries in edge runtimes like Vercel Edge Functions. - ORM Integration: Guides setup with Prisma or Drizzle ORM, database branching for preview deployments, and automated migrations. - Use Case: When deploying a Next.js app to Vercel, use this Skill to configure a Neon database with pooled connections for API routes and edge-compatible queries for edge handlers, plus a preview branch per Git branch. ## Quick Start Set up a Neon serverless Postgres database with connection pooling for my Next.js app deployed on Vercel.