Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,7 @@ out/
*.tf

# Copilot instructions
.github/copilot-instructions.md
.github/copilot-instructions.md

# LLM files
.remember/
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Build, manage and test your [Auth0](https://auth0.com/) integrations from the co
- [Authenticating to Your Tenant](#authenticating-to-your-tenant)
- [Available Commands](#available-commands)
- [Customization](#customization)
- [Agent Integration](#agent-integration)
- [Anonymous Analytics](#anonymized-analytics-disclosure)

## Installation
Expand Down Expand Up @@ -230,6 +231,41 @@ REM Command Prompt (persistent, across sessions):
setx EDITOR "code --wait"
```

## Agent Integration

The CLI has an [AgentSkills-compatible](https://agentskills.io/) skill for AI agents (Claude Code, OpenClaw, etc.), available from the [Auth0 Agent Skills](https://github.com/auth0/agent-skills) repository.

### Install via Auth0 Agent Skills (Recommended)

The `auth0-cli` skill is part of the [auth0/agent-skills](https://github.com/auth0/agent-skills) collection. Install the full Auth0 skills suite to get it along with other Auth0 skills:

**Claude Code plugin marketplace:**

```
/plugin marketplace add auth0/agent-skills
/plugin install auth0@auth0-agent-skills
```

**Skills CLI:**

```bash
npx skills add auth0/agent-skills
```

**Manual installation (Claude Code, OpenClaw):**

```bash
git clone https://github.com/auth0/agent-skills.git

# Claude Code
cp -r agent-skills/plugins/auth0/skills/auth0-cli ~/.claude/skills/

# OpenClaw
cp -r agent-skills/plugins/auth0/skills/auth0-cli ~/.openclaw/skills/
```

> **Note:** The `auth0` binary must be installed and available on your `$PATH` for agents to use this skill.

## Anonymized Analytics Disclosure

Anonymized data points are collected during the use of this CLI. This data includes the CLI version, operating system, timestamp, and other technical details that do not personally identify you.
Expand Down
Loading