Agent skill

auth0

Manage users, applications, and authentication via Auth0 Management API.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/auth0-decimasudo-lumoagent

Metadata

Additional technical details for this skill

clawdbot
{
    "emoji": "\ud83d\udd10",
    "requires": {
        "env": [
            "AUTH0_DOMAIN",
            "AUTH0_MGMT_TOKEN"
        ]
    }
}

SKILL.md

Auth0

Identity platform.

Environment

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

List Users

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

Create User

bash
curl -X POST "https://$AUTH0_DOMAIN/api/v2/users" \
  -H "Authorization: Bearer $AUTH0_MGMT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]", "password": "Pass123!", "connection": "Username-Password-Authentication"}'

Get User

bash
curl "https://$AUTH0_DOMAIN/api/v2/users/{userId}" -H "Authorization: Bearer $AUTH0_MGMT_TOKEN"

List Applications

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

Links

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results