arize-experiment
Creates, runs, and analyzes Arize experiments for evaluating and comparing model performance. Covers experiment CRUD, exporting runs, comparing results, and evaluation workflows using the ax CLI
Install / Use
npx skills add github/awesome-copilot --skill arize-experimentInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
AutomationSupported Platforms
Tags
Our assessment of arize-experiment
arize-experiment scores 100/100 on our quality scale, 30th of 1,111 Automation skills we index (top 3%).
Its SKILL.md is 18 KB long, well organised into 34 sections with 9 code examples: a thorough specification that gives an agent plenty to work with.
With 39,348 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated yesterday, so arize-experiment is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
ReviewOur scan of the whole file found 2 patterns worth reviewing before you install arize-experiment.
- mediumDisables the agent's permission promptsline 186
ax experiments delete NAME_OR_ID --force # skip confirmation prompt - mediumDisables the agent's permission promptsline 196
| `--force, -f` | bool | false | Skip confirmation prompt |
Automated pattern scan on 2026-09-25. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
arize-experiment compared with similar skills
arize-experiment has the highest quality score among these 4 similar skills, though 2 alternatives have been updated more recently.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| arize-experiment (this skill)by github | 100 | 39.3k | 1d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.4k | 9d ago | CLAUDE.md |
| rufloby ruvnet | 100 | 73.2k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.5k | today | MCP Server |
| algorithmic-artby anthropics | 100 | 177.9k | 2d ago | SKILL.md |
Frequently asked questions
- How do I install arize-experiment?
- Run
npx skills add github/awesome-copilot --skill arize-experiment. The install tabs above show the steps for each supported agent. - Which AI agents does arize-experiment work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is arize-experiment safe to use?
- Our scan of the whole file found 2 patterns worth reviewing before you install arize-experiment. It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is arize-experiment still maintained?
- The repository was last updated yesterday, so arize-experiment is actively maintained.
Skill content
View source on GitHubname: arize-experiment description: Creates, runs, and analyzes Arize experiments for evaluating and comparing model performance. Covers experiment CRUD, exporting runs, comparing results, and evaluation workflows using the ax CLI. Use when the user mentions create experiment, run experiment, compare models, model performance, evaluate AI, experiment results, benchmark, A/B test models, or measure accuracy. metadata: author: arize version: "1.0" compatibility: Requires the ax CLI and a configured Arize profile.
Arize Experiment Skill
SPACE— All--spaceflags and theARIZE_SPACEenv var accept a space name (e.g.,my-workspace) or a base64 space ID (e.g.,U3BhY2U6...). Find yours withax spaces list.
Concepts
- Experiment = a named evaluation run against a specific dataset version, containing one run per example
- Experiment Run = the result of processing one dataset example -- includes the model output, optional evaluations, and optional metadata
- Dataset = a versioned collection of examples; every experiment is tied to a dataset and a specific dataset version
- Evaluation = a named metric attached to a run (e.g.,
correctness,relevance), with optional label, score, and explanation
The typical flow: export a dataset → process each example → collect outputs and evaluations → create an experiment with the runs.
Prerequisites
Proceed directly with the task — run the ax command you need. Do NOT check versions, env vars, or profiles upfront.
If an ax command fails, troubleshoot based on the error:
command not foundor version error → see references/ax-setup.md401 Unauthorized/ missing API key → runax profiles showto inspect the current profile. If the profile is missing or the API key is wrong, follow references/ax-profiles.md to create/update it. If the user doesn't have their key, direct them to https://app.arize.com/admin > API Keys- Space unknown → run
ax spaces listto pick by name, or ask the user - Project unclear → ask the user, or run
ax projects list -o json --limit 100and present as selectable options - Security: Never read
.envfiles or search the filesystem for credentials. Useax profilesfor Arize credentials andax ai-integrationsfor LLM provider keys. If credentials are not available through these channels, ask the user. - CRITICAL — Never fabricate outputs: When running an experiment, you MUST call the real model API specified by the user for every dataset example. Never fabricate, simulate, or hardcode model outputs, latencies, or evaluation scores. If you cannot call the API (missing SDK, missing credentials, network error), stop and tell the user what is needed before proceeding.
List Experiments: ax experiments list
Browse experiments, optionally filtered by dataset. Output goes to stdout.
ax experiments list
ax experiments list --dataset DATASET_NAME --space SPACE --limit 20 # DATASET_NAME: name or ID (name preferred)
ax experiments list --cursor CURSOR_TOKEN
ax experiments list -o json
Flags
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| --dataset | string | none | Filter by dataset |
| --limit, -l | int | 15 | Max results (1-100) |
| --cursor | string | none | Pagination cursor from previous response |
| -o, --output | string | table | Output format: table, json, csv, parquet, or file path |
| -p, --profile | string | default | Configuration profile |
Get Experiment: ax experiments get
Quick metadata lookup -- returns experiment name, linked dataset/version, and timestamps.
ax experiments get NAME_OR_ID
ax experiments get NAME_OR_ID -o json
ax experiments get NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID
Flags
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| NAME_OR_ID | string | required | Experiment name or ID (positional) |
| --dataset | string | none | Dataset name or ID (required if using experiment name instead of ID) |
| --space | string | none | Space name or ID (required if using dataset name instead of ID) |
| -o, --output | string | table | Output format |
| -p, --profile | string | default | Configuration profile |
Response fields
| Field | Type | Description |
|-------|------|-------------|
| id | string | Experiment ID |
| name | string | Experiment name |
| dataset_id | string | Linked dataset ID |
| dataset_version_id | string | Specific dataset version used |
| experiment_traces_project_id | string | Project where experiment traces are stored |
| created_at | datetime | When the experiment was created |
| updated_at | datetime | Last modification time |
Export Experiment: ax experiments export
Download all runs to a file. By default uses the REST API; pass --all to use Arrow Flight for bulk transfer.
# EXPERIMENT_NAME, DATASET_NAME: name or ID (name preferred)
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE
# -> experiment_abc123_20260305_141500/runs.json
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --all
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --output-dir ./results
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '.[0]'
Flags
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| NAME_OR_ID | string | required | Experiment name or ID (positional) |
| --dataset | string | none | Dataset name or ID (required if using experiment name instead of ID) |
| --space | string | none | Space name or ID (required if using dataset name instead of ID) |
| --all | bool | false | Use Arrow Flight for bulk export (see below) |
| --output-dir | string | . | Output directory |
| --stdout | bool | false | Print JSON to stdout instead of file |
| -p, --profile | string | default | Configuration profile |
REST vs Flight (--all)
- REST (default): Lower friction -- no Arrow/Flight dependency, standard HTTPS ports, works through any corporate proxy or firewall. Limited to 500 runs per page.
- Flight (
--all): Required for experiments with more than 500 runs. Uses gRPC+TLS on a separate host/port (flight.arize.com:443) which some corporate networks may block.
Agent auto-escalation rule: If a REST export returns exactly 500 runs, the result is likely truncated. Re-run with --all to get the full dataset.
Output is a JSON array of run objects:
[
{
"id": "run_001",
"example_id": "ex_001",
"output": "The answer is 4.",
"evaluations": {
"correctness": { "label": "correct", "score": 1.0 },
"relevance": { "score": 0.95, "explanation": "Directly answers the question" }
},
"metadata": { "model": "gpt-4o", "latency_ms": 1234 }
}
]
Create Experiment: ax experiments create
Create a new experiment with runs from a data file.
ax experiments create --name "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE --file runs.json
ax experiments create --name "claude-test" --dataset DATASET_NAME --space SPACE --file runs.csv
Flags
| Flag | Type | Required | Description |
|------|------|----------|-------------|
| --name, -n | string | yes | Experiment name |
| --dataset | string | yes | Dataset to run the experiment against |
| --space, -s | string | no | Space name or ID (required if using dataset name instead of ID) |
| --file, -f | path | yes | Data file with runs: CSV, JSON, JSONL, or Parquet |
| -o, --output | string | no | Output format |
| -p, --profile | string | no | Configuration profile |
Passing data via stdin
Use --file - to pipe data directly — no temp file needed:
echo '[{"example_id": "ex_001", "output": "Paris"}]' | ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file -
# Or with a heredoc
ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file - << 'EOF'
[{"example_id": "ex_001", "output": "Paris"}]
EOF
Required columns in the runs file
| Column | Type | Required | Description |
|--------|------|----------|-------------|
| example_id | string | yes | ID of the dataset example this run corresponds to |
| output | string | yes | The model/system output for this example |
Additional columns are passed through as additionalProperties on the run.
Delete Experiment: ax experiments delete
ax experiments delete NAME_OR_ID
ax experiments delete NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID
ax experiments delete NAME_OR_ID --force # skip confirmation prompt
Flags
| Flag | Type | Default | Description |
|------|------|---------|-------------|
| NAME_OR_ID | string | required | Experiment name or ID (positional) |
| --dataset | string | none | Dataset name or ID (required if using experiment name instead of ID) |
| --space | string | none | Space name or ID (required if using dataset name instead of ID) |
| --force, -f | bool | false | Skip confirmation prompt |
| -p, --profile | string | default | Configuration profile |
Experiment Run Schema
Each run corresponds to one dataset example:
{
"example_id": "required -- links to dataset example",
"output": "required -- the model/system output for this example",
"evaluations": {
"metric_name": {
"label": "optional string label (e.g., 'correct', 'incorrect')",
"score": "optional numeric score (e.g., 0.95)",
"explanation": "optional freeform text"
}
},
"metadata": {
"model": "gpt-4o",
"temperature": 0.7,
"latency_ms": 1234
}
}
Evaluation fields
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| label | string | no | Categorical classification (e.g., correct, incorrect, partial) |
| score | number | no | Numeric quality score (e.g., 0.0 - 1.0) |
| explanation | string | no | Freeform reasoning for the evaluation |
At least one of label, score, or explanation should be present per evaluation.
Workflows
Run an experiment against a dataset
-
Find or create a dataset:
ax datasets list --space SPACE ax datasets export DATASET_NAME --space SPACE --stdout | jq 'length' -
Export the dataset examples:
ax datasets export DATASET_NAME --space SPACE -
Call the real model API for each example and collect outputs. Use
ax datasets export --stdoutto pipe examples directly into an inference script:ax datasets export DATASET_NAME --space SPACE --stdout | python3 infer.py > runs.jsonWrite
infer.pyto read examples from stdin, call the target model, and write runs JSON to stdout. The script below is a template — first inspect the exported dataset JSON to find the correct input field name, then uncomment the provider block the user wants:import json, sys, time examples = json.load(sys.stdin) runs = [] for ex in examples: # Inspect the exported JSON to find the right field (e.g. "input", "question", "prompt") user_input = ex.get("input") or ex.get("question") or ex.get("prompt") or str(ex) start = time.time() # === CALL THE REAL MODEL API HERE — never fabricate or simulate === # Uncomment and adapt the provider block the user requested: # # OpenAI (pip install openai — uses OPENAI_API_KEY env var): # from openai import OpenAI # resp = OpenAI().chat.completions.create( # model="gpt-4o", # messages=[{"role": "user", "content": user_input}] # ) # output_text = resp.choices[0].messag
Truncated for display — read the full file on GitHub.
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
ruflo
73.2k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
Scrapling
83.5k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
