arize-admin
Manages Arize users, organizations, spaces, projects, roles, role bindings, resource restrictions, and API keys via the ax CLI. Use for enterprise admin workflows: inviting and offboarding users, onboarding new teams, creating custom roles for SAML/SSO mappings, assigning roles to users, restricting project-level access, and managing service keys for multi-tenant architectures. Covers ax users, ax organizations, ax spaces, ax projects, ax roles, ax role-bindings, and ax api-keys.
What this skill does
# 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, remove, or irreversibly modify resources (`delete`, `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 [email protected] and cascade-remove all their org/space memberships, API keys, 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` deletion 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`, or `read-only` (present as options) - **Invite mode** — `email_link` (default), `temporary_password`, or `none` ## 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 with `ax 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 found` or version error → see [references/ax-setup.md](references/ax-setup.md) - `401 Unauthorized` / missing API key → run `ax profiles show`; follow [references/ax-profiles.md](references/ax-profiles.md) - `403 Forbidden` → the active profile lacks admin privileges; ask the user to authenticate with an admin key - **Security:** Never read `.env` files or search the filesystem for credentials. Use `ax profiles` for 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 running `ax auth login` (then `ax auth logout` to revoke). Inform users of this option if they ask about authentication alternatives — do **not** run `ax auth login` yourself, 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` ```bash 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 [email protected] \ --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 keys, role bindings ax users resend-invitation USER_ID ax users reset-password USER_ID ``` --- ## Organizations **Organization roles:** `admin`, `member`, `read-only`, `annotator` ```bash 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` ```bash 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. ```bash 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 Sci
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.