Convex Authentication Setup
Implement secure authentication in Convex with user management and access
control.
When to Use
- Setting up authentication for the first time
- Implementing user management (users table, identity mapping)
- Creating authentication helper functions
- Setting up auth providers (Convex Auth, Clerk, WorkOS AuthKit, Auth0, custom
JWT)
When Not to Use
- Auth for a non-Convex backend
- Pure OAuth/OIDC documentation without a Convex implementation
- Debugging unrelated bugs that happen to surface near auth code
- The auth provider is already fully configured and the user only needs a
one-line fix
First Step: Choose the Auth Provider
Convex supports multiple authentication approaches. Do not assume a provider.
Before writing setup code:
- Ask the user which auth solution they want, unless the repository already
makes it obvious
- If the repo already uses a provider, continue with that provider unless the
user wants to switch
- If the user has not chosen a provider and the repo does not make it obvious,
ask before proceeding
Common options:
- Convex Auth - good default when
the user wants auth handled directly in Convex
- Clerk - use when the app already uses
Clerk or the user wants Clerk's hosted auth features
- WorkOS AuthKit - use when the app
already uses WorkOS or the user wants AuthKit specifically
- Auth0 - use when the app already uses
Auth0
- Custom JWT provider - use when integrating an existing auth system not covered
above
Look for signals in the repo before asking:
- Dependencies such as
@clerk/*, @workos-inc/*, @auth0/*, or Convex Auth
packages
- Existing files such as
convex/auth.config.ts, auth middleware, provider
wrappers, or login components
- Environment variables that clearly point at a provider
After Choosing a Provider
Read the provider's official guide and the matching local reference file:
The local reference files contain the concrete workflow, expected files and env
vars, gotchas, and validation checks.
Use those sources for:
- package installation
- client provider wiring
- environment variables
convex/auth.config.ts setup
- login and logout UI patterns
- framework-specific setup for React, Vite, or Next.js
For shared auth behavior, use the official Convex docs as the source of truth:
Prefer official docs over recalled steps, because provider CLIs and Convex Auth
internals change between versions. Inventing setup from memory risks outdated
patterns. For third-party providers, only add app-level user storage if the app
actually needs user documents in Convex. Not every app needs a users table.
For Convex Auth, follow the Convex Auth docs and built-in auth tables rather
than adding a parallel users table plus storeUser flow, because Convex Auth
already manages user records internally. After running provider initialization
commands, verify generated files and complete the post-init wiring steps the
provider reference calls out. Initialization commands rarely finish the entire
integration.
Core Pattern: Protecting Backend Functions
The most common auth task is checking identity in Convex functions.
// Bad: trusting a client-provided userId
export const getMyProfile = query({
args: { userId: v.id("users") },
handler: async (ctx, args) => {
return await ctx.db.get(args.userId);
},
});
// Good: verifying identity server-side
export const getMyProfile = query({
args: {},
handler: async (ctx) => {
const identity = await ctx.auth.getUserIdentity();
if (!identity) throw new Error("Not authenticated");
return await ctx.db
.query("users")
.withIndex("by_tokenIdentifier", (q) =>
q.eq("tokenIdentifier", identity.tokenIdentifier),
)
.unique();
},
});
Workflow
- Determine the provider, either by asking the user or inferring from the repo
- Ask whether the user wants local-only setup or production-ready setup now
- Read the matching provider reference file
- Follow the official provider docs for current setup details
- Follow the official Convex docs for shared backend auth behavior, user
storage, and authorization patterns
- Only add app-level user storage if the docs and app requirements call for it
- Add authorization checks for ownership, roles, or team access only where the
app needs them
- Verify login state, protected queries, environment variables, and production
configuration if requested
If the flow blocks on interactive provider or deployment setup, ask the user
explicitly for the exact human step needed, then continue after they complete
it. For UI-facing auth flows, offer to validate the real sign-up or sign-in flow
after setup is done. If the environment has browser automation tools, you can
use them. If it does not, give the user a short manual validation checklist
instead.
Reference Files
Provider References
references/convex-auth.md
references/clerk.md
references/workos-authkit.md
references/auth0.md
Checklist
1---2name: convex-setup-auth3description: Sets up Convex authentication with user management, identity mapping, and access control. Use this skill when adding login or signup to a Convex app, configuring Convex Auth, Clerk, WorkOS AuthKit, Auth0, or custom JWT providers, wiring auth.config.ts, protecting queries and mutations with ctx.auth.getUserIdentity(), creating a users table with identity mapping, or setting up role-based access control, even if the user just says "add auth" or "make it require login."4---56# Convex Authentication Setup78Implement secure authentication in Convex with user management and access9control.1011## When to Use1213- Setting up authentication for the first time14- Implementing user management (users table, identity mapping)15- Creating authentication helper functions16- Setting up auth providers (Convex Auth, Clerk, WorkOS AuthKit, Auth0, custom17 JWT)1819## When Not to Use2021- Auth for a non-Convex backend22- Pure OAuth/OIDC documentation without a Convex implementation23- Debugging unrelated bugs that happen to surface near auth code24- The auth provider is already fully configured and the user only needs a25 one-line fix2627## First Step: Choose the Auth Provider2829Convex supports multiple authentication approaches. Do not assume a provider.3031Before writing setup code:32331. Ask the user which auth solution they want, unless the repository already34 makes it obvious352. If the repo already uses a provider, continue with that provider unless the36 user wants to switch373. If the user has not chosen a provider and the repo does not make it obvious,38 ask before proceeding3940Common options:4142- [Convex Auth](https://docs.convex.dev/auth/convex-auth) - good default when43 the user wants auth handled directly in Convex44- [Clerk](https://docs.convex.dev/auth/clerk) - use when the app already uses45 Clerk or the user wants Clerk's hosted auth features46- [WorkOS AuthKit](https://docs.convex.dev/auth/authkit/) - use when the app47 already uses WorkOS or the user wants AuthKit specifically48- [Auth0](https://docs.convex.dev/auth/auth0) - use when the app already uses49 Auth050- Custom JWT provider - use when integrating an existing auth system not covered51 above5253Look for signals in the repo before asking:5455- Dependencies such as `@clerk/*`, `@workos-inc/*`, `@auth0/*`, or Convex Auth56 packages57- Existing files such as `convex/auth.config.ts`, auth middleware, provider58 wrappers, or login components59- Environment variables that clearly point at a provider6061## After Choosing a Provider6263Read the provider's official guide and the matching local reference file:6465- Convex Auth: [official docs](https://docs.convex.dev/auth/convex-auth), then66 `references/convex-auth.md`67- Clerk: [official docs](https://docs.convex.dev/auth/clerk), then68 `references/clerk.md`69- WorkOS AuthKit: [official docs](https://docs.convex.dev/auth/authkit/), then70 `references/workos-authkit.md`71- Auth0: [official docs](https://docs.convex.dev/auth/auth0), then72 `references/auth0.md`7374The local reference files contain the concrete workflow, expected files and env75vars, gotchas, and validation checks.7677Use those sources for:7879- package installation80- client provider wiring81- environment variables82- `convex/auth.config.ts` setup83- login and logout UI patterns84- framework-specific setup for React, Vite, or Next.js8586For shared auth behavior, use the official Convex docs as the source of truth:8788- [Auth in Functions](https://docs.convex.dev/auth/functions-auth) for89 `ctx.auth.getUserIdentity()`90- [Storing Users in the Convex Database](https://docs.convex.dev/auth/database-auth)91 for optional app-level user storage92- [Authentication](https://docs.convex.dev/auth) for general auth and93 authorization guidance94- [Convex Auth Authorization](https://labs.convex.dev/auth/authz) when the95 provider is Convex Auth9697Prefer official docs over recalled steps, because provider CLIs and Convex Auth98internals change between versions. Inventing setup from memory risks outdated99patterns. For third-party providers, only add app-level user storage if the app100actually needs user documents in Convex. Not every app needs a `users` table.101For Convex Auth, follow the Convex Auth docs and built-in auth tables rather102than adding a parallel `users` table plus `storeUser` flow, because Convex Auth103already manages user records internally. After running provider initialization104commands, verify generated files and complete the post-init wiring steps the105provider reference calls out. Initialization commands rarely finish the entire106integration.107108## Core Pattern: Protecting Backend Functions109110The most common auth task is checking identity in Convex functions.111112```ts113// Bad: trusting a client-provided userId114export const getMyProfile = query({115 args: { userId: v.id("users") },116 handler: async (ctx, args) => {117 return await ctx.db.get(args.userId);118 },119});120```121122```ts123// Good: verifying identity server-side124export const getMyProfile = query({125 args: {},126 handler: async (ctx) => {127 const identity = await ctx.auth.getUserIdentity();128 if (!identity) throw new Error("Not authenticated");129130 return await ctx.db131 .query("users")132 .withIndex("by_tokenIdentifier", (q) =>133 q.eq("tokenIdentifier", identity.tokenIdentifier),134 )135 .unique();136 },137});138```139140## Workflow1411421. Determine the provider, either by asking the user or inferring from the repo1432. Ask whether the user wants local-only setup or production-ready setup now1443. Read the matching provider reference file1454. Follow the official provider docs for current setup details1465. Follow the official Convex docs for shared backend auth behavior, user147 storage, and authorization patterns1486. Only add app-level user storage if the docs and app requirements call for it1497. Add authorization checks for ownership, roles, or team access only where the150 app needs them1518. Verify login state, protected queries, environment variables, and production152 configuration if requested153154If the flow blocks on interactive provider or deployment setup, ask the user155explicitly for the exact human step needed, then continue after they complete156it. For UI-facing auth flows, offer to validate the real sign-up or sign-in flow157after setup is done. If the environment has browser automation tools, you can158use them. If it does not, give the user a short manual validation checklist159instead.160161## Reference Files162163### Provider References164165- `references/convex-auth.md`166- `references/clerk.md`167- `references/workos-authkit.md`168- `references/auth0.md`169170## Checklist171172- [ ] Chosen the correct auth provider before writing setup code173- [ ] Read the relevant provider reference file174- [ ] Asked whether the user wants local-only setup or production-ready setup175- [ ] Used the official provider docs for provider-specific wiring176- [ ] Used the official Convex docs for shared auth behavior and authorization177 patterns178- [ ] Only added app-level user storage if the app actually needs it179- [ ] Did not invent a cross-provider `users` table or `storeUser` flow for180 Convex Auth181- [ ] Added authentication checks in protected backend functions182- [ ] Added authorization checks where the app actually needs them183- [ ] Clear error messages ("Not authenticated", "Unauthorized")184- [ ] Client auth provider configured for the chosen provider185- [ ] If requested, production auth setup is covered too