Datasets:
File size: 1,256 Bytes
934aad3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | id: cb-009
title: "List projects in Linear"
difficulty: easy
category: project_mgmt
description: |
List all projects in the Linear workspace. Show the project name, status,
lead, and target date for each project.
tools_provided:
- linear
initial_state:
linear:
projects:
- name: "Q1 Platform Migration"
status: in_progress
lead: sarah@acme.com
target_date: "2026-03-31"
teams: ["Platform"]
- name: "Mobile App v3"
status: in_progress
lead: mark@acme.com
target_date: "2026-04-15"
teams: ["Mobile"]
- name: "Security Audit Remediation"
status: planned
lead: alice@acme.com
target_date: "2026-05-01"
teams: ["Platform", "Security"]
- name: "Design System 2.0"
status: completed
lead: carol@acme.com
target_date: "2026-02-28"
teams: ["Design", "Frontend"]
expected_state:
linear:
command_history:
- pattern: "linear project list"
output_contains:
- "Q1 Platform Migration"
- "Mobile App v3"
- "Security Audit Remediation"
- "Design System 2.0"
scoring:
outcome: 0.6
efficiency: 0.2
recovery: 0.2
max_turns: 3
optimal_commands: 1
timeout_seconds: 30
|