skills$openclaw/auth0
mrgoodb2.6k

by mrgoodb

auth0 – OpenClaw Skill

auth0 is an OpenClaw Skills integration for writing workflows. Manage users, applications, and authentication via Auth0 Management API.

2.6k stars3.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameauth0
descriptionManage users, applications, and authentication via Auth0 Management API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/auth0
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/auth0
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains auth0 in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
263 B
SKILL.md
1.0 KB
SKILL.md

name: auth0 description: Manage users, applications, and authentication via Auth0 Management API. metadata: {"clawdbot":{"emoji":"🔐","requires":{"env":["AUTH0_DOMAIN","AUTH0_MGMT_TOKEN"]}}}

Auth0

Identity platform.

Environment

export AUTH0_DOMAIN="your-tenant.auth0.com"
export AUTH0_MGMT_TOKEN="xxxxxxxxxx"

List Users

curl "https://$AUTH0_DOMAIN/api/v2/users" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"

Create User

curl -X POST "https://$AUTH0_DOMAIN/api/v2/users" \
  -H "Authorization: Bearer $AUTH0_MGMT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "password": "Pass123!", "connection": "Username-Password-Authentication"}'

Get User

curl "https://$AUTH0_DOMAIN/api/v2/users/{userId}" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
curl "https://$AUTH0_DOMAIN/api/v2/clients" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install auth0?

Run openclaw add @mrgoodb/auth0 in your terminal. This installs auth0 into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/auth0. Review commits and README documentation before installing.