AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Auth0 Docs

skill-pledgeandgrow-pledge-skills-auth0 · by pledgeandgrow

|

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-pledgeandgrow-pledge-skills-auth0

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pledgeandgrow-pledge-skills-auth0)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Auth0 Docs? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Auth0 Skill

> Auth0 — Identity platform for authentication, authorization, and user management. > Version: Latest | Docs: auth0.com/docs

Quick Reference

| Topic | File | Sections | |-------|------|----------| | Getting Started | getting-started.md | Overview, identity fundamentals, quickstarts, configure Auth0, auth flows, architecture | | Authentication | authentication.md | Universal Login, passwordless, identity providers (social/enterprise/database), protocols (OAuth 2.0, OIDC, SAML), custom token exchange, sessions, cookies | | Customize & Secure | customize-secure.md | Branding, login pages, custom domains, emails, Actions, Rules, Hooks, Forms, tokens (ID/Access/Refresh/JWT), MFA, attack protection, compliance | | Manage & Deploy | manage-deploy.md | User accounts, metadata, migration, search, organizations, RBAC, APIs, SDKs, CLI, Terraform, deployment, monitoring, logs, AI |

Core Concepts

  • Tenant: Auth0 account with unique domain (yourtenant.auth0.com)
  • Application: Client app (SPA, Web, Native, M2M) registered with Auth0
  • API: Protected resource server with scopes
  • Connection: Identity source (database, social, enterprise, passwordless)
  • Universal Login: Auth0-hosted authentication pages (recommended)
  • Token: Credential after authentication (ID Token, Access Token, Refresh Token)
  • Action: Custom Node.js code executed during auth flows (replaces Rules/Hooks)
  • Organization: B2B customer grouping with per-org connections and branding
  • Scope: Permission granted to a client app (e.g., read:items)

Authentication Flows

| Flow | Use Case | |------|----------| | Authorization Code Flow | Server-side web apps | | Authorization Code Flow with PKCE | SPAs, mobile apps | | Client Credentials Flow | Machine-to-machine | | Device Authorization Flow | Input-constrained devices | | Resource Owner Password Flow | Highly-trusted apps (not recommended) | | Implicit Flow with Form Post | Legacy SPAs (deprecated) | | Hybrid Flow | Need ID token immediately + code exchange | | CIBA | Backchannel-initiated authentication | | Custom Token Exchange (RFC 8693) | Token swapping, delegation |

Key Endpoints

| Endpoint | Purpose | |----------|---------| | GET /authorize | Authorization endpoint (user login) | | POST /oauth/token | Token endpoint (exchange code, get tokens) | | GET /userinfo | Get user profile with Access Token | | GET /.well-known/openid-configuration | OIDC discovery document | | GET /.well-known/jwks.json | JSON Web Key Set for JWT verification | | GET /v2/logout | Logout endpoint | | POST /dbconnections/change_password | Password reset | | POST /oauth/revoke | Revoke refresh token | | GET /api/v2/* | Management API | | POST /api/v2/myaccount/* | My Account API (user self-service) |

SDKs

| Platform | SDK | |----------|-----| | React | @auth0/auth0-react | | Angular | @auth0/auth0-angular | | Vue | @auth0/auth0-vue | | Next.js | @auth0/nextjs-auth0 | | Express | express-openid-connect | | iOS/Swift | Auth0.swift | | Android | auth0-android | | React Native | react-native-auth0 | | Flutter | auth0_flutter | | ASP.NET Core | Auth0.AspNetCore | | Java/Spring | auth0-spring-security | | Node.js (Management) | auth0 | | Python (Management) | auth0-python | | Lock (widget) | @auth0/lock | | SPA JS | @auth0/auth0-spa-js |

CLI Commands

auth0 login                                    # Authenticate
auth0 apps create --name "App" --type spa      # Create app
auth0 apps list                                # List apps
auth0 apis create --name "API" --identifier .. # Create API
auth0 users create --connection "..."          # Create user
auth0 users search --query "email:.."          # Search users
auth0 logs list                                # View logs
auth0 logs tail                                # Tail logs
auth0 tenants list                             # List tenants
auth0 test login --client                  # Test login flow

Terraform

provider "auth0" {
  domain        = "yourtenant.auth0.com"
  client_id     = var.auth0_client_id
  client_secret = var.auth0_client_secret
}

resource "auth0_client" "app" {
  name     = "My App"
  app_type = "spa"
  callbacks = ["https://myapp.com/callback"]
}

Official Documentation Links

Get Started

Authenticate

Manage Users

Customize

Secure

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.