This is a solid foundation for building Next.js apps with Supabase authentication and Drizzle ORM for database queries. It sets up the right separation of concerns: Drizzle handles your type-safe data access while Supabase manages auth, storage, and realtime features. The structure keeps server and client Supabase instances properly isolated, includes middleware for protecting routes, and organizes everything into a clean app router layout with separate auth and dashboard sections. Use this when you want Supabase's auth infrastructure but prefer Drizzle's developer experience for querying your Postgres database over Supabase's own client libraries.
npx skills add https://github.com/alinaqi/claude-bootstrap --skill supabase-nextjs