2.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
| name | auth0 |
| description | Manage users, applications, and authentication via Auth0 Management API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/auth0 |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/auth0 |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
263 BSKILL.md
1.0 KBSKILL.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"
List Applications
curl "https://$AUTH0_DOMAIN/api/v2/clients" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"
Links
- Dashboard: https://manage.auth0.com
- Docs: https://auth0.com/docs/api/management/v2
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.
