Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akillness avatar

Authentication Setup

  • 25 installs
  • 40 repo stars
  • Updated August 4, 2026
  • akillness/skills-template

authentication-setup is a skill that designs or refactors product authentication setup for web apps and APIs.

About

This skill designs or refactors product authentication setup for web apps and APIs. A developer uses it to choose an auth lane (hosted, framework-native, platform-native, enterprise add-on, or self-hosted), define session versus token boundaries, and wire OAuth, passkeys, org models, and SSO/SCIM. It records callback URLs, cookie domains, and migration boundaries before implementation.

  • Chooses hosted vs framework-native vs platform-native vs self-hosted auth lanes
  • Defines sessions vs JWTs, OAuth, passkeys, and org/member models
  • Plans SSO/SCIM, callback URLs, cookie domains, and migration boundaries

Authentication Setup by the numbers

  • 25 all-time installs (skills.sh)
  • Ranked #1,554 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

authentication-setup capabilities & compatibility

Capabilities
auth setup · oauth wiring · session design · sso scim
Works with
supabase · postgres
Use cases
security audit · api development · database
Pricing
Free
From the docs

What authentication-setup says it does

Design or refactor product authentication setup for web apps and APIs.
SKILL.md
choosing hosted vs framework-native vs platform-native vs enterprise add-on vs self-hosted auth
SKILL.md
npx skills add https://github.com/akillness/skills-template --skill authentication-setup

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs25
repo stars40
Last updatedAugust 4, 2026
Repositoryakillness/skills-template

What it does

Choose and structure product authentication (hosted, framework-native, or self-hosted) including sessions, OAuth, passkeys, and SSO before implementation.

Who is it for?

Choosing an auth lane and structuring sessions, OAuth, passkeys, and SSO before implementation

Skip if: Authorization policy, general security hardening, or API contract design

When should I use this skill?

You need to pick and structure product auth (sessions, OAuth, SSO) for a real app

What you get

A chosen auth lane with clear session, provider, org, and SSO/migration boundaries ready to implement.

  • chosen auth lane
  • session and provider boundaries
  • org/member model

By the numbers

  • 5 auth lanes (hosted, framework-native, platform-native, enterprise add-on, self-hosted)
  • 4 reference support docs

Files

SKILL.mdMarkdownGitHub ↗

Authentication Setup

Use this skill when the real job is choosing and structuring product authentication for a real app, not dumping JWT snippets or pretending authentication, authorization, security hardening, and docs are all the same task.

authentication-setup owns the setup layer for:

  • choosing hosted vs framework-native vs platform-native vs enterprise add-on vs self-hosted auth
  • deciding session/cookie vs token boundaries
  • selecting login methods: email/password, magic links, social OAuth, passkeys
  • defining what user/profile/org/membership data stays app-owned
  • planning SSO/SCIM, domain mapping, and migration/cutover boundaries
  • recording callback URLs, cookie domains, preview/staging drift, and rollout notes

Read these support docs before choosing the lane or handoff:

  • references/auth-decision-matrix.md
  • references/boundary-checklist.md
  • references/session-and-deployment-notes.md
  • references/enterprise-and-migration-notes.md

When to use this skill

  • Set up auth for a new web app, SaaS product, admin app, or API-backed product
  • Decide between Clerk, Auth.js, Better Auth, Supabase Auth, Firebase Auth, Cognito, Keycloak, or similar paths
  • Add or refactor sessions, cookies, refresh-token strategy, OAuth providers, or passkeys
  • Define app-owned users, profiles, orgs, memberships, and role boundaries around an auth provider
  • Add organizations, invites, enterprise SSO, SCIM, or domain verification as the next milestone
  • Untangle auth boundaries across frontend routes, middleware, backend APIs, and database policy layers
  • Review whether the current auth stack is too vendor-coupled, too DIY, or too vague to scale safely

