
Arize Admin
- 1.3k installs
- 41 repo stars
- Updated August 5, 2026
- arize-ai/arize-skills
arize-admin is a Claude Code skill that configures and administers an Arize AI observability workspace—spaces, projects, users, permissions, and production monitoring settings for ML and LLM systems.
About
arize-admin is a skill from arize-ai/arize-skills for platform administration of Arize AI observability environments. It targets developers and ML engineers responsible for workspace structure, project boundaries, user access, and production monitoring configuration once LLM or traditional ML services are live. Typical tasks include creating or organizing spaces and projects, assigning permissions, and tuning monitoring settings so traces, evaluations, and drift signals remain visible to the right teams. The skill fits operational handoffs where observability must be governed alongside deployment rather than treated as an afterthought. Published README content is not included in the catalog excerpt, so invoke it when users explicitly reference Arize admin, workspace setup, or production monitoring configuration and confirm tenant details at runtime. Pair arize-admin with tracing or evaluation skills when moving from prototype instrumentation to governed production monitoring.
- Arize workspace administration
- User and permission management
- Production ML observability setup
- Drift and trace monitoring governance
- LLM evaluation environment control
Arize Admin by the numbers
- 1,324 all-time installs (skills.sh)
- +76 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #234 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/arize-ai/arize-skills --skill arize-adminAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.3k |
|---|---|
| repo stars | ★ 41 |
| Last updated | August 5, 2026 |
| Repository | arize-ai/arize-skills ↗ |
How do you configure Arize observability workspace permissions?
Configure and administer an Arize AI observability workspace—spaces, projects, users, permissions, and production monitoring settings for ML and LLM systems.
Who is it for?
ML and LLM engineers operating Arize who must govern workspaces, access control, and production monitoring after models ship.
Skip if: Teams not using Arize or developers only needing local model training without observability platform administration.
When should I use this skill?
The user asks to administer Arize, configure spaces or projects, set user permissions, or tune production monitoring in Arize.
What you get
Configured Arize spaces, projects, role permissions, and production monitoring policies.
- Workspace configuration
- Permission policies
- Monitoring settings
Files
Arize Admin Skill
Programmatic management of Arize users, organizations, spaces, roles, permissions, and API keys — the building blocks for enterprise access control.
Privilege requirement: Most operations require org-admin or account-admin privileges. If commands return 403 Forbidden, the authenticated profile lacks sufficient permissions.Destructive-action rule: Commands that delete, revoke, remove, or irreversibly modify resources (delete,revoke,remove-user,unrestrict) require explicit user confirmation before execution. When a user asks you to perform one of these operations:
1. Summarize exactly what will happen (e.g., "This will delete user jane@example.com and cascade-revoke their API keys and remove all their org/space memberships and role bindings.")
2. Ask the user to confirm (use AskUserQuestion).3. Only after the user confirms, run the command with --force to skip the CLI's interactive prompt.>
Never run a --force destructive command without confirming with the user first.When to Use
- Invite users to the account, assign them to orgs and spaces
- Offboard a user and revoke all their access in one command
- Onboard a new team: create a space, create a custom role, assign users, generate a service key
- Create custom roles for SAML/SSO attribute mappings (need stable role IDs)
- Restrict a project so only explicitly bound users can access it
- Create scoped service keys for CI/CD pipelines or multi-tenant architectures
- Rotate or revoke API keys
- Create or delete projects within a space
Upfront Questions
For multi-step workflows, collect all required information before running any `ax` commands. Use AskUserQuestion to avoid back-and-forth mid-workflow. Fetch live data first (e.g. org list) so you can present real options rather than asking the user to recall IDs.
Onboarding a new team
1. Run ax organizations list -o json to get available org names. 2. Use AskUserQuestion (single call, up to 4 questions) to gather:
- Which org? — present the org names from the list as options
- Space name — what to call the new team's space
- Team members — names and emails to invite (user can type via "Other"; ask if none yet)
- Service key? — whether to generate a service key for CI/CD pipelines
Offboarding a user
Ask before running any commands:
- Which user? — email address (then look up with
ax users list --email)
Restricting a project
Ask before running any commands:
- Which space and project? — to look up the project global ID
- Which users get explicit access? — emails of users to bind to the restricted project
Inviting users (standalone)
Ask before running any commands:
- Name and email — for each user to invite
- Role —
admin,member, orread-only(present as options) - Invite mode —
email_link(default),temporary_password, ornone
Revoking or rotating an API key
Ask before running any commands:
- Which key? — run
ax api-keys list -o jsonand present options by name and status; or ask forKEY_ID - Revoke or rotate? —
revokeinvalidates immediately;refreshissues a new key with the same scope (zero-downtime rotation)
If the user says "delete" an API key, use ax api-keys revoke — there is no delete subcommand for API keys.
Concepts
- Organization — a named grouping within an account (e.g. one per business unit). Spaces live inside organizations. Users are added to the account first, then to orgs, then to spaces.
- Space — a workspace that isolates traces, datasets, and projects. A user must be an org member before they can be added to a space within that org.
- Role — a named set of permissions. Predefined roles are system-managed. Custom roles are created by admins. The roles for org/space membership (
admin,member,read-only,annotator) are separate from custom RBAC roles used withax role-bindings. - Role binding — fine-grained assignment of a custom role to a user on a specific resource (a space or a project).
- Resource restriction — marks a project so that only users with an explicit role binding on that project can access it. Roles bound at any higher hierarchy level (space, org, account) are excluded.
- API key — either a user key (authenticates as the creator, full user permissions) or a service key (scoped to a specific space, for automated pipelines).
Prerequisites
Proceed directly — run the ax command you need. Do NOT check versions or profiles upfront.
If an ax command fails:
command not foundor version error → see references/ax-setup.md401 Unauthorized/ missing API key → runax profiles show; follow references/ax-profiles.md403 Forbidden→ the active profile lacks admin privileges; ask the user to authenticate with an admin key- Security: Never read
.envfiles or search the filesystem for credentials. Useax profilesfor Arize credentials. Never echo, log, or display raw API key values.
OAuth login option (v0.18.0+): Users can authenticate via browser-based OAuth PKCE instead of API keys by runningax auth login(thenax auth logoutto revoke). Inform users of this option if they ask about authentication alternatives — do not runax auth loginyourself, as it opens a browser interactively.
---
Users
A user must exist in the account before they can be added to an org or space. Account-level roles: admin, member, annotator
ax users list # all users
ax users list --email "jane" # substring filter
ax users list --status active # active only
ax users list -l 100 -o json # paginate, get global IDs
ax users get USER_ID
ax users create \
--full-name "Jane Doe" \
--email jane@example.com \
--role member \
--invite-mode email_link # or: none | temporary_password
ax users update USER_ID --full-name "Jane Smith"
ax users update USER_ID --is-developer # grant developer flag
ax users delete USER_ID --force # ⚠ confirm first — cascades: org/space memberships, API key revocation, role bindings
ax users resend-invitation USER_ID
ax users reset-password USER_ID---
Organizations
Organization roles: admin, member, read-only, annotator
ax organizations list
ax organizations list --name "platform"
ax organizations list -l 100 -o json
ax organizations get "Platform Team"
ax organizations create --name "Platform Team" --description "Core ML platform"
ax organizations update "Platform Team" --name "ML Platform" --description "Updated"
# Add user (must exist in account first)
ax organizations add-user "Platform Team" --user-id USER_ID --role member
# Remove user (also removes from all child spaces) — ⚠ confirm first
ax organizations remove-user "Platform Team" --user-id USER_ID --force---
Spaces
Space roles: admin, member, read-only, annotator
ax spaces list
ax spaces list --organization-id ORG_ID
ax spaces get "my-workspace"
# --organization-id required; get ORG_ID from ax organizations list -o json
ax spaces create --name "team-alpha" --organization-id ORG_ID
ax spaces update "team-alpha" --name "team-alpha-v2"
ax spaces delete "team-alpha" --force # ⚠ confirm first — irreversible; deletes all resources
# User must be an org member before being added to a space
ax spaces add-user "team-alpha" --user-id USER_ID --role member
ax spaces remove-user "team-alpha" --user-id USER_ID --force # ⚠ confirm first---
Roles
Custom RBAC roles used with ax role-bindings. Separate from the simpler admin/member/read-only/annotator roles in org/space membership.
ax roles list # all roles
ax roles list --is-custom -o json # custom only — get stable IDs for SAML mappings
ax roles list --is-predefined
ax roles get "Data Scientist" # inspect permissions
# --permissions is comma-separated; fully replaces on update
ax roles create \
--name "Data Scientist" \
--permissions "PROJECT_READ,DATASET_CREATE,EXPERIMENT_CREATE" \
--description "Read traces, create datasets and experiments"
ax roles update "Data Scientist" --permissions "PROJECT_READ,DATASET_CREATE,EXPERIMENT_CREATE,EVALUATOR_CREATE"
ax roles delete "Data Scientist" --force # ⚠ confirm first — predefined roles cannot be deletedFinding available permissions: Run ax roles get <predefined-role> -o json on a system role (e.g. Member, Admin) to see valid permission names.
---
Role Bindings
Fine-grained assignment of a custom role to a user on a specific resource (space or project).
# Assign at space level
ax role-bindings create \
--user-id USER_GLOBAL_ID \
--role-id ROLE_GLOBAL_ID \
--resource-type SPACE \
--resource-id SPACE_GLOBAL_ID
# Assign at project level
ax role-bindings create \
--user-id USER_GLOBAL_ID \
--role-id ROLE_GLOBAL_ID \
--resource-type PROJECT \
--resource-id PROJECT_GLOBAL_ID
ax role-bindings get BINDING_ID
ax role-bindings update BINDING_ID --role-id NEW_ROLE_ID
ax role-bindings delete BINDING_ID --force # ⚠ confirm firstIdempotent — if a binding already exists for the user on that resource, exits without error.
---
Resource Restrictions
Restricts a project so only users with an explicit role binding on that project can access it. Space/org-level roles are excluded.
ax resource-restrictions restrict --resource-id PROJECT_GLOBAL_ID # idempotent
ax resource-restrictions unrestrict --resource-id PROJECT_GLOBAL_ID --force # ⚠ confirm first
# Finding project IDs
ax projects list -l 100 -o json --space "my-workspace"---
API Keys
Scope: ax api-keys list returns only keys owned by the authenticated user. For org-wide auditing, use the Arize UI (Settings > API Keys).ax api-keys list
ax api-keys list --key-type service --status active -o json
# User key — authenticates as creator, inherits their full permissions
ax api-keys create --name "CI pipeline" --expires-at "2027-01-01T00:00:00"
# Service key — space-scoped bot user (recommended for CI/CD pipelines)
ax api-keys create-service-key \
--name "team-alpha-traces" \
--space "team-alpha" \
--space-role member \
--expires-at "2027-01-01T00:00:00"
ax api-keys revoke KEY_ID --force # ⚠ confirm first — invalidates the key immediately
# Zero-downtime rotation — revokes old key, issues new one with same scope
ax api-keys refresh KEY_ID
ax api-keys refresh KEY_ID --expires-at "2028-01-01T00:00:00"The raw key is displayed once. Save it immediately in your secrets manager. It cannot be retrieved again.
`create-service-key` flags:
| Flag | Required | Description |
|---|---|---|
--name | yes | Key name |
--space | yes | Space this service key is scoped to |
--space-role | no | Role in the space: admin, member, read-only |
--org-role | no | Role in the parent organization |
--account-role | no | Role at account level |
--expires-at | no | ISO 8601 expiry date |
--description | no | Optional description |
---
Projects
Projects live inside spaces and contain traces, datasets, and experiments.
ax projects list --space SPACE
ax projects list --space SPACE --name "playground" # substring filter
ax projects list --space SPACE -l 100 -o json # get base64 IDs
ax projects get NAME_OR_ID --space SPACE
ax projects create --name "my-project" --space SPACE
ax projects delete NAME_OR_ID --space SPACE --force # ⚠ confirm first — deletes all traces and datasetsNote: Project IDs (base64 strings) are used byax spans export,ax traces export, andax resource-restrictions. If commands reject a project name, look up theidfield fromax projects list -o jsonand use that instead.
---
Enterprise Workflows & Troubleshooting
Step-by-step workflows (onboard a team, SAML/SSO mappings, project restriction, offboarding, multi-tenant keys) and a troubleshooting table are in references/REFERENCE.md.
---
Related Skills
- arize-instrumentation: Set up tracing in an LLM app once a space is ready.
- arize-trace: Export and inspect traces within a managed space.
- arize-dataset: Create and manage datasets within a space.
ax Profile Setup
Consult this when authentication fails (401, missing profile, missing API key). Do NOT run these checks proactively.
Use this when there is no profile, or a profile has incorrect settings (wrong API key, wrong region, etc.).
1. Inspect the current state
ax profiles showLook at the output to understand what's configured:
API Key: (not set)or missing → key needs to be created/updated- No profile output or "No profiles found" → no profile exists yet
- Connected but getting
401 Unauthorized→ key is wrong or expired - Connected but wrong endpoint/region → region needs to be updated
2. Fix a misconfigured profile
If a profile exists but one or more settings are wrong, patch only what's broken.
Never pass a raw API key value as a flag. Always reference it via the ARIZE_API_KEY environment variable. If the variable is not already set in the shell, instruct the user to set it first, then run the command:
# If ARIZE_API_KEY is already exported in the shell:
ax profiles update --api-key $ARIZE_API_KEY
# Fix the region (no secret involved — safe to run directly)
ax profiles update --region us-east-1b
# Fix both at once
ax profiles update --api-key $ARIZE_API_KEY --region us-east-1bupdate only changes the fields you specify — all other settings are preserved. If no profile name is given, the active profile is updated.
3. Create a new profile
If no profile exists, or if the existing profile needs to point to a completely different setup (different org, different region):
Always reference the key via `$ARIZE_API_KEY`, never inline a raw value.
# Requires ARIZE_API_KEY to be exported in the shell first
ax profiles create --api-key $ARIZE_API_KEY
# Create with a region
ax profiles create --api-key $ARIZE_API_KEY --region us-east-1b
# Create a named profile
ax profiles create work --api-key $ARIZE_API_KEY --region us-east-1bTo use a named profile with any ax command, add -p NAME:
ax spans export PROJECT -p work4. Getting the API key
Never ask the user to paste their API key into the chat. Never log, echo, or display an API key value.
If ARIZE_API_KEY is not already set, instruct the user to export it in their shell:
export ARIZE_API_KEY="..." # user pastes their key here in their own terminalThey can find their key at https://app.arize.com/admin > API Keys. Recommend they create a scoped service key (not a personal user key) — service keys are not tied to an individual account and are safer for programmatic use. Keys are space-scoped — make sure they copy the key for the correct space.
Once the user confirms the variable is set, proceed with ax profiles create --api-key $ARIZE_API_KEY or ax profiles update --api-key $ARIZE_API_KEY as described above.
5. Verify
After any create or update:
ax profiles showConfirm the API key and region are correct, then retry the original command.
Space
There is no profile flag for space. Save it as an environment variable — accepts a space name (e.g., my-workspace) or a base64 space ID (e.g., U3BhY2U6...). Find yours with ax spaces list -o json.
macOS/Linux — add to ~/.zshrc or ~/.bashrc:
export ARIZE_SPACE="my-workspace" # name or base64 IDThen source ~/.zshrc (or restart terminal).
Windows (PowerShell):
[System.Environment]::SetEnvironmentVariable('ARIZE_SPACE', 'my-workspace', 'User')Restart terminal for it to take effect.
Save Credentials for Future Use
At the end of the session, if the user manually provided any credentials during this conversation and those values were NOT already loaded from a saved profile or environment variable, offer to save them.
Skip this entirely if:
- The API key was already loaded from an existing profile or
ARIZE_API_KEYenv var - The space was already set via
ARIZE_SPACEenv var - The user only used base64 project IDs (no space was needed)
How to offer: Use AskQuestion: "Would you like to save your Arize credentials so you don't have to enter them next time?" with options "Yes, save them" / "No thanks".
If the user says yes:
1. API key — Run ax profiles show to check the current state. Then run ax profiles create --api-key $ARIZE_API_KEY or ax profiles update --api-key $ARIZE_API_KEY (the key must already be exported as an env var — never pass a raw key value).
2. Space — See the Space section above to persist it as an environment variable.
ax CLI — Troubleshooting
Consult this only when an ax command fails. Do NOT run these checks proactively.
Check version first
If ax is installed (not command not found), always run ax --version before investigating further. The version must be 0.19.0 or higher — many errors are caused by an outdated install. If the version is too old, see Version too old below.
ax: command not found
macOS/Linux: 1. Check common locations: ~/.local/bin/ax, ~/Library/Python/*/bin/ax 2. Install: uv tool install arize-ax-cli (preferred), pipx install arize-ax-cli, or pip install arize-ax-cli 3. Add to PATH if needed: export PATH="$HOME/.local/bin:$PATH"
Windows (PowerShell): 1. Check: Get-Command ax or where.exe ax 2. Common locations: %APPDATA%\Python\Scripts\ax.exe, %LOCALAPPDATA%\Programs\Python\Python*\Scripts\ax.exe 3. Install: pip install arize-ax-cli 4. Add to PATH: $env:PATH = "$env:APPDATA\Python\Scripts;$env:PATH"
Version too old (below 0.19.0)
Upgrade: uv tool install --force --reinstall arize-ax-cli, pipx upgrade arize-ax-cli, or pip install --upgrade arize-ax-cli
SSL/certificate error
- macOS:
export SSL_CERT_FILE=/etc/ssl/cert.pem - Linux:
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt - Fallback:
export SSL_CERT_FILE=$(python -c "import certifi; print(certifi.where())")
Subcommand not recognized
Upgrade ax (see above) or use the closest available alternative.
Still failing
Stop and ask the user for help.
Arize Admin — Enterprise Workflows & Troubleshooting
Workflow 1: Onboard a New Team
# 1. Get the org ID
ax organizations list -o json
# 2. Create a space for the team
ax spaces create --name "team-alpha" --organization-id ORG_ID
# 3. Create or reuse a custom role
ax roles create \
--name "Data Scientist" \
--permissions "PROJECT_READ,DATASET_CREATE,EXPERIMENT_CREATE" \
--description "Read traces, create datasets and run experiments"
# 4. Get stable role IDs (for SAML mappings or role bindings)
ax roles list --is-custom -o json
# 5. Invite team members (or look up existing users)
ax users create \
--full-name "Jane Doe" \
--email jane@example.com \
--role member \
--invite-mode email_link
# 6. Get the user's global ID
ax users list --email "jane@example.com" -o json
# 7. Add the user to the org
ax organizations add-user "Platform Team" --user-id USER_ID --role member
# 8. Add the user to the space
ax spaces add-user "team-alpha" --user-id USER_ID --role member
# 9. Create a service key for the team's CI/CD pipeline
ax api-keys create \
--name "team-alpha-service-key" \
--key-type service \
--space "team-alpha"Workflow 2: Configure SAML/SSO Role Mappings
SAML group-to-role mappings require stable role IDs. Retrieve them:
# List all custom roles with their IDs
ax roles list --is-custom -o json
# Get a specific role's ID and permissions
ax roles get "Data Scientist" -o jsonUse the id field (base64 string like Um9sZTo1...) in your SAML values.yaml or IdP attribute mapping. These IDs are stable and do not change unless the role is deleted and recreated.
Workflow 3: Restrict a Project to Specific Users
# 1. Find the project ID
ax projects list -l 100 -o json --space "team-alpha"
# 2. Restrict the project (excludes space-level roles)
ax resource-restrictions restrict --resource-id PROJECT_GLOBAL_ID
# 3. Find the user's global ID
ax users list --email "jane@example.com" -o json
# 4. Find the role ID to assign
ax roles list --is-custom -o json
# 5. Explicitly grant access to allowed users on that project
ax role-bindings create \
--user-id USER_GLOBAL_ID \
--role-id ROLE_GLOBAL_ID \
--resource-type PROJECT \
--resource-id PROJECT_GLOBAL_IDWorkflow 4: Audit Access
# List all users and their status
ax users list -l 100 -o json
# List all custom roles with their permissions
ax roles list --is-custom -o json
# Inspect a specific role's permission set
ax roles get "Data Scientist" -o json
# List your own active API keys
ax api-keys list --status active -o jsonCLI audit limitations:axcannot enumerate role bindings (nolistsubcommand) or other users' API keys. For a full access audit, use the Arize UI (Settings > Users & Permissions and Settings > API Keys).
Workflow 5: Offboard a User
ax users delete cascades to all org memberships, space memberships, API keys, and role bindings in one operation.
Always confirm with the user before running the delete. Summarize the cascade impact, then ask for explicit confirmation.
# 1. Find the user's global ID
ax users list --email "jane@example.com" -o json
# 2. Confirm with the user: "Delete jane@example.com? This will cascade-remove
# all org/space memberships, API keys, and role bindings."
# 3. After user confirms, delete
ax users delete USER_ID --forceIf you also need to deactivate the user in your IdP (to prevent SSO re-login), do that separately in Okta/Azure AD/etc. For real-time automated key invalidation on IdP deactivation, configure SCIM 2.0 provisioning.
Workflow 6: Multi-Tenant Service Key Management
One service key per tenant space — scoped permissions, no org-admin required:
# Create a service key per tenant space
ax api-keys create --name "tenant-acme-key" --key-type service --space "tenant-acme"
ax api-keys create --name "tenant-beta-key" --key-type service --space "tenant-beta"
# Revoke a key (immediate invalidation)
ax api-keys list --key-type service -o json # find KEY_ID by name
ax api-keys revoke KEY_ID --force
# Rotate a key (zero-downtime, same scope)
ax api-keys refresh KEY_IDService keys can only write traces to their scoped space — they cannot access other spaces or perform admin operations.
---
Troubleshooting
| Error | Cause | Fix |
|---|---|---|
403 Forbidden | Profile lacks admin privileges | Authenticate with an admin API key (ax profiles update --api-key $ARIZE_API_KEY) |
401 Unauthorized | Missing or invalid API key | See ax-profiles.md |
| Role binding already exists | Idempotent — not an error | Safe to ignore; the existing binding is unchanged |
| User not found in space add-user | User not yet an org member | Run ax organizations add-user first, then ax spaces add-user |
| Role create fails with duplicate name | Name already in use | Use ax roles list --is-custom to find the existing role |
| Service key create fails | --space missing or space doesn't exist | Verify with ax spaces list; --space is required for service keys |
| Key value not saved | Raw key was not captured at creation | Refresh the key: ax api-keys refresh KEY_ID |
Unknown command delete on ax api-keys | delete was removed; use revoke instead | ax api-keys revoke KEY_ID --force |
Related skills
FAQ
What does arize-admin configure in Arize?
arize-admin focuses on Arize workspace administration: spaces, projects, users, permissions, and production monitoring settings for ML and LLM observability rather than writing application feature code.
When should developers invoke arize-admin?
arize-admin fits after Arize is adopted and teams need governed projects, role-based access, and production monitoring policies for live models or LLM agents.