TheDocumentation Index
Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
ax skills commands install and remove Arize context skills for AI coding agents. Skills are Markdown files downloaded from Arize-ai/arize-skills that teach agents how to use Arize APIs.
Supported agents: Claude Code, Cursor, Codex, Windsurf.
ax skills install
Download skills from GitHub and install them into each agent’s skills directory. Runs interactively by default, with detected agents pre-selected.
| Option | Description |
|---|---|
--agent, -a | Agent to install for. Can be repeated. Valid values: claude-code, cursor, codex, windsurf. Required when using --yes. |
--global, -g | Install globally (~/.claude/skills/, ~/.cursor/skills/, etc.) instead of the current project |
--project-dir, -d | Project directory to install into (default: current working directory) |
--yes, -y | Skip confirmations. Requires --agent. |
--force, -f | Overwrite existing skills without prompting |
--global to install to your home directory so skills are available in all projects.
If a skill already exists and neither --force nor --yes is set, you are prompted to overwrite it. With --yes (but not --force), existing skills are skipped silently.
Examples:
ax skills clear
Remove Arize skills installed by ax skills install. Only removes skill directories whose names start with arize-; user-created skills are not affected.
| Option | Description |
|---|---|
--agent, -a | Agent to clear skills for. Can be repeated. Valid values: claude-code, cursor, codex, windsurf. If omitted, all known agents are scanned. |
--global, -g | Clear from the global install location (~/.claude/skills/, etc.) |
--project-dir, -d | Project directory to clear from (default: current working directory) |
--yes, -y | Skip the confirmation prompt |