{"id":"b09acbe6-c022-4bfe-9d50-aee116a4610d","shortId":"PzRNMM","kind":"skill","title":"arize-dataset","tagline":"INVOKE THIS SKILL when creating, managing, or querying Arize datasets and examples. Also use when the user needs test data or evaluation examples for their model. Covers dataset CRUD, appending examples, exporting data, and file-based dataset creation using the ax CLI.","description":"# Arize Dataset Skill\n\n> **`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`.\n\n## Concepts\n\n- **Dataset** = a versioned collection of examples used for evaluation and experimentation\n- **Dataset Version** = a snapshot of a dataset at a point in time; updates can be in-place or create a new version\n- **Example** = a single record in a dataset with arbitrary user-defined fields (e.g., `question`, `answer`, `context`)\n- **Space** = an organizational container; datasets belong to a space\n\nSystem-managed fields on examples (`id`, `created_at`, `updated_at`) are auto-generated by the server -- never include them in create or append payloads.\n\n## Prerequisites\n\nProceed directly with the task — run the `ax` command you need. Do NOT check versions, env vars, or profiles upfront.\n\nIf an `ax` command fails, troubleshoot based on the error:\n- `command not found` or version error → see references/ax-setup.md\n- `401 Unauthorized` / missing API key → run `ax profiles show` to 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\n- Space unknown → run `ax spaces list` to pick by name, or ask the user\n- Project unclear → ask the user, or run `ax projects list -o json --limit 100` and present as selectable options\n- **Security:** Never read `.env` files or search the filesystem for credentials. Use `ax profiles` for Arize credentials and `ax ai-integrations` for LLM provider keys. If credentials are not available through these channels, ask the user.\n\n## List Datasets: `ax datasets list`\n\nBrowse datasets in a space. Output goes to stdout.\n\n```bash\nax datasets list\nax datasets list --space SPACE --limit 20\nax datasets list --cursor CURSOR_TOKEN\nax datasets list -o json\n```\n\n### Flags\n\n| Flag | Type | Default | Description |\n|------|------|---------|-------------|\n| `--space` | string | from profile | Filter by space |\n| `--limit, -l` | int | 15 | Max results (1-100) |\n| `--cursor` | string | none | Pagination cursor from previous response |\n| `-o, --output` | string | table | Output format: table, json, csv, parquet, or file path |\n| `-p, --profile` | string | default | Configuration profile |\n\n## Get Dataset: `ax datasets get`\n\nQuick metadata lookup -- returns dataset name, space, timestamps, and version list.\n\n```bash\nax datasets get NAME_OR_ID\nax datasets get NAME_OR_ID -o json\nax datasets get NAME_OR_ID --space SPACE   # required when using dataset name instead of ID\n```\n\n### Flags\n\n| Flag | Type | Default | Description |\n|------|------|---------|-------------|\n| `NAME_OR_ID` | string | required | Dataset name or ID (positional) |\n| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |\n| `-o, --output` | string | table | Output format |\n| `-p, --profile` | string | default | Configuration profile |\n\n### Response fields\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `id` | string | Dataset ID |\n| `name` | string | Dataset name |\n| `space_id` | string | Space this dataset belongs to |\n| `created_at` | datetime | When the dataset was created |\n| `updated_at` | datetime | Last modification time |\n| `versions` | array | List of dataset versions (id, name, dataset_id, created_at, updated_at) |\n\n## Export Dataset: `ax datasets export`\n\nDownload all examples to a file. Use `--all` for datasets larger than 500 examples (unlimited bulk export).\n\n```bash\nax datasets export NAME_OR_ID\n# -> dataset_abc123_20260305_141500/examples.json\n\nax datasets export NAME_OR_ID --all\nax datasets export NAME_OR_ID --version-id VERSION_ID\nax datasets export NAME_OR_ID --output-dir ./data\nax datasets export NAME_OR_ID --stdout\nax datasets export NAME_OR_ID --stdout | jq '.[0]'\nax datasets export NAME_OR_ID --space SPACE   # required when using dataset name instead of ID\n```\n\n### Flags\n\n| Flag | Type | Default | Description |\n|------|------|---------|-------------|\n| `NAME_OR_ID` | string | required | Dataset name or ID (positional) |\n| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |\n| `--version-id` | string | latest | Export a specific dataset version |\n| `--all` | bool | false | Unlimited bulk export (use for datasets > 500 examples) |\n| `--output-dir` | string | `.` | Output directory |\n| `--stdout` | bool | false | Print JSON to stdout instead of file |\n| `-p, --profile` | string | default | Configuration profile |\n\n**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.\n\n**Export completeness verification:** After exporting, confirm the row count matches what the server reports:\n```bash\n# Get the server-reported count from dataset metadata\nax datasets get DATASET_NAME --space SPACE -o json | jq '.versions[-1] | {version: .id, examples: .example_count}'\n\n# Compare to what was exported\njq 'length' dataset_*/examples.json\n\n# If counts differ, re-export with --all\n```\n\nOutput is a JSON array of example objects. Each example has system fields (`id`, `created_at`, `updated_at`) plus all user-defined fields:\n\n```json\n[\n  {\n    \"id\": \"ex_001\",\n    \"created_at\": \"2026-01-15T10:00:00Z\",\n    \"updated_at\": \"2026-01-15T10:00:00Z\",\n    \"question\": \"What is 2+2?\",\n    \"answer\": \"4\",\n    \"topic\": \"math\"\n  }\n]\n```\n\n## Create Dataset: `ax datasets create`\n\nCreate a new dataset from a data file.\n\n```bash\nax datasets create --name \"My Dataset\" --space SPACE --file data.csv\nax datasets create --name \"My Dataset\" --space SPACE --file data.json\nax datasets create --name \"My Dataset\" --space SPACE --file data.jsonl\nax datasets create --name \"My Dataset\" --space SPACE --file data.parquet\n```\n\n### Flags\n\n| Flag | Type | Required | Description |\n|------|------|----------|-------------|\n| `--name, -n` | string | yes | Dataset name |\n| `--space` | string | yes | Space to create the dataset in |\n| `--file, -f` | path | yes | Data file: CSV, JSON, JSONL, or Parquet |\n| `-o, --output` | string | no | Output format for the returned dataset metadata |\n| `-p, --profile` | string | no | Configuration profile |\n\n### Passing data via stdin\n\nUse `--file -` to pipe data directly — no temp file needed:\n\n```bash\necho '[{\"question\": \"What is 2+2?\", \"answer\": \"4\"}]' | ax datasets create --name \"my-dataset\" --space SPACE --file -\n\n# Or with a heredoc\nax datasets create --name \"my-dataset\" --space SPACE --file - << 'EOF'\n[{\"question\": \"What is 2+2?\", \"answer\": \"4\"}]\nEOF\n```\n\nTo add rows to an existing dataset, use `ax datasets append --json '[...]'` instead — no file needed.\n\n### Supported file formats\n\n| Format | Extension | Notes |\n|--------|-----------|-------|\n| CSV | `.csv` | Column headers become field names |\n| JSON | `.json` | Array of objects |\n| JSON Lines | `.jsonl` | One object per line (NOT a JSON array) |\n| Parquet | `.parquet` | Column names become field names; preserves types |\n\n**Format gotchas:**\n- **CSV**: Loses type information — dates become strings, `null` becomes empty string. Use JSON/Parquet to preserve types.\n- **JSONL**: Each line is a separate JSON object. A JSON array (`[{...}, {...}]`) in a `.jsonl` file will fail — use `.json` extension instead.\n- **Parquet**: Preserves column types. Requires `pandas`/`pyarrow` to read locally: `pd.read_parquet(\"examples.parquet\")`.\n\n## Append Examples: `ax datasets append`\n\nAdd examples to an existing dataset. Two input modes -- use whichever fits.\n\n### Inline JSON (agent-friendly)\n\nGenerate the payload directly -- no temp files needed:\n\n```bash\nax datasets append DATASET_NAME --space SPACE --json '[{\"question\": \"What is 2+2?\", \"answer\": \"4\"}]'\n\nax datasets append DATASET_NAME --space SPACE --json '[\n  {\"question\": \"What is gravity?\", \"answer\": \"A fundamental force...\"},\n  {\"question\": \"What is light?\", \"answer\": \"Electromagnetic radiation...\"}\n]'\n```\n\n### From a file\n\n```bash\nax datasets append DATASET_NAME --space SPACE --file new_examples.csv\nax datasets append DATASET_NAME --space SPACE --file additions.json\n```\n\n### To a specific version\n\n```bash\nax datasets append DATASET_NAME --space SPACE --json '[{\"q\": \"...\"}]' --version-id VERSION_ID\n```\n\n### Flags\n\n| Flag | Type | Required | Description |\n|------|------|----------|-------------|\n| `NAME_OR_ID` | string | yes | Dataset name or ID (positional); add `--space` when using name |\n| `--space` | string | no | Space name or ID (required if using dataset name instead of ID) |\n| `--json` | string | mutex | JSON array of example objects |\n| `--file, -f` | path | mutex | Data file (CSV, JSON, JSONL, Parquet) |\n| `--version-id` | string | no | Append to a specific version (default: latest) |\n| `-o, --output` | string | no | Output format for the returned dataset metadata |\n| `-p, --profile` | string | no | Configuration profile |\n\nExactly one of `--json` or `--file` is required.\n\n### Validation\n\n- Each example must be a JSON object with at least one user-defined field\n- Maximum 100,000 examples per request\n\n**Schema validation before append:** If the dataset already has examples, inspect its schema before appending to avoid silent field mismatches:\n\n```bash\n# Check existing field names in the dataset\nax datasets export DATASET_NAME --space SPACE --stdout | jq '.[0] | keys'\n\n# Verify your new data has matching field names\necho '[{\"question\": \"...\"}]' | jq '.[0] | keys'\n\n# Both outputs should show the same user-defined fields\n```\n\nFields are free-form: extra fields in new examples are added, and missing fields become null. However, typos in field names (e.g., `queston` vs `question`) create new columns silently -- verify spelling before appending.\n\n## Delete Dataset: `ax datasets delete`\n\n```bash\nax datasets delete NAME_OR_ID\nax datasets delete NAME_OR_ID --space SPACE   # required when using dataset name instead of ID\nax datasets delete NAME_OR_ID --force   # skip confirmation prompt\n```\n\n### Flags\n\n| Flag | Type | Default | Description |\n|------|------|---------|-------------|\n| `NAME_OR_ID` | string | required | Dataset name or ID (positional) |\n| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |\n| `--force, -f` | bool | false | Skip confirmation prompt |\n| `-p, --profile` | string | default | Configuration profile |\n\n## Workflows\n\n### Find a dataset by name\n\nAll dataset commands accept a name or ID directly. You can pass a dataset name as the positional argument (add `--space SPACE` when not using an ID):\n\n```bash\n# Use name directly\nax datasets get \"eval-set-v1\" --space SPACE\nax datasets export \"eval-set-v1\" --space SPACE\n\n# Or resolve name to ID via list if you need the base64 ID\nax datasets list -o json | jq '.[] | select(.name == \"eval-set-v1\") | .id'\n```\n\n### Create a dataset from file for evaluation\n\n1. Prepare a CSV/JSON/Parquet file with your evaluation columns (e.g., `input`, `expected_output`)\n   - If generating data inline, pipe it via stdin using `--file -` (see the Create Dataset section)\n2. `ax datasets create --name \"eval-set-v1\" --space SPACE --file eval_data.csv`\n3. Verify: `ax datasets get DATASET_NAME --space SPACE`\n4. Use the dataset name to run experiments\n\n### Add examples to an existing dataset\n\n```bash\n# Find the dataset\nax datasets list --space SPACE\n\n# Append inline or from a file using the dataset name (see Append Examples section for full syntax)\nax datasets append DATASET_NAME --space SPACE --json '[{\"question\": \"...\", \"answer\": \"...\"}]'\nax datasets append DATASET_NAME --space SPACE --file additional_examples.csv\n```\n\n### Download dataset for offline analysis\n\n1. `ax datasets list --space SPACE` -- find the dataset name\n2. `ax datasets export DATASET_NAME --space SPACE` -- download to file\n3. Parse the JSON: `jq '.[] | .question' dataset_*/examples.json`\n\n### Export a specific version\n\n```bash\n# List versions\nax datasets get DATASET_NAME --space SPACE -o json | jq '.versions'\n\n# Export that version\nax datasets export DATASET_NAME --space SPACE --version-id VERSION_ID\n```\n\n### Iterate on a dataset\n\n1. Export current version: `ax datasets export DATASET_NAME --space SPACE`\n2. Modify the examples locally\n3. Append new rows: `ax datasets append DATASET_NAME --space SPACE --file new_rows.csv`\n4. Or create a fresh version: `ax datasets create --name \"eval-set-v2\" --space SPACE --file updated_data.json`\n\n### Pipe export to other tools\n\n```bash\n# Count examples\nax datasets export DATASET_NAME --space SPACE --stdout | jq 'length'\n\n# Extract a single field\nax datasets export DATASET_NAME --space SPACE --stdout | jq '.[].question'\n\n# Convert to CSV with jq\nax datasets export DATASET_NAME --space SPACE --stdout | jq -r '.[] | [.question, .answer] | @csv'\n```\n\n## Dataset Example Schema\n\nExamples are free-form JSON objects. There is no fixed schema -- columns are whatever fields you provide. System-managed fields are added by the server:\n\n| Field | Type | Managed by | Notes |\n|-------|------|-----------|-------|\n| `id` | string | server | Auto-generated UUID. Required on update, forbidden on create/append |\n| `created_at` | datetime | server | Immutable creation timestamp |\n| `updated_at` | datetime | server | Auto-updated on modification |\n| *(any user field)* | any JSON type | user | String, number, boolean, null, nested object, array |\n\n\n## Related Skills\n\n- **arize-trace**: Export production spans to understand what data to put in datasets → use `arize-trace`\n- **arize-experiment**: Run evaluations against this dataset → next step is `arize-experiment`\n- **arize-prompt-optimization**: Use dataset + experiment results to improve prompts → use `arize-prompt-optimization`\n\n## Troubleshooting\n\n| Problem | Solution |\n|---------|----------|\n| `ax: command not found` | See references/ax-setup.md |\n| `401 Unauthorized` | API key is wrong, expired, or doesn't have access to this space. Fix the profile using references/ax-profiles.md. |\n| `No profile found` | No profile is configured. See references/ax-profiles.md to create one. |\n| `Dataset not found` | Verify dataset ID with `ax datasets list` |\n| `File format error` | Supported: CSV, JSON, JSONL, Parquet. Use `--file -` to read from stdin. |\n| `platform-managed column` | Remove `id`, `created_at`, `updated_at` from create/append payloads |\n| `reserved column` | Remove `time`, `count`, or any `source_record_*` field |\n| `Provide either --json or --file` | Append requires exactly one input source |\n| `Examples array is empty` | Ensure your JSON array or file contains at least one example |\n| `not a JSON object` | Each element in the `--json` array must be a `{...}` object, not a string or number |\n\n## Save Credentials for Future Use\n\nSee references/ax-profiles.md § Save Credentials for Future Use.","tags":["arize","dataset","skills","arize-ai","agent-skills","ai-agents","ai-observability","claude-code","codex","cursor","datasets","experiments"],"capabilities":["skill","source-arize-ai","skill-arize-dataset","topic-agent-skills","topic-ai-agents","topic-ai-observability","topic-arize","topic-claude-code","topic-codex","topic-cursor","topic-datasets","topic-experiments","topic-llmops","topic-tracing"],"categories":["arize-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/Arize-ai/arize-skills/arize-dataset","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add Arize-ai/arize-skills","source_repo":"https://github.com/Arize-ai/arize-skills","install_from":"skills.sh"}},"qualityScore":"0.456","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 13 github stars · SKILL.md body (14,919 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-24T01:02:56.212Z","embedding":null,"createdAt":"2026-04-23T13:03:47.080Z","updatedAt":"2026-04-24T01:02:56.212Z","lastSeenAt":"2026-04-24T01:02:56.212Z","tsv":"'+2':843,970,1002,1155 '-01':826,834 '-1':772 '-100':378 '-15':827,835 '/admin':250 '/data':604 '/examples.json':786,1741 '0':620,1371,1384 '00':829,837 '000':1330 '001':822 '00z':830,838 '1':377,1599,1713,1779 '100':280,1329 '141500/examples.json':576 '15':374 '2':842,969,1001,1154,1627,1723,1790 '20':347 '2026':825,833 '20260305':575 '3':1640,1734,1795 '4':845,972,1004,1157,1649,1808 '401':207,2013 '500':561,686,720 'abc123':574 'accept':60,1520 'access':2024 'ad':1407,1902 'add':1007,1117,1237,1536,1657 'additional_examples.csv':1707 'additions.json':1202 'agent':710,1132 'agent-friend':1131 'ai':306 'ai-integr':305 'alreadi':1341 'also':16 'analysi':1712 'answer':131,844,971,1003,1156,1170,1178,1698,1874 'api':210,228,251,2015 'app.arize.com':249 'app.arize.com/admin':248 'append':33,166,1016,1112,1116,1145,1160,1187,1196,1210,1280,1337,1348,1429,1672,1683,1691,1701,1796,1801,2097 'arbitrari':124 'argument':1535 'ariz':2,12,47,56,301,1957,1972,1975,1986,1989,2001 'arize-dataset':1 'arize-experi':1974,1985 'arize-prompt-optim':1988,2000 'arize-trac':1956,1971 'array':531,799,1037,1050,1088,1261,1953,2104,2110,2127 'ask':264,269,320 'auto':155,712,1915,1936 'auto-escal':711 'auto-gener':154,1914 'auto-upd':1935 'avail':316 'avoid':1350 'ax':45,78,176,191,213,256,274,298,304,325,338,341,348,354,408,423,429,437,546,567,577,584,595,605,612,621,761,850,862,872,882,892,973,987,1014,1114,1143,1158,1185,1194,1208,1362,1432,1436,1442,1458,1548,1557,1579,1628,1642,1667,1689,1699,1714,1724,1749,1763,1783,1799,1814,1834,1848,1863,2007,2052 'base':40,195 'base64':70,1577 'bash':337,422,566,751,861,964,1142,1184,1207,1354,1435,1544,1663,1746,1831 'becom':1032,1055,1067,1070,1411 'belong':138,514 'bool':678,695,1500 'boolean':1949 'brows':328 'bulk':564,681 'channel':319 'check':182,1355 'cli':46 'collect':85 'column':1030,1053,1101,1424,1607,1891,2072,2083 'command':177,192,199,1519,2008 'compar':778 'complet':738 'concept':81 'configur':404,493,708,948,1302,1509,2039 'confirm':742,1466,1503 'contain':136,2113 'context':132 'convert':1858 'count':745,757,777,788,1832,2086 'cover':30 'creat':8,112,149,164,516,523,540,809,823,848,852,853,864,874,884,894,918,975,989,1422,1592,1624,1630,1810,1816,1924,2043,2075 'create/append':1923,2080 'create/update':235 'creation':42,1929 'credenti':296,302,313,2138,2145 'crud':32 'csv':395,928,1028,1029,1062,1271,1860,1875,2059 'csv/json/parquet':1602 'current':219,1781 'cursor':351,352,379,383 'data':23,36,859,926,951,958,1269,1376,1614,1965 'data.csv':871 'data.json':881 'data.jsonl':891 'data.parquet':901 'dataset':3,13,31,41,48,82,93,99,122,137,324,326,329,339,342,349,355,407,409,415,424,430,438,448,463,478,502,506,513,521,534,538,545,547,558,568,573,578,585,596,606,613,622,632,647,662,675,685,736,759,762,764,785,849,851,856,863,867,873,877,883,887,893,897,911,920,942,974,979,988,993,1012,1015,1115,1122,1144,1146,1159,1161,1186,1188,1195,1197,1209,1211,1232,1252,1296,1340,1361,1363,1365,1431,1433,1437,1443,1453,1459,1478,1493,1514,1518,1530,1549,1558,1580,1594,1625,1629,1643,1645,1652,1662,1666,1668,1680,1690,1692,1700,1702,1709,1715,1721,1725,1727,1740,1750,1752,1764,1766,1778,1784,1786,1800,1802,1815,1835,1837,1849,1851,1864,1866,1876,1969,1981,1993,2045,2049,2053 'date':1066 'datetim':518,526,1926,1933 'default':362,403,456,492,640,707,1285,1471,1508 'defin':127,817,1326,1394 'delet':1430,1434,1438,1444,1460 'descript':363,457,499,641,906,1226,1472 'differ':789 'dir':603,690 'direct':170,245,959,1137,1525,1547 'directori':693 'doesn':240,2021 'download':549,1708,1731 'e.g':64,73,129,1418,1608 'echo':965,1381 'either':2093 'electromagnet':1179 'element':2123 'empti':1071,2106 'ensur':2107 'env':58,184,289 'eof':997,1005 'error':198,204,2057 'escal':713 'eval':1552,1561,1588,1633,1819 'eval-set-v1':1551,1560,1587,1632 'eval-set-v2':1818 'eval_data.csv':1639 'evalu':25,90,1598,1606,1978 'ex':821 'exact':719,1304,2099 'exampl':15,26,34,87,116,147,551,562,687,721,775,776,801,804,1113,1118,1263,1314,1331,1343,1405,1658,1684,1793,1833,1877,1879,2103,2117 'examples.parquet':1111 'exist':1011,1121,1356,1661 'expect':1610 'experi':1656,1976,1987,1994 'experiment':92 'expir':2019 'export':35,544,548,565,569,579,586,597,607,614,623,672,682,717,737,741,782,792,1364,1559,1726,1742,1760,1765,1780,1785,1827,1836,1850,1865,1959 'extens':1026,1097 'extra':1401 'extract':1844 'f':923,1266,1499 'fail':193,1094 'fals':679,696,1501 'field':128,145,496,497,807,818,1033,1056,1327,1352,1357,1379,1395,1396,1402,1410,1416,1847,1894,1900,1906,1942,2091 'file':39,290,398,554,703,860,870,880,890,900,922,927,955,962,982,996,1020,1023,1092,1140,1183,1192,1201,1265,1270,1309,1596,1603,1621,1638,1677,1706,1733,1806,1824,2055,2064,2096,2112 'file-bas':38 'filesystem':294 'filter':368 'find':75,1512,1664,1719 'fit':1128 'fix':1889,2028 'flag':53,359,360,453,454,637,638,902,903,1222,1223,1468,1469 'follow':232 'forbidden':1921 'forc':1173,1464,1498 'form':1400,1883 'format':392,488,938,1024,1025,1060,1292,2056 'found':201,2010,2035,2047 'free':1399,1882 'free-form':1398,1881 'fresh':1812 'friend':1133 'full':735,1687 'fundament':1172 'futur':2140,2147 'generat':156,1134,1613,1916 'get':406,410,425,431,439,733,752,763,1550,1644,1751 'goe':334 'gotcha':1061 'graviti':1169 'header':1031 'heredoc':986 'howev':1413 'id':72,148,428,434,442,452,460,466,474,482,500,503,509,536,539,572,582,589,592,594,600,610,617,626,636,644,650,658,666,669,774,808,820,1219,1221,1229,1235,1248,1256,1277,1441,1447,1457,1463,1475,1481,1489,1497,1524,1543,1570,1578,1591,1772,1774,1911,2050,2074 'immut':1928 'improv':1997 'in-plac':108 'includ':161 'inform':1065 'inlin':1129,1615,1673 'input':1124,1609,2101 'inspect':217,1344 'instead':450,480,634,664,701,1018,1098,1254,1455,1495 'int':373 'integr':307 'invok':4 'iter':1775 'jq':619,770,783,1370,1383,1584,1738,1758,1842,1856,1862,1871 'json':278,358,394,436,698,769,798,819,929,1017,1035,1036,1040,1049,1084,1087,1096,1130,1150,1165,1215,1257,1260,1272,1307,1318,1583,1696,1737,1757,1884,1944,2060,2094,2109,2120,2126 'json/parquet':1074 'jsonl':930,1042,1078,1091,1273,2061 'key':211,229,244,252,311,1372,1385,2016 'l':372 'larger':559 'last':527 'latest':671,1286 'least':1322,2115 'length':784,1843 'light':1177 'like':725 'limit':279,346,371 'line':1041,1046,1080 'list':80,258,276,323,327,340,343,350,356,421,532,1572,1581,1669,1716,1747,2054 'llm':309 'local':1108,1794 'lookup':413 'lose':1063 'manag':9,144,1899,1908,2071 'match':746,1378 'math':847 'max':375 'maximum':1328 'metadata':412,760,943,1297 'mismatch':1353 'miss':209,225,1409 'mode':1125 'model':29 'modif':528,1939 'modifi':1791 'must':1315,2128 'mutex':1259,1268 'my-dataset':977,991 'my-workspac':65 'n':908 'name':63,262,416,426,432,440,449,458,464,472,479,504,507,537,570,580,587,598,608,615,624,633,642,648,656,663,765,865,875,885,895,907,912,976,990,1034,1054,1057,1147,1162,1189,1198,1212,1227,1233,1241,1246,1253,1358,1366,1380,1417,1439,1445,1454,1461,1473,1479,1487,1494,1516,1522,1531,1546,1568,1586,1631,1646,1653,1681,1693,1703,1722,1728,1753,1767,1787,1803,1817,1838,1852,1867 'need':21,179,963,1021,1141,1575 'nest':1951 'never':160,287 'new':114,855,1375,1404,1423,1797 'new_examples.csv':1193 'new_rows.csv':1807 'next':1982 'none':381,470,654,1485 'note':1027,1910 'null':1069,1412,1950 'number':1948,2136 'o':277,357,387,435,483,768,933,1287,1582,1756 'object':802,1039,1044,1085,1264,1319,1885,1952,2121,2131 'offlin':1711 'one':1043,1305,1323,2044,2100,2116 'optim':1991,2003 'option':285 'organiz':135 'output':333,388,391,484,487,602,689,692,795,934,937,1288,1291,1387,1611 'output-dir':601,688 'p':400,489,704,944,1298,1505 'pagin':382 'panda':1104 'parquet':396,932,1051,1052,1099,1110,1274,2062 'pars':1735 'pass':950,1528 'path':399,924,1267 'payload':167,1136,2081 'pd.read':1109 'per':1045,1332 'pick':260 'pipe':957,1616,1826 'place':110 'platform':2070 'platform-manag':2069 'plus':813 'point':102 'posit':467,651,1236,1482,1534 'prepar':1600 'prerequisit':168 'present':282 'preserv':1058,1076,1100 'previous':385 'print':697 'problem':2005 'proceed':169 'product':1960 'profil':187,214,220,223,299,367,401,405,490,494,705,709,945,949,1299,1303,1506,1510,2030,2034,2037 'project':267,275 'prompt':1467,1504,1990,1998,2002 'provid':310,1896,2092 'put':1967 'pyarrow':1105 'q':1216 'queri':11 'question':130,839,966,998,1151,1166,1174,1382,1421,1697,1739,1857,1873 'queston':1419 'quick':411 'r':1872 'radiat':1180 're':728,791 're-export':790 're-run':727 'read':288,1107,2066 'record':119,2090 'references/ax-profiles.md':233,2032,2041,2143 'references/ax-setup.md':206,2012 'relat':1954 'remov':2073,2084 'report':750,756 'request':1333 'requir':445,462,475,629,646,659,905,1103,1225,1249,1311,1450,1477,1490,1918,2098 'reserv':2082 'resolv':1567 'respons':386,495 'result':376,723,1995 'return':414,718,941,1295 'row':744,1008,1798 'rule':714 'run':174,212,255,273,729,1655,1977 'save':2137,2144 'schema':1334,1346,1878,1890 'search':292 'section':1626,1685 'secur':286 'see':205,1622,1682,2011,2040,2142 'select':284,1585 'separ':1083 'server':159,749,755,1905,1913,1927,1934 'server-report':754 'set':1553,1562,1589,1634,1820 'show':215,1389 'silent':1351,1425 'singl':118,1846 'skill':6,49,1955 'skill-arize-dataset' 'skip':1465,1502 'snapshot':96 'solut':2006 'sourc':2089,2102 'source-arize-ai' 'space':50,52,57,62,71,79,133,141,253,257,332,344,345,364,370,417,443,444,468,471,508,511,627,628,652,655,766,767,868,869,878,879,888,889,898,899,913,916,980,981,994,995,1148,1149,1163,1164,1190,1191,1199,1200,1213,1214,1238,1242,1245,1367,1368,1448,1449,1483,1486,1537,1538,1555,1556,1564,1565,1636,1637,1647,1648,1670,1671,1694,1695,1704,1705,1717,1718,1729,1730,1754,1755,1768,1769,1788,1789,1804,1805,1822,1823,1839,1840,1853,1854,1868,1869,2027 'span':1961 'specif':674,1205,1283,1744 'spell':1427 'stdin':953,1619,2068 'stdout':336,611,618,694,700,1369,1841,1855,1870 'step':1983 'string':365,380,389,402,461,469,485,491,501,505,510,645,653,670,691,706,909,914,935,946,1068,1072,1230,1243,1258,1278,1289,1300,1476,1484,1507,1912,1947,2134 'support':1022,2058 'syntax':1688 'system':143,806,1898 'system-manag':142,1897 't10':828,836 'tabl':390,393,486 'task':173 'temp':961,1139 'test':22 'time':104,529,2085 'timestamp':418,1930 'token':353 'tool':1830 'topic':846 'topic-agent-skills' 'topic-ai-agents' 'topic-ai-observability' 'topic-arize' 'topic-claude-code' 'topic-codex' 'topic-cursor' 'topic-datasets' 'topic-experiments' 'topic-llmops' 'topic-tracing' 'trace':1958,1973 'troubleshoot':194,2004 'truncat':726 'two':1123 'type':361,455,498,639,904,1059,1064,1077,1102,1224,1470,1907,1945 'typo':1414 'u3bhy2u6':74 'unauthor':208,2014 'unclear':268 'understand':1963 'unknown':254 'unlimit':563,680 'updat':105,151,524,542,811,831,1920,1931,1937,2077 'updated_data.json':1825 'upfront':188 'use':17,43,88,297,447,477,555,631,661,683,954,1013,1073,1095,1126,1240,1251,1452,1492,1541,1545,1620,1650,1678,1970,1992,1999,2031,2063,2141,2148 'user':20,126,239,266,271,322,816,1325,1393,1941,1946 'user-defin':125,815,1324,1392 'uuid':1917 'v1':1554,1563,1590,1635 'v2':1821 'valid':1312,1335 'var':59,185 'verif':739 'verifi':1373,1426,1641,2048 'version':84,94,115,183,203,420,530,535,591,593,668,676,771,773,1206,1218,1220,1276,1284,1745,1748,1759,1762,1771,1773,1782,1813 'version-id':590,667,1217,1275,1770 'via':952,1571,1618 'vs':1420 'whatev':1893 'whichev':1127 'workflow':1511 'workspac':67 'wrong':231,2018 'yes':910,915,925,1231","prices":[{"id":"4bc4dc16-8205-476a-8873-25614db2d852","listingId":"b09acbe6-c022-4bfe-9d50-aee116a4610d","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"Arize-ai","category":"arize-skills","install_from":"skills.sh"},"createdAt":"2026-04-23T13:03:47.080Z"}],"sources":[{"listingId":"b09acbe6-c022-4bfe-9d50-aee116a4610d","source":"github","sourceId":"Arize-ai/arize-skills/arize-dataset","sourceUrl":"https://github.com/Arize-ai/arize-skills/tree/main/skills/arize-dataset","isPrimary":false,"firstSeenAt":"2026-04-23T13:03:47.080Z","lastSeenAt":"2026-04-24T01:02:56.212Z"}],"details":{"listingId":"b09acbe6-c022-4bfe-9d50-aee116a4610d","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"Arize-ai","slug":"arize-dataset","github":{"repo":"Arize-ai/arize-skills","stars":13,"topics":["agent-skills","ai-agents","ai-observability","arize","claude-code","codex","cursor","datasets","experiments","llmops","tracing"],"license":"mit","html_url":"https://github.com/Arize-ai/arize-skills","pushed_at":"2026-04-24T00:52:08Z","description":"Agent skills for Arize — datasets, experiments, and traces via the ax CLI","skill_md_sha":"76258eecdcb75df67310e63b51f23999a391558d","skill_md_path":"skills/arize-dataset/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/Arize-ai/arize-skills/tree/main/skills/arize-dataset"},"layout":"multi","source":"github","category":"arize-skills","frontmatter":{"name":"arize-dataset","description":"INVOKE THIS SKILL when creating, managing, or querying Arize datasets and examples. Also use when the user needs test data or evaluation examples for their model. Covers dataset CRUD, appending examples, exporting data, and file-based dataset creation using the ax CLI."},"skills_sh_url":"https://skills.sh/Arize-ai/arize-skills/arize-dataset"},"updatedAt":"2026-04-24T01:02:56.212Z"}}