Datasets:
Upload data/metadata.yaml with huggingface_hub
Browse files- data/metadata.yaml +49 -0
data/metadata.yaml
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: cli-bench
|
| 2 |
+
version: "1.0"
|
| 3 |
+
description: |
|
| 4 |
+
CLI-Bench evaluates AI agents on their ability to use command-line tools
|
| 5 |
+
to accomplish real-world tasks across developer platforms and services.
|
| 6 |
+
Tasks span single-tool operations, multi-tool orchestration, and complex
|
| 7 |
+
workflows involving fictional CLIs.
|
| 8 |
+
|
| 9 |
+
task_count: 40
|
| 10 |
+
difficulty_distribution:
|
| 11 |
+
easy: 20
|
| 12 |
+
medium: 10
|
| 13 |
+
hard: 10
|
| 14 |
+
|
| 15 |
+
categories:
|
| 16 |
+
- devops
|
| 17 |
+
- project_mgmt
|
| 18 |
+
- communication
|
| 19 |
+
- data_ops
|
| 20 |
+
- custom_cli
|
| 21 |
+
- composite
|
| 22 |
+
|
| 23 |
+
tools:
|
| 24 |
+
real_world:
|
| 25 |
+
- gh # GitHub CLI
|
| 26 |
+
- slack # Slack CLI
|
| 27 |
+
- linear # Linear CLI
|
| 28 |
+
- notion # Notion CLI
|
| 29 |
+
- google # Google Workspace (Gmail, Calendar, Drive)
|
| 30 |
+
- jira # Jira CLI
|
| 31 |
+
- microsoft # Microsoft 365
|
| 32 |
+
fictional:
|
| 33 |
+
- kforge # Artifact/deployment management
|
| 34 |
+
- flowctl # Workflow/approval engine
|
| 35 |
+
- meshctl # Service mesh control
|
| 36 |
+
- datapipe # ETL pipeline builder
|
| 37 |
+
- alertmgr # Alert/incident management
|
| 38 |
+
|
| 39 |
+
scoring:
|
| 40 |
+
dimensions:
|
| 41 |
+
outcome: "Did the agent achieve the desired end state?"
|
| 42 |
+
efficiency: "Did the agent use a reasonable number of commands?"
|
| 43 |
+
recovery: "Did the agent handle errors or unexpected states gracefully?"
|
| 44 |
+
default_weights:
|
| 45 |
+
outcome: 0.6
|
| 46 |
+
efficiency: 0.2
|
| 47 |
+
recovery: 0.2
|
| 48 |
+
|
| 49 |
+
created: "2026-03-12"
|