When not to use this skill

  • The main job is authorization policy, permission inheritance, or ABAC/ReBAC modeling → treat it as a dedicated authorization design problem and route contract semantics to api-design
  • The main job is cookie flags, CSRF, rate limiting, secret handling, abuse prevention, or general vulnerability hardening → use security-best-practices
  • The main job is API contract/interface design before auth is slotted into the API honestly → use api-design
  • The main job is developer-facing reference docs, quickstarts, or API auth docs for consumers → use api-documentation
  • The main job is backend regression coverage, login/callback testing, or role-matrix test planning → use backend-testing
  • The main job is deeper schema normalization/indexing rather than auth-owned tables and identity boundaries → use database-schema-design

Instructions

Step 1: Classify the auth job before naming vendors

Normalize the request first.

auth_setup_profile:
  app_type: saas | internal-tool | marketplace | consumer-app | api-only | mixed | unknown
  auth_lane: hosted | framework-native | platform-native | enterprise-add-on | self-hosted | unknown
  runtimes: browser | server | edge | mobile | api | mixed
  login_methods: password | magic-link | social-oauth | passkeys | sso | mixed | unknown
  identity_scope: single-user | teams-orgs | b2b-enterprise | mixed | unknown
  session_model: server-session | stateless-jwt | hybrid | unknown
  data_ownership: vendor-owned | app-owned | hybrid | unknown
  rollout_stage: greenfield | mvp | scale-up | migration | enterprise-expansion

Ask or infer: 1. What frameworks, runtimes, and deployment surfaces already exist? 2. Is the team optimizing for fastest safe launch, deeper control, enterprise support, or self-hosting? 3. Does the app only need sign-in, or also orgs, invites, roles, admin access, and customer SSO? 4. Which auth/data pieces are already fixed by the current stack?

Step 2: Choose the smallest credible auth lane

Use auth-decision-matrix.md instead of rebuilding the landscape from memory.

Default lane chooser:

  • Hosted auth when speed, prebuilt UX, providers, MFA/passkeys, and polished onboarding matter most
  • Framework-native auth when the team wants auth close to app code and app-owned data
  • Platform-native auth when Supabase/Firebase/Appwrite-style platform choices are already fixed
  • Enterprise add-on when the request includes SAML/OIDC SSO, SCIM, directory sync, or domain verification
  • Self-hosted when sovereignty, air-gapped, OSS-only, or on-prem requirements dominate

Rules: 1. Recommend one primary lane and at most one fallback. 2. If the backend platform is already fixed, evaluate platform-native first. 3. If enterprise identity is mentioned, branch there explicitly instead of flattening it into consumer login. 4. If migration or cutover risk matters, pull in enterprise-and-migration-notes.md.

Step 3: Draw the provider/app ownership boundary

Before implementation, state who owns what.

Minimum boundary packet:

  • Provider usually owns: sign-in methods, password reset/email verification, MFA/passkey ceremony, token/session issuance, enterprise federation entry points
  • Application usually owns: local user/profile records, org/workspace membership, roles/entitlements, billing-linked access, admin/support exceptions, domain-specific authorization
  • Shared edge: claims copied into tokens or sessions, webhook/user sync, callback URLs, middleware, cookie config, audit/event visibility

Use boundary-checklist.md to keep the skill from drifting into neighboring lanes.

Step 4: Choose the session and login model deliberately

Use session-and-deployment-notes.md for the detailed heuristics.

Quick defaults:

  • Server sessions / signed cookies for browser-heavy apps, SSR, and middleware-friendly auth state
  • Stateless JWTs for API-heavy and multi-service traffic where token verification is a first-class requirement
  • Hybrid when browser sessions and API/machine tokens both matter

Always record:

  • chosen login methods and why they are needed now
  • token/session lifetime and refresh strategy
  • logout/revocation expectations
  • callback URL and cookie/domain behavior across local, preview, staging, and production
  • edge/runtime constraints that may change helper availability

Step 5: Model app-owned auth data

Even hosted auth rarely removes the need for local tables.

