Technical & DevelopmentBeginner
auth0-quickstart
Set up an Auth0 account, create applications, and configure SDKs.
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/auth0/agent-skills --skill auth0-quickstartnpx skills add https://github.com/auth0/agent-skills --skill auth0-quickstartOr paste this URL into your assistant to install:
Overview
What This Skill Does
Detect your framework and get started with Auth0 authentication.
Application
When to use this Skill
- Adding secure Auth0 authentication to a Quickstart application
- Implementing standard login, logout, and token authentication flows in Quickstart
- Managing user session state and securing frontend/backend routes using Auth0 SDKs
Documentation
Show Skills.md file
Auth0 Quickstart
Detect your framework and get started with Auth0 authentication.
Step 1: Detect Your Framework
Run this command to identify your framework:
# Check package.json dependencies (Node.js projects)
cat package.json | grep -E "react|next|vue|nuxt|angular|express|fastify|@nestjs|expo"
# Or check project files
ls -la | grep -E "angular.json|vue.config.js|next.config|app.json|Package.swift|build.gradle"
Framework Detection Table:
| Framework | Detection | Skill to Use |
|---|---|---|
| React (Vite/CRA) | "react" in package.json, no Next.js |
auth0-react |
| Next.js | "next" in package.json |
auth0-nextjs |
| Vue.js | "vue" in package.json, no Nuxt |
auth0-vue |
Lines 1 - 25 of 255
Recommendations