Datasets:
Upload folder using huggingface_hub
Browse files- README.md +43 -0
- data/train.jsonl +27 -0
- dataset_infos.json +43 -0
- seeds/linear_default.json +507 -0
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
dataset: linear-bench-mini
|
| 3 |
+
tags:
|
| 4 |
+
- agent-evals
|
| 5 |
+
- linear
|
| 6 |
+
- graphql
|
| 7 |
+
license: mit
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Linear Bench Mini
|
| 11 |
+
|
| 12 |
+
Linear Bench Mini captures the first 27 tasks from the Linear Bench
|
| 13 |
+
evaluation suite. Each row contains:
|
| 14 |
+
|
| 15 |
+
- natural-language prompt given to the agent
|
| 16 |
+
- seed template reference (`linear_default`)
|
| 17 |
+
- normalized expected state specs for every assertion, with mask fields copied
|
| 18 |
+
into each expectation so consumers do not need separate ignore-field logic
|
| 19 |
+
- impersonated user ID and basic metadata
|
| 20 |
+
|
| 21 |
+
## Files
|
| 22 |
+
|
| 23 |
+
- `data/train.jsonl`
|
| 24 |
+
- `dataset_infos.json`
|
| 25 |
+
- `seeds/linear_default.json`
|
| 26 |
+
|
| 27 |
+
## Context
|
| 28 |
+
|
| 29 |
+
The Linear Bench suite runs inside Diff the Universe's isolation engine, with
|
| 30 |
+
its own Postgres schema replaying the Linear GraphQL API. Agents interact via
|
| 31 |
+
Linear's public surface area to satisfy CRUD-style tasks (create issues, move
|
| 32 |
+
states, add labels, etc.).
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
```python
|
| 37 |
+
from datasets import load_dataset
|
| 38 |
+
|
| 39 |
+
ds = load_dataset("hubertmarek/linear-bench-mini", split="train")
|
| 40 |
+
print(ds[0]["expected_state"][0]["mask_fields"])
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
Subset derived from `examples/linear/testsuites/linear_bench.json` (first 27 tests).
|
data/train.jsonl
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"id": "linear-bench-mini-test_0", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new issue in the Engineering team titled 'Fix login bug' ", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "login bug"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 0, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 2 |
+
{"id": "linear-bench-mini-test_1", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new issue in the Engineering team titled 'Fix login bug' with high priority", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "login bug"}, "priority": {"eq": 2.0}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 1, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 3 |
+
{"id": "linear-bench-mini-test_2", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Move issue ENG-1 to 'In Progress' status", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"stateId": {"to": {"eq": "6963a682-5967-477a-9afc-0b8a5b70b070"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 2, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 4 |
+
{"id": "linear-bench-mini-test_3", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Assign issue ENG-2 to John Doe", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-2"}}, "expectation": {"expected_changes": {"assigneeId": {"from": {"eq": "03b0809e-713e-44ee-95de-b7a198b135ac"}, "to": {"eq": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 3, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 5 |
+
{"id": "linear-bench-mini-test_4", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Add a comment to issue ENG-1 saying 'I am working on this now'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "comments", "diff_type": "added", "selector": {"issueId": {"eq": "c6e168e3-fed4-45d0-b03f-a1c1f89ee7ab"}, "body": {"contains": "working on this"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 4, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 6 |
+
{"id": "linear-bench-mini-test_5", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new team called 'Design'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "teams", "diff_type": "added", "selector": {"name": {"eq": "Design"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}, {"entity": "workflow_states", "diff_type": "added", "selector": {"name": {"eq": "Backlog"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 2, "metadata": {"test_index": 5, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 7 |
+
{"id": "linear-bench-mini-test_6", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Change the priority of issue ENG-1 to Urgent", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"priority": {"to": {"eq": 1.0}}, "priorityLabel": {"to": {"eq": "Urgent"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 6, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 8 |
+
{"id": "linear-bench-mini-test_7", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new issue 'Improve performance' in Engineering team, assign to John, with description 'Optimize database queries'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "performance"}, "assigneeId": {"eq": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec"}, "description": {"contains": "database queries"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 7, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 9 |
+
{"id": "linear-bench-mini-test_8", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Update the description of issue ENG-1 to include 'Root cause: session timeout issue'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"description": {"to": {"contains": "session timeout"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 8, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 10 |
+
{"id": "linear-bench-mini-test_9", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create three new issues in the Engineering team: 'Update documentation', 'Refactor API endpoints', and 'Add unit tests'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}}, "expectation": {"expected_count": 3}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 9, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 11 |
+
{"id": "linear-bench-mini-test_10", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Mark issue ENG-1 as completed", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"stateId": {"to": {"eq": "4334c4ee-405c-4d2c-bf25-4dcb7a8c0512"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 10, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 12 |
+
{"id": "linear-bench-mini-test_11", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new label called 'Bugs' ", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_labels", "diff_type": "added", "selector": {"name": {"eq": "Bugs"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 11, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 13 |
+
{"id": "linear-bench-mini-test_12", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Add the newly created 'Bugs' label to the Engineering login issue currently assigned to John Doe.", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_label_issue_association", "diff_type": "added", "selector": {"issue_id": {"eq": "c6e168e3-fed4-45d0-b03f-a1c1f89ee7ab"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 12, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 14 |
+
{"id": "linear-bench-mini-test_13", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Add the 'UX' label to the onboarding dashboard issue that Sarah Smith owns.", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_label_issue_association", "diff_type": "added", "selector": {"issue_id": {"eq": "5c62f29d-0f6a-4c4d-9d25-52293e2a8d4f"}, "issue_label_id": {"eq": "f9c5b7c8-3909-4f8b-bc25-73e1b56a9c0c"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 13, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 15 |
+
{"id": "linear-bench-mini-test_14", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Rename the Engineering issue describing intermittent login failures to 'Fix login bug - follow up'.", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"title": {"to": {"contains": "follow up"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 14, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 16 |
+
{"id": "linear-bench-mini-test_15", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Add the 'RL' label to the login issue that John Doe recently commented on.", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_label_issue_association", "diff_type": "added", "selector": {"issue_id": {"eq": "c6e168e3-fed4-45d0-b03f-a1c1f89ee7ab"}, "issue_label_id": {"eq": "8f01ce9d-1433-4c4c-969d-21ca3bf2718f"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 15, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 17 |
+
{"id": "linear-bench-mini-test_16", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Move issue ENG-2 to 'In Review'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-2"}}, "expectation": {"expected_changes": {"stateId": {"to": {"eq": "4379b3d7-1143-4aa4-a3a6-da0c436e73b6"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 16, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 18 |
+
{"id": "linear-bench-mini-test_17", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Assign ENG-3 to Sarah Smith", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-3"}}, "expectation": {"expected_changes": {"assigneeId": {"to": {"eq": "03b0809e-713e-44ee-95de-b7a198b135ac"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 17, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 19 |
+
{"id": "linear-bench-mini-test_18", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new Engineering issue 'Polish navigation' with labels 'UX' and 'Urgent'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "Polish navigation"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}, {"entity": "issue_label_issue_association", "diff_type": "added", "selector": {}, "expectation": {"expected_count": {"min": 2}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 2, "metadata": {"test_index": 18, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 20 |
+
{"id": "linear-bench-mini-test_19", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Add a comment to ENG-3: 'Please add logs for the error path'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "comments", "diff_type": "added", "selector": {"issueId": {"eq": "87c1d2f3-66c4-4dd0-bc93-1b99d04dc374"}, "body": {"contains": "error path"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 19, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 21 |
+
{"id": "linear-bench-mini-test_20", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Update the seeded comment on ENG-1 to: 'Updated: working on a fix and adding tests'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "comments", "diff_type": "changed", "selector": {"id": {"eq": "e10f59c3-7a49-4d52-8dba-8c8602f8c807"}}, "expectation": {"expected_changes": {"body": {"to": {"contains": "Updated: working on a fix"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 20, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 22 |
+
{"id": "linear-bench-mini-test_21", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Delete the seeded comment on ENG-1", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "comments", "diff_type": "changed", "selector": {"id": {"eq": "e10f59c3-7a49-4d52-8dba-8c8602f8c807"}}, "expectation": {"expected_changes": {"archivedAt": {"from": {"exists": false}, "to": {"exists": true}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 21, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 23 |
+
{"id": "linear-bench-mini-test_22", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create two Engineering issues: 'Update onboarding docs' (label UX) and 'Add circuit breaker' (label Urgent)", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "onboarding docs"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}, {"entity": "issues", "diff_type": "added", "selector": {"teamId": {"eq": "ad608998-915c-4bad-bcd9-85ebfccccee8"}, "title": {"contains": "circuit breaker"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}, {"entity": "issue_label_issue_association", "diff_type": "added", "selector": {}, "expectation": {"expected_count": {"min": 2}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 3, "metadata": {"test_index": 22, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 24 |
+
{"id": "linear-bench-mini-test_23", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Cancel issue ENG-1 (set its status to Canceled)", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"stateId": {"to": {"eq": "d4f59a6d-33cb-45d1-8f4e-3e57536f912d"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 23, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 25 |
+
{"id": "linear-bench-mini-test_24", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Create a new label 'Backend' and add it to ENG-2", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_labels", "diff_type": "added", "selector": {"name": {"eq": "Backend"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}, {"entity": "issue_label_issue_association", "diff_type": "added", "selector": {"issue_id": {"eq": "5c62f29d-0f6a-4c4d-9d25-52293e2a8d4f"}}, "expectation": {"expected_count": 1}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 2, "metadata": {"test_index": 24, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 26 |
+
{"id": "linear-bench-mini-test_25", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Rename the label 'UX' to 'User Experience'", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issue_labels", "diff_type": "changed", "selector": {"id": {"eq": "f9c5b7c8-3909-4f8b-bc25-73e1b56a9c0c"}}, "expectation": {"expected_changes": {"name": {"to": {"eq": "User Experience"}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 25, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
| 27 |
+
{"id": "linear-bench-mini-test_26", "suite_id": "linear-bench", "suite_name": "Linear Bench", "suite_description": "Benchmark tests for Linear MCP operations", "prompt": "Unassign ENG-1 so it has no assignee", "type": "actionEval", "seed_template": "linear_default", "impersonate_user_id": "2790a7ee-fde0-4537-9588-e233aa5a68d1", "expected_state": [{"entity": "issues", "diff_type": "changed", "selector": {"identifier": {"eq": "ENG-1"}}, "expectation": {"expected_changes": {"assigneeId": {"to": {"exists": false}}}}, "mask_fields": ["created_at", "updated_at", "updatedAt", "createdAt", "editedAt"]}], "assertion_count": 1, "metadata": {"test_index": 26, "total_tests_in_suite": 27, "subset_size": 27, "generated_at": "2025-11-15T04:26:03.496062+00:00"}, "tags": ["linear", "graphql", "agent-eval", "mini"]}
|
dataset_infos.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"linear-bench-mini": {
|
| 3 |
+
"description": "Linear Bench mini (27 tasks) with normalized mask-aware expected states.",
|
| 4 |
+
"citation": "",
|
| 5 |
+
"homepage": "https://github.com/hubert/diff-the-universe",
|
| 6 |
+
"license": "mit",
|
| 7 |
+
"features": {
|
| 8 |
+
"id": {
|
| 9 |
+
"dtype": "string",
|
| 10 |
+
"id": null
|
| 11 |
+
},
|
| 12 |
+
"prompt": {
|
| 13 |
+
"dtype": "string",
|
| 14 |
+
"id": null
|
| 15 |
+
},
|
| 16 |
+
"seed_template": {
|
| 17 |
+
"dtype": "string",
|
| 18 |
+
"id": null
|
| 19 |
+
},
|
| 20 |
+
"expected_state": {
|
| 21 |
+
"dtype": "sequence",
|
| 22 |
+
"feature": {
|
| 23 |
+
"dtype": "dict"
|
| 24 |
+
}
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
"builder_name": "json",
|
| 28 |
+
"config_name": "linear-bench-mini",
|
| 29 |
+
"version": "1.0.0",
|
| 30 |
+
"splits": {
|
| 31 |
+
"train": {
|
| 32 |
+
"name": "train",
|
| 33 |
+
"num_bytes": 24440,
|
| 34 |
+
"num_examples": 27,
|
| 35 |
+
"dataset_name": "linear-bench-mini"
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"download_checksums": {},
|
| 39 |
+
"download_size": 24440,
|
| 40 |
+
"dataset_size": 24440,
|
| 41 |
+
"size_in_bytes": 24440
|
| 42 |
+
}
|
| 43 |
+
}
|
seeds/linear_default.json
ADDED
|
@@ -0,0 +1,507 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"organizations": [
|
| 3 |
+
{
|
| 4 |
+
"id": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 5 |
+
"name": "Test Organization",
|
| 6 |
+
"urlKey": "test-org",
|
| 7 |
+
"logoUrl": null,
|
| 8 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 9 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 10 |
+
"aiAddonEnabled": false,
|
| 11 |
+
"allowedAuthServices": [],
|
| 12 |
+
"allowedFileUploadContentTypes": [
|
| 13 |
+
"image/png",
|
| 14 |
+
"image/jpeg",
|
| 15 |
+
"application/pdf"
|
| 16 |
+
],
|
| 17 |
+
"createdIssueCount": 0,
|
| 18 |
+
"customerCount": 0,
|
| 19 |
+
"customersConfiguration": {},
|
| 20 |
+
"customersEnabled": false,
|
| 21 |
+
"defaultFeedSummarySchedule": null,
|
| 22 |
+
"feedEnabled": true,
|
| 23 |
+
"fiscalYearStartMonth": 0.0,
|
| 24 |
+
"gitBranchFormat": null,
|
| 25 |
+
"gitLinkbackMessagesEnabled": true,
|
| 26 |
+
"gitPublicLinkbackMessagesEnabled": false,
|
| 27 |
+
"hipaaComplianceEnabled": false,
|
| 28 |
+
"initiativeUpdateRemindersDay": "Friday",
|
| 29 |
+
"initiativeUpdateRemindersHour": 9.0,
|
| 30 |
+
"periodUploadVolume": 0.0,
|
| 31 |
+
"previousUrlKeys": [],
|
| 32 |
+
"projectUpdateRemindersDay": "Friday",
|
| 33 |
+
"projectUpdateRemindersHour": 9.0,
|
| 34 |
+
"projectUpdatesReminderFrequency": "never",
|
| 35 |
+
"releaseChannel": "stable",
|
| 36 |
+
"roadmapEnabled": true,
|
| 37 |
+
"samlEnabled": false,
|
| 38 |
+
"scimEnabled": false,
|
| 39 |
+
"slaDayCount": "all",
|
| 40 |
+
"userCount": 3,
|
| 41 |
+
"workingDays": [
|
| 42 |
+
1.0,
|
| 43 |
+
2.0,
|
| 44 |
+
3.0,
|
| 45 |
+
4.0,
|
| 46 |
+
5.0
|
| 47 |
+
]
|
| 48 |
+
}
|
| 49 |
+
],
|
| 50 |
+
"users": [
|
| 51 |
+
{
|
| 52 |
+
"id": "2790a7ee-fde0-4537-9588-e233aa5a68d1",
|
| 53 |
+
"email": "agent@example.com",
|
| 54 |
+
"name": "AI Agent",
|
| 55 |
+
"displayName": "Agent",
|
| 56 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 57 |
+
"active": true,
|
| 58 |
+
"admin": false,
|
| 59 |
+
"app": false,
|
| 60 |
+
"avatarBackgroundColor": "#3B82F6",
|
| 61 |
+
"avatarUrl": null,
|
| 62 |
+
"canAccessAnyPublicTeam": true,
|
| 63 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 64 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 65 |
+
"createdIssueCount": 0,
|
| 66 |
+
"description": null,
|
| 67 |
+
"disableReason": null,
|
| 68 |
+
"guest": false,
|
| 69 |
+
"initials": "AA",
|
| 70 |
+
"inviteHash": "agent-invite-hash",
|
| 71 |
+
"isAssignable": true,
|
| 72 |
+
"isMe": false,
|
| 73 |
+
"isMentionable": true,
|
| 74 |
+
"lastSeen": "2025-01-01T00:00:00",
|
| 75 |
+
"statusEmoji": null,
|
| 76 |
+
"statusLabel": null,
|
| 77 |
+
"statusUntilAt": null,
|
| 78 |
+
"timezone": "America/Los_Angeles",
|
| 79 |
+
"url": "https://linear.app/test-org/user/agent"
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"id": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec",
|
| 83 |
+
"email": "john@example.com",
|
| 84 |
+
"name": "John Doe",
|
| 85 |
+
"displayName": "John",
|
| 86 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 87 |
+
"active": true,
|
| 88 |
+
"admin": false,
|
| 89 |
+
"app": false,
|
| 90 |
+
"avatarBackgroundColor": "#10B981",
|
| 91 |
+
"avatarUrl": null,
|
| 92 |
+
"canAccessAnyPublicTeam": true,
|
| 93 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 94 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 95 |
+
"createdIssueCount": 0,
|
| 96 |
+
"description": null,
|
| 97 |
+
"disableReason": null,
|
| 98 |
+
"guest": false,
|
| 99 |
+
"initials": "JD",
|
| 100 |
+
"inviteHash": "john-invite-hash",
|
| 101 |
+
"isAssignable": true,
|
| 102 |
+
"isMe": false,
|
| 103 |
+
"isMentionable": true,
|
| 104 |
+
"lastSeen": "2025-01-01T00:00:00",
|
| 105 |
+
"statusEmoji": null,
|
| 106 |
+
"statusLabel": null,
|
| 107 |
+
"statusUntilAt": null,
|
| 108 |
+
"timezone": "America/New_York",
|
| 109 |
+
"url": "https://linear.app/test-org/user/john"
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"id": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 113 |
+
"email": "sarah@example.com",
|
| 114 |
+
"name": "Sarah Smith",
|
| 115 |
+
"displayName": "Sarah",
|
| 116 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 117 |
+
"active": true,
|
| 118 |
+
"admin": true,
|
| 119 |
+
"app": false,
|
| 120 |
+
"avatarBackgroundColor": "#F59E0B",
|
| 121 |
+
"avatarUrl": null,
|
| 122 |
+
"canAccessAnyPublicTeam": true,
|
| 123 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 124 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 125 |
+
"createdIssueCount": 0,
|
| 126 |
+
"description": null,
|
| 127 |
+
"disableReason": null,
|
| 128 |
+
"guest": false,
|
| 129 |
+
"initials": "SS",
|
| 130 |
+
"inviteHash": "sarah-invite-hash",
|
| 131 |
+
"isAssignable": true,
|
| 132 |
+
"isMe": false,
|
| 133 |
+
"isMentionable": true,
|
| 134 |
+
"lastSeen": "2025-01-01T00:00:00",
|
| 135 |
+
"statusEmoji": null,
|
| 136 |
+
"statusLabel": null,
|
| 137 |
+
"statusUntilAt": null,
|
| 138 |
+
"timezone": "Europe/London",
|
| 139 |
+
"url": "https://linear.app/test-org/user/sarah"
|
| 140 |
+
}
|
| 141 |
+
],
|
| 142 |
+
"teams": [
|
| 143 |
+
{
|
| 144 |
+
"id": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 145 |
+
"name": "Engineering",
|
| 146 |
+
"key": "ENG",
|
| 147 |
+
"displayName": "Engineering",
|
| 148 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 149 |
+
"description": "Engineering team",
|
| 150 |
+
"color": "#3B82F6",
|
| 151 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 152 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 153 |
+
"aiThreadSummariesEnabled": false,
|
| 154 |
+
"autoArchivePeriod": 6.0,
|
| 155 |
+
"currentProgress": {},
|
| 156 |
+
"cycleCalenderUrl": "",
|
| 157 |
+
"cycleCooldownTime": 0.0,
|
| 158 |
+
"cycleDuration": 2.0,
|
| 159 |
+
"cycleIssueAutoAssignCompleted": false,
|
| 160 |
+
"cycleIssueAutoAssignStarted": false,
|
| 161 |
+
"cycleLockToActive": false,
|
| 162 |
+
"cycleStartDay": 1.0,
|
| 163 |
+
"cyclesEnabled": true,
|
| 164 |
+
"defaultIssueEstimate": 1.0,
|
| 165 |
+
"groupIssueHistory": false,
|
| 166 |
+
"icon": null,
|
| 167 |
+
"inheritIssueEstimation": false,
|
| 168 |
+
"inheritWorkflowStatuses": false,
|
| 169 |
+
"inviteHash": "eng-team-invite",
|
| 170 |
+
"issueCount": 4,
|
| 171 |
+
"issueEstimationAllowZero": false,
|
| 172 |
+
"issueEstimationExtended": false,
|
| 173 |
+
"issueEstimationType": "notUsed",
|
| 174 |
+
"issueOrderingNoPriorityFirst": false,
|
| 175 |
+
"issueSortOrderDefaultToBottom": true,
|
| 176 |
+
"progressHistory": {},
|
| 177 |
+
"requirePriorityToLeaveTriage": false,
|
| 178 |
+
"scimManaged": false,
|
| 179 |
+
"setIssueSortOrderOnStateChange": "default",
|
| 180 |
+
"slackIssueComments": true,
|
| 181 |
+
"slackIssueStatuses": true,
|
| 182 |
+
"slackNewIssue": true,
|
| 183 |
+
"timezone": "America/Los_Angeles",
|
| 184 |
+
"triageEnabled": false,
|
| 185 |
+
"upcomingCycleCount": 3.0,
|
| 186 |
+
"private": false
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"id": "58c03c85-7b0c-466d-9a4c-120209fccb56",
|
| 190 |
+
"name": "Product",
|
| 191 |
+
"key": "PROD",
|
| 192 |
+
"displayName": "Product",
|
| 193 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 194 |
+
"description": "Product team",
|
| 195 |
+
"color": "#10B981",
|
| 196 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 197 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 198 |
+
"aiThreadSummariesEnabled": false,
|
| 199 |
+
"autoArchivePeriod": 6.0,
|
| 200 |
+
"currentProgress": {},
|
| 201 |
+
"cycleCalenderUrl": "",
|
| 202 |
+
"cycleCooldownTime": 0.0,
|
| 203 |
+
"cycleDuration": 2.0,
|
| 204 |
+
"cycleIssueAutoAssignCompleted": false,
|
| 205 |
+
"cycleIssueAutoAssignStarted": false,
|
| 206 |
+
"cycleLockToActive": false,
|
| 207 |
+
"cycleStartDay": 1.0,
|
| 208 |
+
"cyclesEnabled": true,
|
| 209 |
+
"defaultIssueEstimate": 1.0,
|
| 210 |
+
"groupIssueHistory": false,
|
| 211 |
+
"inheritIssueEstimation": false,
|
| 212 |
+
"inheritWorkflowStatuses": false,
|
| 213 |
+
"inviteHash": "prod-team-invite",
|
| 214 |
+
"issueCount": 0,
|
| 215 |
+
"issueEstimationAllowZero": false,
|
| 216 |
+
"issueEstimationExtended": false,
|
| 217 |
+
"issueEstimationType": "notUsed",
|
| 218 |
+
"issueOrderingNoPriorityFirst": false,
|
| 219 |
+
"issueSortOrderDefaultToBottom": true,
|
| 220 |
+
"progressHistory": {},
|
| 221 |
+
"requirePriorityToLeaveTriage": false,
|
| 222 |
+
"scimManaged": false,
|
| 223 |
+
"setIssueSortOrderOnStateChange": "default",
|
| 224 |
+
"slackIssueComments": true,
|
| 225 |
+
"slackIssueStatuses": true,
|
| 226 |
+
"slackNewIssue": true,
|
| 227 |
+
"timezone": "America/Los_Angeles",
|
| 228 |
+
"triageEnabled": false,
|
| 229 |
+
"upcomingCycleCount": 3.0,
|
| 230 |
+
"private": false
|
| 231 |
+
}
|
| 232 |
+
],
|
| 233 |
+
"workflow_states": [
|
| 234 |
+
{
|
| 235 |
+
"id": "8708b274-82d1-4769-bb1a-c4937db76d0f",
|
| 236 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 237 |
+
"name": "Backlog",
|
| 238 |
+
"color": "#95a2b3",
|
| 239 |
+
"position": 1.0,
|
| 240 |
+
"type": "backlog",
|
| 241 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 242 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"id": "741f29ae-cfb3-4b8a-a1f8-c5161c842366",
|
| 246 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 247 |
+
"name": "Todo",
|
| 248 |
+
"color": "#e2e2e2",
|
| 249 |
+
"position": 2.0,
|
| 250 |
+
"type": "unstarted",
|
| 251 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 252 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"id": "6963a682-5967-477a-9afc-0b8a5b70b070",
|
| 256 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 257 |
+
"name": "In Progress",
|
| 258 |
+
"color": "#f2c94c",
|
| 259 |
+
"position": 3.0,
|
| 260 |
+
"type": "started",
|
| 261 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 262 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"id": "4379b3d7-1143-4aa4-a3a6-da0c436e73b6",
|
| 266 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 267 |
+
"name": "In Review",
|
| 268 |
+
"color": "#eb5757",
|
| 269 |
+
"position": 4.0,
|
| 270 |
+
"type": "started",
|
| 271 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 272 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "4334c4ee-405c-4d2c-bf25-4dcb7a8c0512",
|
| 276 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 277 |
+
"name": "Done",
|
| 278 |
+
"color": "#5e6ad2",
|
| 279 |
+
"position": 5.0,
|
| 280 |
+
"type": "completed",
|
| 281 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 282 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"id": "d4f59a6d-33cb-45d1-8f4e-3e57536f912d",
|
| 286 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 287 |
+
"name": "Canceled",
|
| 288 |
+
"color": "#95a2b3",
|
| 289 |
+
"position": 6.0,
|
| 290 |
+
"type": "canceled",
|
| 291 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 292 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"id": "ab04ec5f-1292-48b0-9426-50d354957357",
|
| 296 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 297 |
+
"name": "Duplicate",
|
| 298 |
+
"color": "#95a2b3",
|
| 299 |
+
"position": 7.0,
|
| 300 |
+
"type": "canceled",
|
| 301 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 302 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 303 |
+
}
|
| 304 |
+
],
|
| 305 |
+
"issue_labels": [
|
| 306 |
+
{
|
| 307 |
+
"id": "6c2b0d3c-3d6d-4d91-9a77-b93b59b8d5a0",
|
| 308 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 309 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 310 |
+
"color": "#EB5757",
|
| 311 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 312 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 313 |
+
"name": "Urgent",
|
| 314 |
+
"description": "Work that must be handled immediately",
|
| 315 |
+
"isGroup": false,
|
| 316 |
+
"archivedAt": null,
|
| 317 |
+
"retiredAt": null,
|
| 318 |
+
"parentId": null,
|
| 319 |
+
"creatorId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 320 |
+
"inheritedFromId": null,
|
| 321 |
+
"lastAppliedAt": null
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"id": "f9c5b7c8-3909-4f8b-bc25-73e1b56a9c0c",
|
| 325 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 326 |
+
"teamId": null,
|
| 327 |
+
"color": "#56CCF2",
|
| 328 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 329 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 330 |
+
"name": "UX",
|
| 331 |
+
"description": "User experience improvements",
|
| 332 |
+
"isGroup": false,
|
| 333 |
+
"archivedAt": null,
|
| 334 |
+
"retiredAt": null,
|
| 335 |
+
"parentId": null,
|
| 336 |
+
"creatorId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 337 |
+
"inheritedFromId": null,
|
| 338 |
+
"lastAppliedAt": null
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"id": "8f01ce9d-1433-4c4c-969d-21ca3bf2718f",
|
| 342 |
+
"organizationId": "18c8630e-1fd6-4c2e-a032-aa2684c16e46",
|
| 343 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 344 |
+
"color": "#9B51E0",
|
| 345 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 346 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 347 |
+
"name": "RL",
|
| 348 |
+
"description": "Reinforcement learning",
|
| 349 |
+
"isGroup": false,
|
| 350 |
+
"archivedAt": null,
|
| 351 |
+
"retiredAt": null,
|
| 352 |
+
"parentId": null,
|
| 353 |
+
"creatorId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 354 |
+
"inheritedFromId": null,
|
| 355 |
+
"lastAppliedAt": null
|
| 356 |
+
}
|
| 357 |
+
],
|
| 358 |
+
"issues": [
|
| 359 |
+
{
|
| 360 |
+
"id": "c6e168e3-fed4-45d0-b03f-a1c1f89ee7ab",
|
| 361 |
+
"identifier": "ENG-1",
|
| 362 |
+
"title": "Fix authentication bug in login flow",
|
| 363 |
+
"description": "Users are experiencing intermittent login failures. Need to investigate and fix the authentication service.",
|
| 364 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 365 |
+
"stateId": "8708b274-82d1-4769-bb1a-c4937db76d0f",
|
| 366 |
+
"assigneeId": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec",
|
| 367 |
+
"creatorId": "2790a7ee-fde0-4537-9588-e233aa5a68d1",
|
| 368 |
+
"priority": 0.0,
|
| 369 |
+
"priorityLabel": "No priority",
|
| 370 |
+
"prioritySortOrder": 0.0,
|
| 371 |
+
"number": 1.0,
|
| 372 |
+
"boardOrder": 0.0,
|
| 373 |
+
"sortOrder": 0.0,
|
| 374 |
+
"customerTicketCount": 0,
|
| 375 |
+
"branchName": "eng-1-fix-authentication-bug",
|
| 376 |
+
"labelIds": [],
|
| 377 |
+
"previousIdentifiers": [],
|
| 378 |
+
"reactionData": {},
|
| 379 |
+
"url": "https://linear.app/test-org/issue/ENG-1",
|
| 380 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 381 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"id": "5c62f29d-0f6a-4c4d-9d25-52293e2a8d4f",
|
| 385 |
+
"identifier": "ENG-2",
|
| 386 |
+
"title": "Polish onboarding dashboard UX",
|
| 387 |
+
"description": "Tighten spacing, improve empty states, and align typography on the onboarding dashboard to reduce user confusion.",
|
| 388 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 389 |
+
"stateId": "741f29ae-cfb3-4b8a-a1f8-c5161c842366",
|
| 390 |
+
"assigneeId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 391 |
+
"creatorId": "2790a7ee-fde0-4537-9588-e233aa5a68d1",
|
| 392 |
+
"priority": 3.0,
|
| 393 |
+
"priorityLabel": "Normal",
|
| 394 |
+
"prioritySortOrder": 1.0,
|
| 395 |
+
"number": 2.0,
|
| 396 |
+
"boardOrder": 1.0,
|
| 397 |
+
"sortOrder": 1.0,
|
| 398 |
+
"customerTicketCount": 0,
|
| 399 |
+
"branchName": "eng-2-polish-onboarding-dashboard-ux",
|
| 400 |
+
"labelIds": [],
|
| 401 |
+
"previousIdentifiers": [],
|
| 402 |
+
"reactionData": {},
|
| 403 |
+
"url": "https://linear.app/test-org/issue/ENG-2",
|
| 404 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 405 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"id": "87c1d2f3-66c4-4dd0-bc93-1b99d04dc374",
|
| 409 |
+
"identifier": "ENG-3",
|
| 410 |
+
"title": "Respond to overnight production incident",
|
| 411 |
+
"description": "Service experienced elevated 500s between 02:00 and 03:00 UTC. Collect logs, draft a customer update, and prepare follow-up RCA tasks.",
|
| 412 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 413 |
+
"stateId": "6963a682-5967-477a-9afc-0b8a5b70b070",
|
| 414 |
+
"assigneeId": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec",
|
| 415 |
+
"creatorId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 416 |
+
"priority": 1.0,
|
| 417 |
+
"priorityLabel": "Urgent",
|
| 418 |
+
"prioritySortOrder": -1.0,
|
| 419 |
+
"number": 3.0,
|
| 420 |
+
"boardOrder": 2.0,
|
| 421 |
+
"sortOrder": 2.0,
|
| 422 |
+
"customerTicketCount": 4,
|
| 423 |
+
"branchName": "eng-3-production-incident-response",
|
| 424 |
+
"labelIds": [
|
| 425 |
+
"6c2b0d3c-3d6d-4d91-9a77-b93b59b8d5a0"
|
| 426 |
+
],
|
| 427 |
+
"previousIdentifiers": [],
|
| 428 |
+
"reactionData": {},
|
| 429 |
+
"url": "https://linear.app/test-org/issue/ENG-3",
|
| 430 |
+
"createdAt": "2025-01-01T06:00:00",
|
| 431 |
+
"updatedAt": "2025-01-01T06:00:00"
|
| 432 |
+
},
|
| 433 |
+
{
|
| 434 |
+
"id": "b4f5130f-5c1b-4bc0-a8f6-60a22b0adf5e",
|
| 435 |
+
"identifier": "ENG-4",
|
| 436 |
+
"title": "Prototype reinforcement learning evaluation harness",
|
| 437 |
+
"description": "Build a small harness to replay historical agent interactions and compare rule-based policies against the new RL policy.",
|
| 438 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 439 |
+
"stateId": "741f29ae-cfb3-4b8a-a1f8-c5161c842366",
|
| 440 |
+
"assigneeId": "2790a7ee-fde0-4537-9588-e233aa5a68d1",
|
| 441 |
+
"creatorId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 442 |
+
"priority": 2.0,
|
| 443 |
+
"priorityLabel": "High",
|
| 444 |
+
"prioritySortOrder": 0.5,
|
| 445 |
+
"number": 4.0,
|
| 446 |
+
"boardOrder": 3.0,
|
| 447 |
+
"sortOrder": 3.0,
|
| 448 |
+
"customerTicketCount": 0,
|
| 449 |
+
"branchName": "eng-4-rl-evaluation-harness",
|
| 450 |
+
"labelIds": [
|
| 451 |
+
"8f01ce9d-1433-4c4c-969d-21ca3bf2718f"
|
| 452 |
+
],
|
| 453 |
+
"previousIdentifiers": [],
|
| 454 |
+
"reactionData": {},
|
| 455 |
+
"url": "https://linear.app/test-org/issue/ENG-4",
|
| 456 |
+
"createdAt": "2025-01-02T09:00:00",
|
| 457 |
+
"updatedAt": "2025-01-02T09:00:00"
|
| 458 |
+
}
|
| 459 |
+
],
|
| 460 |
+
"comments": [
|
| 461 |
+
{
|
| 462 |
+
"id": "e10f59c3-7a49-4d52-8dba-8c8602f8c807",
|
| 463 |
+
"issueId": "c6e168e3-fed4-45d0-b03f-a1c1f89ee7ab",
|
| 464 |
+
"userId": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec",
|
| 465 |
+
"body": "This is a seeded comment on ENG-1",
|
| 466 |
+
"bodyData": "{\"type\":\"doc\",\"content\":[{\"type\":\"paragraph\",\"content\":[{\"type\":\"text\",\"text\":\"This is a seeded comment on ENG-1\"}]}]}",
|
| 467 |
+
"reactionData": {},
|
| 468 |
+
"editedAt": null,
|
| 469 |
+
"archivedAt": null,
|
| 470 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 471 |
+
"updatedAt": "2025-01-01T00:00:00",
|
| 472 |
+
"url": "https://linear.app/test-org/issue/ENG-1#comments"
|
| 473 |
+
}
|
| 474 |
+
],
|
| 475 |
+
"team_memberships": [
|
| 476 |
+
{
|
| 477 |
+
"id": "tm-agent-eng",
|
| 478 |
+
"userId": "2790a7ee-fde0-4537-9588-e233aa5a68d1",
|
| 479 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 480 |
+
"owner": false,
|
| 481 |
+
"sortOrder": 0.0,
|
| 482 |
+
"archivedAt": null,
|
| 483 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 484 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"id": "tm-john-eng",
|
| 488 |
+
"userId": "2dcc8dc2-ca19-475d-9882-3ba5e911e7ec",
|
| 489 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 490 |
+
"owner": true,
|
| 491 |
+
"sortOrder": 0.0,
|
| 492 |
+
"archivedAt": null,
|
| 493 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 494 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"id": "tm-sarah-eng",
|
| 498 |
+
"userId": "03b0809e-713e-44ee-95de-b7a198b135ac",
|
| 499 |
+
"teamId": "ad608998-915c-4bad-bcd9-85ebfccccee8",
|
| 500 |
+
"owner": false,
|
| 501 |
+
"sortOrder": 0.0,
|
| 502 |
+
"archivedAt": null,
|
| 503 |
+
"createdAt": "2025-01-01T00:00:00",
|
| 504 |
+
"updatedAt": "2025-01-01T00:00:00"
|
| 505 |
+
}
|
| 506 |
+
]
|
| 507 |
+
}
|