This one wires up FastAPI with Supabase by keeping auth and storage on the Supabase side while using SQLAlchemy/SQLModel for actual database queries. You get type-safe models, async sessions, and proper dependency injection for both database access and JWT validation. The setup is opinionated: structured routes, Pydantic settings, separate Supabase clients for user and admin contexts. It's built for when you want Supabase's auth and realtime features but prefer writing SQL queries through an ORM instead of the Supabase client's query builder. Includes Alembic for migrations and a clean FastAPI project structure with proper async patterns throughout.
npx skills add https://github.com/alinaqi/claude-bootstrap --skill supabase-python