acquire-codebase-knowl…
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
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
$ npx -y skills add github/awesome-copilot --skill arize-experiment --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/arize-experimentContext preview
The summary Claude sees to decide when to auto-load this skill.
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
name: 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.
> **`SPACE`** — All `--space` flags and the `ARIZE_SPACE` env var accept a space **name** (e.g., `my-workspace`) or a base64 space **ID** (e.g., `U3BhY2U6...`). Find yours with `ax spaces list`.
The typical flow: export a dataset → process each example → collect outputs and evaluations → create an experiment with the runs.
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:
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
| 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 |
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
| 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 |
| 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 |
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]'
| 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 | `.` | Outpu
A community-created collection of custom agents, instructions, skills, hooks, workflows, and plugins to supercharge your GitHub Copilot experience.
Repo: github/awesome-copilot
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc…
Generate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…
Help the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting…
Use this skill when the user shares ad campaign performance data and asks what to cut, scale, or test. Trigger for prompts like "analyze my ad campaigns",…
Add educational comments to the file specified, or prompt asking for file to comment if one is not provided.