Skip to main content
Back to the directory
sickn33/antigravity-awesome-skillsSoftware EngineeringFrontend and Design

nextjs-supabase-auth

Supabase Auth integration for Next.js App Router with middleware-based session management.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
4

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill nextjs-supabase-auth
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, nextjs-supabase-auth has 4 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: sickn33/antigravity-awesome-skills. Canonical URL: https://skills.sh/sickn33/antigravity-awesome-skills/nextjs-supabase-auth.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Supabase Auth integration for Next.js App Router with middleware-based session management. Expert integration of Supabase Auth with Next.js App Router Create properly configured Supabase clients for different contexts When to use : Setting up auth in a Next.js project // lib/supabase/client.ts (Browser client) 'use client' import { createBrowserClient } from '@supabase/ssr' export function createClient() { return createBrowserClient( process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY! ) } // lib/supabase/server.ts (Server client) import { createServerClient } from '@supabase/ssr' import { cookies } from 'next/headers' export async function createClient() { const cookieStore = await cookies() return createServerClient( process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, { cookies: { getAll() { return cookieStore.getAll() }, setAll(cookiesToSet) { cookiesToSet.forEach(({ name, value, options }) => { cookieStore.set(name, value, options) }) }, }, } ) } Protect routes and refresh sessions in middleware When to use : You need route protection or session refresh // middleware.ts import { createServerClient } from '@supabase/ssr' import { NextResponse, type NextRequest } from 'next/server' export async function middleware(request: NextRequest) { let response = NextResponse.next({ request }) const supabase =...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does nextjs-supabase-auth do?

Supabase Auth integration for Next.js App Router with middleware-based session management.

Is nextjs-supabase-auth good?

nextjs-supabase-auth does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support nextjs-supabase-auth?

nextjs-supabase-auth currently lists compatibility with Skills CLI.

Is nextjs-supabase-auth safe to install?

nextjs-supabase-auth has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to nextjs-supabase-auth?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install nextjs-supabase-auth?

Run the following command to install nextjs-supabase-auth: npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill nextjs-supabase-auth

Related skills

More from sickn33/antigravity-awesome-skills

Related skills

Alternatives in Software Engineering