Next.js + Supabase Auth

SkillDatabases & data

Guides your agent through adding Supabase authentication to a Next.js App Router app.

Available today. Use it from your connected AI after setup.

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

  1. Use @supabase/ssr patterns for App Router integration.
  2. Use @/lib/supabase/server for server-side code and @/lib/supabase/client for client-side code.
  3. Use middleware to refresh and enforce session state on protected routes.
  4. Do not manually store or forward auth tokens in client code.
  5. Use Server Actions (or secure route handlers) for privileged auth operations.
  6. Maintain RLS assumptions; do not bypass policy boundaries.

Workflow

  1. Identify execution boundary first (server component, client component, middleware, action, or route handler).
  2. Ensure the correct Supabase client is used for that boundary.
  3. Verify middleware coverage for protected routes.
  4. Verify callback handling exchanges auth code/session correctly.
  5. Validate auth checks before sensitive reads/writes.
  6. 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 getSession blindly 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