Next.js + Supabase Auth
SkillDatabases & dataGuides your agent through adding Supabase authentication to a Next.js App Router app.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Next.js + Supabase Auth skill
About this capability
Integrate Supabase Auth with Next.js App Router using middleware, callback handling, protected routes, and server/client client boundaries.
What this skill tells your AI
The instructions your AI receives, as published by asymmetric-al/core in .agents/skills/nextjs-supabase-auth/SKILL.md and read by ahel’s review.
Use this skill for authentication work in Next.js App Router with Supabase Auth.
When to Apply
Use this skill when:
- Implementing login/signup/logout and session flows
- Protecting routes with middleware
- Handling auth callback exchanges
- Wiring auth checks in Server Components, Server Actions, and route handlers
- Debugging cookie/session desync between server and client
Do not use this skill when:
- The task is primarily query/index/schema optimization (use
supabase-postgres-best-practices) - The task spans broader Supabase surface area beyond Next.js auth wiring (use
docs/ai/skills/supabase/SKILL.md) - The task is UI-only and does not change auth behavior
Core Rules
- Use
@supabase/ssrpatterns for App Router integration. - Use
@/lib/supabase/serverfor server-side code and@/lib/supabase/clientfor client-side code. - Use middleware to refresh and enforce session state on protected routes.
- Do not manually store or forward auth tokens in client code.
- Use Server Actions (or secure route handlers) for privileged auth operations.
- Maintain RLS assumptions; do not bypass policy boundaries.
Workflow
- Identify execution boundary first (server component, client component, middleware, action, or route handler).
- Ensure the correct Supabase client is used for that boundary.
- Verify middleware coverage for protected routes.
- Verify callback handling exchanges auth code/session correctly.
- Validate auth checks before sensitive reads/writes.
- Verify end-to-end login/logout/session refresh behavior.
Checklist
- Server code imports
@/lib/supabase/server - Client code imports
@/lib/supabase/client - Protected paths are covered by auth middleware
- Callback route/session exchange is correctly handled
- No service role keys in client-side code
- No manual token persistence logic added
Common Anti-Patterns
- Using browser clients in server actions
- Using server clients in client components
- Calling
getSessionblindly in server render paths without user validation - Storing JWTs manually in localStorage/cookies
Signals
- GitHub stars
- 391
- Forks
- 7
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by asymmetric-al, not supabase
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
nextjs-supabase-auth- Source
- github.com/asymmetric-al/core