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, manages, and queries Arize datasets and examples. Covers dataset CRUD, appending examples, exporting data, and file-based dataset creation using the ax CLI. Use when the user needs test data, evaluation examples, or mentions create dataset, list datasets, export
$ npx -y skills add github/awesome-copilot --skill arize-dataset --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/arize-datasetContext preview
The summary Claude sees to decide when to auto-load this skill.
Creates, manages, and queries Arize datasets and examples. Covers dataset CRUD, appending examples, exporting data, and file-based dataset creation using the ax CLI. Use when the user needs test data, evaluation examples, or mentions create dataset, list datasets, export
name: arize-dataset description: Creates, manages, and queries Arize datasets and examples. Covers dataset CRUD, appending examples, exporting data, and file-based dataset creation using the ax CLI. Use when the user needs test data, evaluation examples, or mentions create dataset, list datasets, export dataset, append examples, dataset version, golden dataset, or test set. 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`.
System-managed fields on examples (`id`, `created_at`, `updated_at`) are auto-generated by the server -- never include them in create or append payloads.
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 datasets in a space. Output goes to stdout.
ax datasets list ax datasets list --space SPACE --limit 20 ax datasets list --cursor CURSOR_TOKEN ax datasets list -o json
| Flag | Type | Default | Description | |------|------|---------|-------------| | `--space` | string | from profile | Filter by space | | `--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 dataset name, space, timestamps, and version list.
ax datasets get NAME_OR_ID ax datasets get NAME_OR_ID -o json ax datasets get NAME_OR_ID --space SPACE # required when using dataset name instead of ID
| Flag | Type | Default | Description | |------|------|---------|-------------| | `NAME_OR_ID` | string | required | Dataset name or ID (positional) | | `--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 | Dataset ID | | `name` | string | Dataset name | | `space_id` | string | Space this dataset belongs to | | `created_at` | datetime | When the dataset was created | | `updated_at` | datetime | Last modification time | | `versions` | array | List of dataset versions (id, name, dataset_id, created_at, updated_at) |
Download all examples to a file. Use `--all` for datasets larger than 500 examples (unlimited bulk export).
ax datasets export NAME_OR_ID # -> dataset_abc123_20260305_141500/examples.json ax datasets export NAME_OR_ID --all ax datasets export NAME_OR_ID --version-id VERSION_ID ax datasets export NAME_OR_ID --output-dir ./data ax datasets export NAME_OR_ID --stdout ax datasets export NAME_OR_ID --stdout | jq '.[0]' ax datasets export NAME_OR_ID --space SPACE # required when using dataset name instead of ID
| Flag | Type | Default | Description | |------|------|---------|-------------| | `NAME_OR_ID` | string | required | Dataset name or ID (positional) | | `--space` | string | none | Space name or ID (required if using dataset name instead of ID) | | `--version-id` | string | latest | Export a specific dataset version | | `--all` | bool | false | Unlimited bulk export (use for datasets > 500 examples) | | `--output-dir` | string | `.` | Output directory | | `--stdout` | bool | false | Print JSON to stdout instead of file | | `-p, --profile` | string | default | Configuration profile |
**Agent auto-escalation rule:** If an export returns exactly 500 examples, the result is likely truncated — re-run with `--all` to get the full dataset.
**Export completeness verification:** After exporting, confirm the row count matches what the server reports:
# Get the server-reported count from dataset metadata
ax datasets get DATASET_NAME --space SPACE -o json | jq '.versions[-1] | {version: .id, examples: .example_count}'
# Compare to what was exported
jq 'length' dataset_*/examples.json
# If counts differ, re-export with --allOutput is a JSON array of example objects. Each example has system fields (`id`, `created_at`, `updated_at`) plus all user-defined fields:
[
{
"id": "ex_001",
"created_at": "2026-01-15T10:00:00Z",
"updated_at": "2026-01-15T10:00:00Z",
"question": "WhaA 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.