Usually define at least:

  • users or profiles
  • organizations / workspaces if multi-tenant
  • memberships / roles
  • invitation, provisioning, or seat state if teams are invited/admin-managed

Record:

  • the stable user identifier across provider and app DB
  • which fields stay vendor-owned vs mirrored locally
  • whether permissions live in claims, local tables, or both
  • how webhook or sync failures are detected and repaired

If the request slides into broader schema design, route deeper modeling to database-schema-design.

Step 6: Branch enterprise or migration work explicitly

If the request includes SSO, SCIM, domain verification, existing-user linking, provider migration, or self-hosted cutover risk, use enterprise-and-migration-notes.md.

Name these items directly:

  • whether this is an add-on vs replacement
  • account-linking and org/domain mapping rules
  • provisioning / deprovisioning behavior
  • customer onboarding/support expectations
  • rollback boundary if the rollout or migration goes wrong

Step 7: Produce an auth setup packet

The output should help the next implementation step succeed.

Preferred packet: 1. chosen auth lane and why 2. primary stack recommendation plus fallback 3. provider/app ownership boundary 4. session + login model 5. app-owned data model outline 6. environment checklist 7. adjacent route-outs 8. open risks or migration notes

Output format

Use this structure unless the user asks for another format:

# Authentication Setup Plan

## Auth lane
- chosen lane
- why it fits

## Recommended stack
- primary option
- fallback option
- tradeoffs

## Ownership boundary
- provider owns
- app owns
- shared edge / sync points

## Session + login model
- sessions vs JWT vs hybrid
- chosen login methods
- callback/cookie/runtime notes

## App-owned data model
- users/profiles
- orgs/memberships/roles
- sync strategy

## Environment + rollout checklist
- local
- preview/staging
- production
- migration notes

## Route-outs
- adjacent skills and why

Examples

Example 1: Next.js SaaS with product auth

Input:

Set up auth for a Next.js SaaS app with email login, Google OAuth, org roles, and an admin panel.

Expected handling:

  • classify as browser/server mixed SaaS with teams/orgs
  • compare hosted vs framework-native paths instead of jumping straight into JWT snippets
  • define app-owned org/membership tables
  • note SSR/middleware/cookie boundaries
  • route security hardening and auth-flow testing to neighboring skills

Example 2: Supabase-first app

Input:

We already use Supabase. Decide what auth should live in Supabase vs our app DB, and how roles should work.

Expected handling:

  • choose platform-native lane first
  • keep provider identity separate from app-owned entitlements
  • call out RLS/authz follow-through as an adjacent design/testing concern

Example 3: Enterprise expansion or migration

Input:

We already have login. Now add enterprise SSO and SCIM for B2B customers without rewriting our whole auth stack.

Expected handling:

  • classify as enterprise add-on or migration-sensitive work, not basic consumer-login setup
  • cover account linking, org/domain mapping, and provisioning boundaries
  • avoid pretending SSO/SCIM is the same job as social login or password auth

Best practices

1. Start with the auth lane and ownership boundary, not code snippets. 2. Keep authentication setup separate from deeper authorization policy and general security hardening. 3. Assume most products still need app-owned user/org/membership tables even with hosted auth. 4. Treat enterprise SSO/SCIM and migrations as a distinct branch once B2B or cutover pressure appears. 5. Record environment-specific callback, cookie, and preview-deployment behavior early. 6. Prefer one clear primary recommendation with a fallback, not a giant vendor list. 7. Route adjacent work explicitly so authentication-setup stays reusable instead of becoming another backend catch-all.

References

Related skills

FAQ

Which auth vendors does it consider?

It weighs Clerk, Auth.js, Better Auth, Supabase Auth, Firebase Auth, Cognito, Keycloak, and similar paths.

When should I use security-best-practices instead?

When the main job is cookie flags, CSRF, rate limiting, secret handling, or general vulnerability hardening.

Securityappsecsecrets

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.