ChengyiX commited on
Commit
934aad3
·
verified ·
1 Parent(s): 312ecc8

Upload folder using huggingface_hub

Browse files
data/tasks/cb-001.yaml ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-001
2
+ title: "List open issues in a GitHub repo"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ List all currently open issues in the repository "acme-corp/web-platform".
7
+ Display the issue number, title, and assignee for each.
8
+ tools_provided:
9
+ - gh
10
+ initial_state:
11
+ gh:
12
+ repos:
13
+ acme-corp/web-platform:
14
+ issues:
15
+ - number: 42
16
+ title: "Fix login redirect loop"
17
+ state: open
18
+ assignee: alice
19
+ labels: ["bug", "auth"]
20
+ - number: 43
21
+ title: "Add dark mode support"
22
+ state: open
23
+ assignee: bob
24
+ labels: ["enhancement", "ui"]
25
+ - number: 44
26
+ title: "Update README with API docs"
27
+ state: closed
28
+ assignee: carol
29
+ labels: ["docs"]
30
+ - number: 45
31
+ title: "Memory leak in websocket handler"
32
+ state: open
33
+ assignee: null
34
+ labels: ["bug", "critical"]
35
+ - number: 46
36
+ title: "Migrate to Node 20"
37
+ state: open
38
+ assignee: dave
39
+ labels: ["chore"]
40
+ expected_state:
41
+ gh:
42
+ command_history:
43
+ - pattern: "gh issue list.*--repo acme-corp/web-platform.*--state open"
44
+ output_contains:
45
+ - "42"
46
+ - "43"
47
+ - "45"
48
+ - "46"
49
+ scoring:
50
+ outcome: 0.6
51
+ efficiency: 0.2
52
+ recovery: 0.2
53
+ max_turns: 3
54
+ optimal_commands: 1
55
+ timeout_seconds: 30
data/tasks/cb-002.yaml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-002
2
+ title: "Create a GitHub issue with title and body"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Create a new issue in the repository "acme-corp/web-platform" with the title
7
+ "Add rate limiting to public API endpoints" and a body that describes the need
8
+ to prevent abuse on unauthenticated API routes.
9
+ tools_provided:
10
+ - gh
11
+ initial_state:
12
+ gh:
13
+ repos:
14
+ acme-corp/web-platform:
15
+ issues:
16
+ - number: 50
17
+ title: "Existing issue"
18
+ state: open
19
+ assignee: alice
20
+ labels: []
21
+ expected_state:
22
+ gh:
23
+ repos:
24
+ acme-corp/web-platform:
25
+ issues:
26
+ - title: "Add rate limiting to public API endpoints"
27
+ state: open
28
+ body_contains: "rate limit"
29
+ command_history:
30
+ - pattern: "gh issue create.*--repo acme-corp/web-platform.*--title"
31
+ scoring:
32
+ outcome: 0.6
33
+ efficiency: 0.2
34
+ recovery: 0.2
35
+ max_turns: 3
36
+ optimal_commands: 1
37
+ timeout_seconds: 30
data/tasks/cb-003.yaml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-003
2
+ title: "List channels in Slack workspace"
3
+ difficulty: easy
4
+ category: communication
5
+ description: |
6
+ List all public channels in the Slack workspace. Show the channel name,
7
+ member count, and topic for each channel.
8
+ tools_provided:
9
+ - slack
10
+ initial_state:
11
+ slack:
12
+ channels:
13
+ - id: C001
14
+ name: general
15
+ is_private: false
16
+ num_members: 45
17
+ topic: "Company-wide announcements"
18
+ - id: C002
19
+ name: engineering
20
+ is_private: false
21
+ num_members: 22
22
+ topic: "Engineering discussions"
23
+ - id: C003
24
+ name: design-team
25
+ is_private: true
26
+ num_members: 8
27
+ topic: "Design reviews"
28
+ - id: C004
29
+ name: random
30
+ is_private: false
31
+ num_members: 40
32
+ topic: "Non-work banter"
33
+ - id: C005
34
+ name: incidents
35
+ is_private: false
36
+ num_members: 15
37
+ topic: "Production incident coordination"
38
+ expected_state:
39
+ slack:
40
+ command_history:
41
+ - pattern: "slack channel list"
42
+ output_contains:
43
+ - "general"
44
+ - "engineering"
45
+ - "random"
46
+ - "incidents"
47
+ scoring:
48
+ outcome: 0.6
49
+ efficiency: 0.2
50
+ recovery: 0.2
51
+ max_turns: 3
52
+ optimal_commands: 1
53
+ timeout_seconds: 30
data/tasks/cb-004.yaml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-004
2
+ title: "Send a message to a Slack channel"
3
+ difficulty: easy
4
+ category: communication
5
+ description: |
6
+ Send the message "Deployment v2.3.1 completed successfully. All health checks passing."
7
+ to the #engineering channel in Slack.
8
+ tools_provided:
9
+ - slack
10
+ initial_state:
11
+ slack:
12
+ channels:
13
+ - id: C002
14
+ name: engineering
15
+ is_private: false
16
+ num_members: 22
17
+ topic: "Engineering discussions"
18
+ messages: []
19
+ - id: C001
20
+ name: general
21
+ is_private: false
22
+ num_members: 45
23
+ topic: "Company-wide announcements"
24
+ messages: []
25
+ expected_state:
26
+ slack:
27
+ channels:
28
+ - name: engineering
29
+ messages:
30
+ - text_contains: "Deployment v2.3.1 completed successfully"
31
+ command_history:
32
+ - pattern: "slack message send.*--channel.*engineering"
33
+ scoring:
34
+ outcome: 0.6
35
+ efficiency: 0.2
36
+ recovery: 0.2
37
+ max_turns: 3
38
+ optimal_commands: 1
39
+ timeout_seconds: 30
data/tasks/cb-005.yaml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-005
2
+ title: "List issues assigned to a specific user in Linear"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ List all issues in Linear that are currently assigned to the user "sarah@acme.com".
7
+ Show the issue identifier, title, status, and priority.
8
+ tools_provided:
9
+ - linear
10
+ initial_state:
11
+ linear:
12
+ issues:
13
+ - id: ACM-101
14
+ title: "Implement OAuth2 PKCE flow"
15
+ status: in_progress
16
+ priority: high
17
+ assignee: sarah@acme.com
18
+ team: Platform
19
+ - id: ACM-102
20
+ title: "Database migration script"
21
+ status: todo
22
+ priority: medium
23
+ assignee: sarah@acme.com
24
+ team: Platform
25
+ - id: ACM-103
26
+ title: "Update CI pipeline"
27
+ status: in_progress
28
+ priority: low
29
+ assignee: mark@acme.com
30
+ team: Platform
31
+ - id: ACM-104
32
+ title: "Add Sentry error tracking"
33
+ status: backlog
34
+ priority: high
35
+ assignee: sarah@acme.com
36
+ team: Platform
37
+ - id: ACM-105
38
+ title: "Refactor user service"
39
+ status: done
40
+ priority: medium
41
+ assignee: mark@acme.com
42
+ team: Platform
43
+ expected_state:
44
+ linear:
45
+ command_history:
46
+ - pattern: "linear issue list.*--assignee.*sarah"
47
+ output_contains:
48
+ - "ACM-101"
49
+ - "ACM-102"
50
+ - "ACM-104"
51
+ scoring:
52
+ outcome: 0.6
53
+ efficiency: 0.2
54
+ recovery: 0.2
55
+ max_turns: 3
56
+ optimal_commands: 1
57
+ timeout_seconds: 30
data/tasks/cb-006.yaml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-006
2
+ title: "Create a Linear issue with priority"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Create a new issue in the Linear team "Platform" with the title
7
+ "Implement webhook retry logic with exponential backoff", set the priority
8
+ to "urgent", and assign it to "sarah@acme.com".
9
+ tools_provided:
10
+ - linear
11
+ initial_state:
12
+ linear:
13
+ teams:
14
+ - name: Platform
15
+ key: ACM
16
+ members:
17
+ - sarah@acme.com
18
+ - mark@acme.com
19
+ issues:
20
+ - id: ACM-110
21
+ title: "Existing backlog item"
22
+ status: backlog
23
+ priority: low
24
+ assignee: mark@acme.com
25
+ team: Platform
26
+ expected_state:
27
+ linear:
28
+ issues:
29
+ - title: "Implement webhook retry logic with exponential backoff"
30
+ priority: urgent
31
+ assignee: sarah@acme.com
32
+ team: Platform
33
+ command_history:
34
+ - pattern: "linear issue create.*--team.*Platform.*--priority.*urgent"
35
+ scoring:
36
+ outcome: 0.6
37
+ efficiency: 0.2
38
+ recovery: 0.2
39
+ max_turns: 3
40
+ optimal_commands: 1
41
+ timeout_seconds: 30
data/tasks/cb-007.yaml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-007
2
+ title: "Search for Slack messages containing a keyword"
3
+ difficulty: easy
4
+ category: communication
5
+ description: |
6
+ Search the Slack workspace for all messages containing the keyword "outage"
7
+ from the last 7 days. Display the channel, sender, timestamp, and message text.
8
+ tools_provided:
9
+ - slack
10
+ initial_state:
11
+ slack:
12
+ channels:
13
+ - id: C005
14
+ name: incidents
15
+ messages:
16
+ - user: ops-bot
17
+ text: "ALERT: Database outage detected in us-east-1"
18
+ ts: "2026-03-10T14:30:00Z"
19
+ - user: alice
20
+ text: "Investigating the outage — looks like connection pool exhaustion"
21
+ ts: "2026-03-10T14:35:00Z"
22
+ - user: bob
23
+ text: "Restarting the affected pods now"
24
+ ts: "2026-03-10T14:40:00Z"
25
+ - id: C002
26
+ name: engineering
27
+ messages:
28
+ - user: carol
29
+ text: "FYI the outage yesterday was caused by a bad migration"
30
+ ts: "2026-03-11T09:00:00Z"
31
+ - user: dave
32
+ text: "PR #234 is ready for review"
33
+ ts: "2026-03-11T10:00:00Z"
34
+ expected_state:
35
+ slack:
36
+ command_history:
37
+ - pattern: "slack message search.*outage"
38
+ output_contains:
39
+ - "outage"
40
+ - "incidents"
41
+ - "engineering"
42
+ scoring:
43
+ outcome: 0.6
44
+ efficiency: 0.2
45
+ recovery: 0.2
46
+ max_turns: 3
47
+ optimal_commands: 1
48
+ timeout_seconds: 30
data/tasks/cb-008.yaml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-008
2
+ title: "View a specific GitHub issue by number"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ View the full details of issue #42 in the repository "acme-corp/web-platform",
7
+ including its title, body, labels, assignee, and comments.
8
+ tools_provided:
9
+ - gh
10
+ initial_state:
11
+ gh:
12
+ repos:
13
+ acme-corp/web-platform:
14
+ issues:
15
+ - number: 42
16
+ title: "Fix login redirect loop"
17
+ state: open
18
+ assignee: alice
19
+ labels: ["bug", "auth"]
20
+ body: |
21
+ Users are experiencing an infinite redirect loop when logging in
22
+ with SSO. The issue occurs after the OAuth callback redirects back
23
+ to the application. Browser console shows ERR_TOO_MANY_REDIRECTS.
24
+ comments:
25
+ - user: bob
26
+ body: "I can reproduce this on Chrome 120 with SSO provider Okta."
27
+ - user: alice
28
+ body: "Found the root cause — the session cookie domain is misconfigured."
29
+ expected_state:
30
+ gh:
31
+ command_history:
32
+ - pattern: "gh issue view 42.*--repo acme-corp/web-platform"
33
+ output_contains:
34
+ - "Fix login redirect loop"
35
+ - "redirect"
36
+ scoring:
37
+ outcome: 0.6
38
+ efficiency: 0.2
39
+ recovery: 0.2
40
+ max_turns: 3
41
+ optimal_commands: 1
42
+ timeout_seconds: 30
data/tasks/cb-009.yaml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-009
2
+ title: "List projects in Linear"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ List all projects in the Linear workspace. Show the project name, status,
7
+ lead, and target date for each project.
8
+ tools_provided:
9
+ - linear
10
+ initial_state:
11
+ linear:
12
+ projects:
13
+ - name: "Q1 Platform Migration"
14
+ status: in_progress
15
+ lead: sarah@acme.com
16
+ target_date: "2026-03-31"
17
+ teams: ["Platform"]
18
+ - name: "Mobile App v3"
19
+ status: in_progress
20
+ lead: mark@acme.com
21
+ target_date: "2026-04-15"
22
+ teams: ["Mobile"]
23
+ - name: "Security Audit Remediation"
24
+ status: planned
25
+ lead: alice@acme.com
26
+ target_date: "2026-05-01"
27
+ teams: ["Platform", "Security"]
28
+ - name: "Design System 2.0"
29
+ status: completed
30
+ lead: carol@acme.com
31
+ target_date: "2026-02-28"
32
+ teams: ["Design", "Frontend"]
33
+ expected_state:
34
+ linear:
35
+ command_history:
36
+ - pattern: "linear project list"
37
+ output_contains:
38
+ - "Q1 Platform Migration"
39
+ - "Mobile App v3"
40
+ - "Security Audit Remediation"
41
+ - "Design System 2.0"
42
+ scoring:
43
+ outcome: 0.6
44
+ efficiency: 0.2
45
+ recovery: 0.2
46
+ max_turns: 3
47
+ optimal_commands: 1
48
+ timeout_seconds: 30
data/tasks/cb-010.yaml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-010
2
+ title: "Send a DM to a user on Slack"
3
+ difficulty: easy
4
+ category: communication
5
+ description: |
6
+ Send a direct message to the Slack user "alice" with the text:
7
+ "Hey Alice, can you review PR #234 when you get a chance? It's the auth fix we discussed."
8
+ tools_provided:
9
+ - slack
10
+ initial_state:
11
+ slack:
12
+ users:
13
+ - id: U001
14
+ name: alice
15
+ real_name: "Alice Chen"
16
+ status: active
17
+ - id: U002
18
+ name: bob
19
+ real_name: "Bob Smith"
20
+ status: active
21
+ - id: U003
22
+ name: carol
23
+ real_name: "Carol Davis"
24
+ status: away
25
+ direct_messages:
26
+ alice: []
27
+ bob: []
28
+ expected_state:
29
+ slack:
30
+ direct_messages:
31
+ alice:
32
+ - text_contains: "review PR #234"
33
+ command_history:
34
+ - pattern: "slack message send.*--user.*alice"
35
+ scoring:
36
+ outcome: 0.6
37
+ efficiency: 0.2
38
+ recovery: 0.2
39
+ max_turns: 3
40
+ optimal_commands: 1
41
+ timeout_seconds: 30
data/tasks/cb-011.yaml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-011
2
+ title: "Add a label to a GitHub issue"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Add the label "priority:high" to issue #45 in the repository
7
+ "acme-corp/web-platform". The issue is about a memory leak in the
8
+ websocket handler.
9
+ tools_provided:
10
+ - gh
11
+ initial_state:
12
+ gh:
13
+ repos:
14
+ acme-corp/web-platform:
15
+ labels:
16
+ - name: "priority:high"
17
+ color: "ff0000"
18
+ - name: "priority:low"
19
+ color: "00ff00"
20
+ - name: "bug"
21
+ color: "d73a4a"
22
+ issues:
23
+ - number: 45
24
+ title: "Memory leak in websocket handler"
25
+ state: open
26
+ assignee: null
27
+ labels: ["bug"]
28
+ - number: 46
29
+ title: "Migrate to Node 20"
30
+ state: open
31
+ assignee: dave
32
+ labels: ["chore"]
33
+ expected_state:
34
+ gh:
35
+ repos:
36
+ acme-corp/web-platform:
37
+ issues:
38
+ - number: 45
39
+ labels: ["bug", "priority:high"]
40
+ command_history:
41
+ - pattern: "gh issue edit 45.*--add-label.*priority:high"
42
+ scoring:
43
+ outcome: 0.6
44
+ efficiency: 0.2
45
+ recovery: 0.2
46
+ max_turns: 3
47
+ optimal_commands: 1
48
+ timeout_seconds: 30
data/tasks/cb-012.yaml ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-012
2
+ title: "Update a Linear issue status to done"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Update the Linear issue "ACM-101" (Implement OAuth2 PKCE flow) to mark
7
+ its status as "done". The implementation has been completed and merged.
8
+ tools_provided:
9
+ - linear
10
+ initial_state:
11
+ linear:
12
+ issues:
13
+ - id: ACM-101
14
+ title: "Implement OAuth2 PKCE flow"
15
+ status: in_progress
16
+ priority: high
17
+ assignee: sarah@acme.com
18
+ team: Platform
19
+ - id: ACM-102
20
+ title: "Database migration script"
21
+ status: todo
22
+ priority: medium
23
+ assignee: sarah@acme.com
24
+ team: Platform
25
+ - id: ACM-103
26
+ title: "Update CI pipeline"
27
+ status: in_progress
28
+ priority: low
29
+ assignee: mark@acme.com
30
+ team: Platform
31
+ expected_state:
32
+ linear:
33
+ issues:
34
+ - id: ACM-101
35
+ status: done
36
+ command_history:
37
+ - pattern: "linear issue update ACM-101.*--status.*done"
38
+ scoring:
39
+ outcome: 0.6
40
+ efficiency: 0.2
41
+ recovery: 0.2
42
+ max_turns: 3
43
+ optimal_commands: 1
44
+ timeout_seconds: 30
data/tasks/cb-013.yaml ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-013
2
+ title: "List Notion pages"
3
+ difficulty: easy
4
+ category: data_ops
5
+ description: |
6
+ List all pages in the Notion workspace. Show the page title, last edited time,
7
+ and parent database or page for each entry.
8
+ tools_provided:
9
+ - notion
10
+ initial_state:
11
+ notion:
12
+ pages:
13
+ - id: pg-001
14
+ title: "Engineering Runbook"
15
+ last_edited: "2026-03-10T16:00:00Z"
16
+ parent: "Engineering Wiki"
17
+ created_by: alice
18
+ - id: pg-002
19
+ title: "Q1 OKRs"
20
+ last_edited: "2026-03-08T10:00:00Z"
21
+ parent: "Company Goals"
22
+ created_by: ceo
23
+ - id: pg-003
24
+ title: "Onboarding Checklist"
25
+ last_edited: "2026-02-20T14:00:00Z"
26
+ parent: "HR"
27
+ created_by: carol
28
+ - id: pg-004
29
+ title: "Incident Post-Mortem Template"
30
+ last_edited: "2026-03-11T09:00:00Z"
31
+ parent: "Engineering Wiki"
32
+ created_by: bob
33
+ - id: pg-005
34
+ title: "API Design Guidelines"
35
+ last_edited: "2026-03-05T11:00:00Z"
36
+ parent: "Engineering Wiki"
37
+ created_by: sarah
38
+ expected_state:
39
+ notion:
40
+ command_history:
41
+ - pattern: "notion page list"
42
+ output_contains:
43
+ - "Engineering Runbook"
44
+ - "Q1 OKRs"
45
+ - "Onboarding Checklist"
46
+ - "Incident Post-Mortem Template"
47
+ - "API Design Guidelines"
48
+ scoring:
49
+ outcome: 0.6
50
+ efficiency: 0.2
51
+ recovery: 0.2
52
+ max_turns: 3
53
+ optimal_commands: 1
54
+ timeout_seconds: 30
data/tasks/cb-014.yaml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-014
2
+ title: "Create a Notion page"
3
+ difficulty: easy
4
+ category: data_ops
5
+ description: |
6
+ Create a new Notion page under the "Engineering Wiki" parent with the title
7
+ "Redis Caching Strategy". The page content should describe a caching approach
8
+ for the user service with TTL policies.
9
+ tools_provided:
10
+ - notion
11
+ initial_state:
12
+ notion:
13
+ pages:
14
+ - id: pg-001
15
+ title: "Engineering Runbook"
16
+ last_edited: "2026-03-10T16:00:00Z"
17
+ parent: "Engineering Wiki"
18
+ created_by: alice
19
+ - id: pg-004
20
+ title: "Incident Post-Mortem Template"
21
+ last_edited: "2026-03-11T09:00:00Z"
22
+ parent: "Engineering Wiki"
23
+ created_by: bob
24
+ databases:
25
+ - id: db-001
26
+ title: "Engineering Wiki"
27
+ expected_state:
28
+ notion:
29
+ pages:
30
+ - title: "Redis Caching Strategy"
31
+ parent: "Engineering Wiki"
32
+ content_contains: "caching"
33
+ command_history:
34
+ - pattern: "notion page create.*--parent.*Engineering Wiki.*--title.*Redis Caching Strategy"
35
+ scoring:
36
+ outcome: 0.6
37
+ efficiency: 0.2
38
+ recovery: 0.2
39
+ max_turns: 3
40
+ optimal_commands: 1
41
+ timeout_seconds: 30
data/tasks/cb-015.yaml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-015
2
+ title: "List Jira issues in a project"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ List all issues in the Jira project "INFRA" (Infrastructure). Show the issue
7
+ key, summary, status, assignee, and priority for each issue.
8
+ tools_provided:
9
+ - jira
10
+ initial_state:
11
+ jira:
12
+ projects:
13
+ - key: INFRA
14
+ name: "Infrastructure"
15
+ issues:
16
+ - key: INFRA-201
17
+ summary: "Upgrade Kubernetes to 1.29"
18
+ status: "In Progress"
19
+ assignee: ops-alice
20
+ priority: High
21
+ - key: INFRA-202
22
+ summary: "Set up Prometheus alerting rules"
23
+ status: "To Do"
24
+ assignee: ops-bob
25
+ priority: Medium
26
+ - key: INFRA-203
27
+ summary: "Migrate RDS from db.m5 to db.m6i"
28
+ status: "To Do"
29
+ assignee: null
30
+ priority: High
31
+ - key: INFRA-204
32
+ summary: "Configure CloudFront cache invalidation"
33
+ status: "Done"
34
+ assignee: ops-alice
35
+ priority: Low
36
+ - key: INFRA-205
37
+ summary: "Implement VPC peering for staging"
38
+ status: "In Progress"
39
+ assignee: ops-carol
40
+ priority: Medium
41
+ expected_state:
42
+ jira:
43
+ command_history:
44
+ - pattern: "jira issue list.*--project.*INFRA"
45
+ output_contains:
46
+ - "INFRA-201"
47
+ - "INFRA-202"
48
+ - "INFRA-203"
49
+ - "INFRA-204"
50
+ - "INFRA-205"
51
+ scoring:
52
+ outcome: 0.6
53
+ efficiency: 0.2
54
+ recovery: 0.2
55
+ max_turns: 3
56
+ optimal_commands: 1
57
+ timeout_seconds: 30
data/tasks/cb-016.yaml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-016
2
+ title: "Create a Jira issue"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Create a new Jira issue in the "INFRA" project with summary "Set up
7
+ centralized log aggregation with Loki", type "Task", priority "High",
8
+ and assign it to "ops-bob".
9
+ tools_provided:
10
+ - jira
11
+ initial_state:
12
+ jira:
13
+ projects:
14
+ - key: INFRA
15
+ name: "Infrastructure"
16
+ members:
17
+ - ops-alice
18
+ - ops-bob
19
+ - ops-carol
20
+ issues:
21
+ - key: INFRA-205
22
+ summary: "Implement VPC peering for staging"
23
+ status: "In Progress"
24
+ assignee: ops-carol
25
+ priority: Medium
26
+ expected_state:
27
+ jira:
28
+ projects:
29
+ - key: INFRA
30
+ issues:
31
+ - summary: "Set up centralized log aggregation with Loki"
32
+ type: Task
33
+ priority: High
34
+ assignee: ops-bob
35
+ command_history:
36
+ - pattern: "jira issue create.*--project.*INFRA.*--summary"
37
+ scoring:
38
+ outcome: 0.6
39
+ efficiency: 0.2
40
+ recovery: 0.2
41
+ max_turns: 3
42
+ optimal_commands: 1
43
+ timeout_seconds: 30
data/tasks/cb-017.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-017
2
+ title: "Search Gmail for messages from a sender"
3
+ difficulty: easy
4
+ category: communication
5
+ description: |
6
+ Search Gmail for all emails from "security@github.com" received in the
7
+ last 30 days. Display the subject, date, and a snippet of each message.
8
+ tools_provided:
9
+ - google
10
+ initial_state:
11
+ google:
12
+ gmail:
13
+ messages:
14
+ - id: msg-001
15
+ from: "security@github.com"
16
+ to: "dev@acme.com"
17
+ subject: "Security advisory: CVE-2026-1234"
18
+ date: "2026-03-05T08:00:00Z"
19
+ snippet: "A critical vulnerability has been identified in..."
20
+ - id: msg-002
21
+ from: "security@github.com"
22
+ to: "dev@acme.com"
23
+ subject: "Dependabot alert: lodash prototype pollution"
24
+ date: "2026-03-01T12:00:00Z"
25
+ snippet: "A new Dependabot alert has been created for..."
26
+ - id: msg-003
27
+ from: "noreply@linear.app"
28
+ to: "dev@acme.com"
29
+ subject: "Issue ACM-101 assigned to you"
30
+ date: "2026-03-08T09:00:00Z"
31
+ snippet: "Sarah assigned ACM-101 to you..."
32
+ - id: msg-004
33
+ from: "security@github.com"
34
+ to: "dev@acme.com"
35
+ subject: "Secret scanning alert: API key exposed"
36
+ date: "2026-02-25T15:00:00Z"
37
+ snippet: "A secret has been detected in your repository..."
38
+ expected_state:
39
+ google:
40
+ command_history:
41
+ - pattern: "google gmail search.*from:security@github.com"
42
+ output_contains:
43
+ - "CVE-2026-1234"
44
+ - "Dependabot alert"
45
+ - "Secret scanning alert"
46
+ scoring:
47
+ outcome: 0.6
48
+ efficiency: 0.2
49
+ recovery: 0.2
50
+ max_turns: 3
51
+ optimal_commands: 1
52
+ timeout_seconds: 30
data/tasks/cb-018.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-018
2
+ title: "List Google Calendar events for today"
3
+ difficulty: easy
4
+ category: data_ops
5
+ description: |
6
+ List all events on the primary Google Calendar for today (2026-03-12).
7
+ Show the event title, start time, end time, and attendees.
8
+ tools_provided:
9
+ - google
10
+ initial_state:
11
+ google:
12
+ calendar:
13
+ events:
14
+ - id: evt-001
15
+ title: "Daily Standup"
16
+ start: "2026-03-12T09:00:00Z"
17
+ end: "2026-03-12T09:15:00Z"
18
+ attendees: ["alice@acme.com", "bob@acme.com", "sarah@acme.com"]
19
+ calendar: primary
20
+ - id: evt-002
21
+ title: "Sprint Planning"
22
+ start: "2026-03-12T14:00:00Z"
23
+ end: "2026-03-12T15:00:00Z"
24
+ attendees: ["alice@acme.com", "sarah@acme.com", "mark@acme.com"]
25
+ calendar: primary
26
+ - id: evt-003
27
+ title: "1:1 with Manager"
28
+ start: "2026-03-12T16:00:00Z"
29
+ end: "2026-03-12T16:30:00Z"
30
+ attendees: ["alice@acme.com", "vp-eng@acme.com"]
31
+ calendar: primary
32
+ - id: evt-004
33
+ title: "Architecture Review"
34
+ start: "2026-03-13T10:00:00Z"
35
+ end: "2026-03-13T11:00:00Z"
36
+ attendees: ["alice@acme.com", "bob@acme.com"]
37
+ calendar: primary
38
+ expected_state:
39
+ google:
40
+ command_history:
41
+ - pattern: "google calendar list.*--date.*2026-03-12"
42
+ output_contains:
43
+ - "Daily Standup"
44
+ - "Sprint Planning"
45
+ - "1:1 with Manager"
46
+ scoring:
47
+ outcome: 0.6
48
+ efficiency: 0.2
49
+ recovery: 0.2
50
+ max_turns: 3
51
+ optimal_commands: 1
52
+ timeout_seconds: 30
data/tasks/cb-019.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-019
2
+ title: "List files in Google Drive"
3
+ difficulty: easy
4
+ category: data_ops
5
+ description: |
6
+ List all files in the Google Drive folder "Engineering/Architecture".
7
+ Show the file name, size, last modified date, and owner.
8
+ tools_provided:
9
+ - google
10
+ initial_state:
11
+ google:
12
+ drive:
13
+ folders:
14
+ - path: "Engineering/Architecture"
15
+ files:
16
+ - name: "System Design v2.pdf"
17
+ size: "4.2 MB"
18
+ modified: "2026-03-01T10:00:00Z"
19
+ owner: "alice@acme.com"
20
+ - name: "Database Schema.drawio"
21
+ size: "128 KB"
22
+ modified: "2026-02-28T14:00:00Z"
23
+ owner: "bob@acme.com"
24
+ - name: "API Spec OpenAPI.yaml"
25
+ size: "56 KB"
26
+ modified: "2026-03-10T16:00:00Z"
27
+ owner: "sarah@acme.com"
28
+ - name: "Infrastructure Diagram.png"
29
+ size: "2.1 MB"
30
+ modified: "2026-02-15T09:00:00Z"
31
+ owner: "ops-alice@acme.com"
32
+ - name: "Migration Plan Q1.docx"
33
+ size: "320 KB"
34
+ modified: "2026-03-05T11:00:00Z"
35
+ owner: "mark@acme.com"
36
+ expected_state:
37
+ google:
38
+ command_history:
39
+ - pattern: "google drive list.*Engineering/Architecture"
40
+ output_contains:
41
+ - "System Design v2.pdf"
42
+ - "Database Schema.drawio"
43
+ - "API Spec OpenAPI.yaml"
44
+ - "Infrastructure Diagram.png"
45
+ - "Migration Plan Q1.docx"
46
+ scoring:
47
+ outcome: 0.6
48
+ efficiency: 0.2
49
+ recovery: 0.2
50
+ max_turns: 3
51
+ optimal_commands: 1
52
+ timeout_seconds: 30
data/tasks/cb-020.yaml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-020
2
+ title: "Comment on a Linear issue"
3
+ difficulty: easy
4
+ category: project_mgmt
5
+ description: |
6
+ Add a comment to the Linear issue "ACM-102" (Database migration script)
7
+ with the text: "Migration tested successfully on staging. Ready for production
8
+ deployment. Rolling update strategy confirmed with ops team."
9
+ tools_provided:
10
+ - linear
11
+ initial_state:
12
+ linear:
13
+ issues:
14
+ - id: ACM-102
15
+ title: "Database migration script"
16
+ status: in_progress
17
+ priority: medium
18
+ assignee: sarah@acme.com
19
+ team: Platform
20
+ comments:
21
+ - user: sarah@acme.com
22
+ body: "Schema changes drafted, running test suite."
23
+ - user: mark@acme.com
24
+ body: "Make sure to test with the staging dataset."
25
+ - id: ACM-103
26
+ title: "Update CI pipeline"
27
+ status: in_progress
28
+ priority: low
29
+ assignee: mark@acme.com
30
+ team: Platform
31
+ comments: []
32
+ expected_state:
33
+ linear:
34
+ issues:
35
+ - id: ACM-102
36
+ comments:
37
+ - body_contains: "Migration tested successfully on staging"
38
+ command_history:
39
+ - pattern: "linear issue comment ACM-102"
40
+ scoring:
41
+ outcome: 0.6
42
+ efficiency: 0.2
43
+ recovery: 0.2
44
+ max_turns: 3
45
+ optimal_commands: 1
46
+ timeout_seconds: 30
data/tasks/cb-021.yaml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-021
2
+ title: "Find urgent GitHub issues and post summary to Slack"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Find all open GitHub issues in "acme-corp/web-platform" that have the label
7
+ "priority:critical" or "priority:high". Then compose a summary of these issues
8
+ and post it to the #engineering Slack channel with the format:
9
+ "Urgent Issues Report: N issues require attention" followed by a list.
10
+ tools_provided:
11
+ - gh
12
+ - slack
13
+ initial_state:
14
+ gh:
15
+ repos:
16
+ acme-corp/web-platform:
17
+ issues:
18
+ - number: 42
19
+ title: "Fix login redirect loop"
20
+ state: open
21
+ assignee: alice
22
+ labels: ["bug", "priority:critical"]
23
+ - number: 45
24
+ title: "Memory leak in websocket handler"
25
+ state: open
26
+ assignee: null
27
+ labels: ["bug", "priority:high"]
28
+ - number: 46
29
+ title: "Migrate to Node 20"
30
+ state: open
31
+ assignee: dave
32
+ labels: ["chore"]
33
+ - number: 47
34
+ title: "SQL injection in search endpoint"
35
+ state: open
36
+ assignee: bob
37
+ labels: ["security", "priority:critical"]
38
+ - number: 48
39
+ title: "Add dark mode toggle"
40
+ state: open
41
+ assignee: carol
42
+ labels: ["enhancement", "priority:low"]
43
+ slack:
44
+ channels:
45
+ - id: C002
46
+ name: engineering
47
+ is_private: false
48
+ num_members: 22
49
+ messages: []
50
+ expected_state:
51
+ gh:
52
+ command_history:
53
+ - pattern: "gh issue list.*--label.*priority"
54
+ slack:
55
+ channels:
56
+ - name: engineering
57
+ messages:
58
+ - text_contains: "Urgent Issues Report"
59
+ - text_contains: "login redirect"
60
+ - text_contains: "Memory leak"
61
+ - text_contains: "SQL injection"
62
+ command_history:
63
+ - pattern: "slack message send.*--channel.*engineering"
64
+ scoring:
65
+ outcome: 0.6
66
+ efficiency: 0.2
67
+ recovery: 0.2
68
+ max_turns: 8
69
+ optimal_commands: 3
70
+ timeout_seconds: 60
data/tasks/cb-022.yaml ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-022
2
+ title: "Create Linear issues from Slack channel messages about bugs"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Search the #incidents Slack channel for messages from the last 24 hours that
7
+ mention "bug" or "error". For each unique bug report found, create a
8
+ corresponding Linear issue in the "Platform" team with priority "high"
9
+ and status "triage".
10
+ tools_provided:
11
+ - slack
12
+ - linear
13
+ initial_state:
14
+ slack:
15
+ channels:
16
+ - id: C005
17
+ name: incidents
18
+ messages:
19
+ - user: ops-bot
20
+ text: "Bug detected: Payment processing fails for amounts > $10,000"
21
+ ts: "2026-03-12T08:30:00Z"
22
+ - user: alice
23
+ text: "Error in user registration — email validation regex rejects valid TLDs"
24
+ ts: "2026-03-12T09:15:00Z"
25
+ - user: bob
26
+ text: "Deployed hotfix for the caching issue from yesterday"
27
+ ts: "2026-03-12T10:00:00Z"
28
+ - user: carol
29
+ text: "Bug report from customer: PDF export generates blank pages"
30
+ ts: "2026-03-12T11:00:00Z"
31
+ - user: dave
32
+ text: "Standup reminder: 2pm today"
33
+ ts: "2026-03-12T11:30:00Z"
34
+ linear:
35
+ teams:
36
+ - name: Platform
37
+ key: ACM
38
+ members:
39
+ - sarah@acme.com
40
+ - mark@acme.com
41
+ issues:
42
+ - id: ACM-110
43
+ title: "Existing issue"
44
+ status: backlog
45
+ priority: low
46
+ team: Platform
47
+ expected_state:
48
+ slack:
49
+ command_history:
50
+ - pattern: "slack message search.*(bug|error)"
51
+ linear:
52
+ issues:
53
+ - title_contains: "Payment processing"
54
+ priority: high
55
+ team: Platform
56
+ - title_contains: "email validation"
57
+ priority: high
58
+ team: Platform
59
+ - title_contains: "PDF export"
60
+ priority: high
61
+ team: Platform
62
+ command_history:
63
+ - pattern: "linear issue create.*--team.*Platform.*--priority.*high"
64
+ scoring:
65
+ outcome: 0.6
66
+ efficiency: 0.2
67
+ recovery: 0.2
68
+ max_turns: 10
69
+ optimal_commands: 4
70
+ timeout_seconds: 90
data/tasks/cb-023.yaml ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-023
2
+ title: "Sync GitHub issue labels with Linear issue priorities"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ For each open issue in the GitHub repo "acme-corp/web-platform" that has a
7
+ "linear:" prefixed label (e.g., "linear:ACM-101"), find the corresponding
8
+ Linear issue and update its priority to match the GitHub issue's priority
9
+ label. Map as follows: "priority:critical" -> urgent, "priority:high" -> high,
10
+ "priority:medium" -> medium, "priority:low" -> low.
11
+ tools_provided:
12
+ - gh
13
+ - linear
14
+ initial_state:
15
+ gh:
16
+ repos:
17
+ acme-corp/web-platform:
18
+ issues:
19
+ - number: 50
20
+ title: "Auth token expiry handling"
21
+ state: open
22
+ labels: ["bug", "priority:critical", "linear:ACM-201"]
23
+ - number: 51
24
+ title: "API rate limiting"
25
+ state: open
26
+ labels: ["enhancement", "priority:medium", "linear:ACM-202"]
27
+ - number: 52
28
+ title: "Fix CORS headers"
29
+ state: open
30
+ labels: ["bug", "priority:high", "linear:ACM-203"]
31
+ - number: 53
32
+ title: "Update docs"
33
+ state: open
34
+ labels: ["docs"]
35
+ - number: 54
36
+ title: "Logging improvements"
37
+ state: closed
38
+ labels: ["chore", "priority:low", "linear:ACM-204"]
39
+ linear:
40
+ issues:
41
+ - id: ACM-201
42
+ title: "Auth token expiry handling"
43
+ status: in_progress
44
+ priority: medium
45
+ team: Platform
46
+ - id: ACM-202
47
+ title: "API rate limiting"
48
+ status: todo
49
+ priority: low
50
+ team: Platform
51
+ - id: ACM-203
52
+ title: "Fix CORS headers"
53
+ status: todo
54
+ priority: low
55
+ team: Platform
56
+ - id: ACM-204
57
+ title: "Logging improvements"
58
+ status: done
59
+ priority: low
60
+ team: Platform
61
+ expected_state:
62
+ gh:
63
+ command_history:
64
+ - pattern: "gh issue list.*--repo acme-corp/web-platform"
65
+ linear:
66
+ issues:
67
+ - id: ACM-201
68
+ priority: urgent
69
+ - id: ACM-202
70
+ priority: medium
71
+ - id: ACM-203
72
+ priority: high
73
+ command_history:
74
+ - pattern: "linear issue update ACM-201.*--priority.*urgent"
75
+ - pattern: "linear issue update ACM-202.*--priority.*medium"
76
+ - pattern: "linear issue update ACM-203.*--priority.*high"
77
+ scoring:
78
+ outcome: 0.6
79
+ efficiency: 0.2
80
+ recovery: 0.2
81
+ max_turns: 10
82
+ optimal_commands: 5
83
+ timeout_seconds: 90
data/tasks/cb-024.yaml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-024
2
+ title: "Find unassigned Linear issues and notify team on Slack"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Find all Linear issues in the "Platform" team that have status "todo" or
7
+ "in_progress" but have no assignee. Post a message to the #engineering
8
+ Slack channel listing these unassigned issues and asking team members
9
+ to pick them up.
10
+ tools_provided:
11
+ - linear
12
+ - slack
13
+ initial_state:
14
+ linear:
15
+ issues:
16
+ - id: ACM-301
17
+ title: "Implement rate limiter middleware"
18
+ status: todo
19
+ priority: high
20
+ assignee: null
21
+ team: Platform
22
+ - id: ACM-302
23
+ title: "Set up integration tests"
24
+ status: in_progress
25
+ priority: medium
26
+ assignee: null
27
+ team: Platform
28
+ - id: ACM-303
29
+ title: "Refactor auth module"
30
+ status: todo
31
+ priority: low
32
+ assignee: sarah@acme.com
33
+ team: Platform
34
+ - id: ACM-304
35
+ title: "Add health check endpoints"
36
+ status: todo
37
+ priority: medium
38
+ assignee: null
39
+ team: Platform
40
+ - id: ACM-305
41
+ title: "Database connection pooling"
42
+ status: backlog
43
+ priority: low
44
+ assignee: null
45
+ team: Platform
46
+ slack:
47
+ channels:
48
+ - id: C002
49
+ name: engineering
50
+ is_private: false
51
+ num_members: 22
52
+ messages: []
53
+ expected_state:
54
+ linear:
55
+ command_history:
56
+ - pattern: "linear issue list.*--team.*Platform"
57
+ slack:
58
+ channels:
59
+ - name: engineering
60
+ messages:
61
+ - text_contains: "ACM-301"
62
+ - text_contains: "ACM-302"
63
+ - text_contains: "ACM-304"
64
+ - text_contains: "unassigned"
65
+ command_history:
66
+ - pattern: "slack message send.*--channel.*engineering"
67
+ scoring:
68
+ outcome: 0.6
69
+ efficiency: 0.2
70
+ recovery: 0.2
71
+ max_turns: 8
72
+ optimal_commands: 3
73
+ timeout_seconds: 60
data/tasks/cb-025.yaml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-025
2
+ title: "Create Notion summary from Linear project status"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Retrieve the status of the Linear project "Q1 Platform Migration" including
7
+ all its issues and their current states. Create a Notion page under
8
+ "Engineering Wiki" titled "Q1 Platform Migration - Status Report" that
9
+ summarizes the project progress: total issues, completed vs in-progress vs
10
+ todo counts, and lists any blocked items.
11
+ tools_provided:
12
+ - linear
13
+ - notion
14
+ initial_state:
15
+ linear:
16
+ projects:
17
+ - name: "Q1 Platform Migration"
18
+ status: in_progress
19
+ lead: sarah@acme.com
20
+ target_date: "2026-03-31"
21
+ teams: ["Platform"]
22
+ issues:
23
+ - id: ACM-401
24
+ title: "Migrate user service to gRPC"
25
+ status: done
26
+ priority: high
27
+ project: "Q1 Platform Migration"
28
+ team: Platform
29
+ - id: ACM-402
30
+ title: "Update API gateway routing"
31
+ status: in_progress
32
+ priority: high
33
+ project: "Q1 Platform Migration"
34
+ team: Platform
35
+ - id: ACM-403
36
+ title: "Database schema migration"
37
+ status: done
38
+ priority: urgent
39
+ project: "Q1 Platform Migration"
40
+ team: Platform
41
+ - id: ACM-404
42
+ title: "Update client SDKs"
43
+ status: todo
44
+ priority: medium
45
+ project: "Q1 Platform Migration"
46
+ team: Platform
47
+ - id: ACM-405
48
+ title: "Load testing new endpoints"
49
+ status: blocked
50
+ priority: high
51
+ project: "Q1 Platform Migration"
52
+ team: Platform
53
+ notion:
54
+ pages:
55
+ - id: pg-001
56
+ title: "Engineering Runbook"
57
+ parent: "Engineering Wiki"
58
+ databases:
59
+ - id: db-001
60
+ title: "Engineering Wiki"
61
+ expected_state:
62
+ linear:
63
+ command_history:
64
+ - pattern: "linear issue list.*--project.*Q1 Platform Migration"
65
+ notion:
66
+ pages:
67
+ - title: "Q1 Platform Migration - Status Report"
68
+ parent: "Engineering Wiki"
69
+ content_contains: "blocked"
70
+ command_history:
71
+ - pattern: "notion page create.*--title.*Q1 Platform Migration.*Status Report"
72
+ scoring:
73
+ outcome: 0.6
74
+ efficiency: 0.2
75
+ recovery: 0.2
76
+ max_turns: 8
77
+ optimal_commands: 3
78
+ timeout_seconds: 60
data/tasks/cb-026.yaml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-026
2
+ title: "Find Jira issues blocked for more than 3 days and notify on Slack"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Search the Jira project "INFRA" for issues with status "Blocked" that have
7
+ been in that status for more than 3 days. For each blocked issue, post a
8
+ notification to the #incidents Slack channel with the issue key, summary,
9
+ assignee, and how long it has been blocked.
10
+ tools_provided:
11
+ - jira
12
+ - slack
13
+ initial_state:
14
+ jira:
15
+ projects:
16
+ - key: INFRA
17
+ name: "Infrastructure"
18
+ issues:
19
+ - key: INFRA-301
20
+ summary: "Upgrade load balancer firmware"
21
+ status: "Blocked"
22
+ status_changed: "2026-03-07T10:00:00Z"
23
+ assignee: ops-alice
24
+ priority: High
25
+ blocker_reason: "Waiting for vendor approval"
26
+ - key: INFRA-302
27
+ summary: "Deploy new monitoring agent"
28
+ status: "Blocked"
29
+ status_changed: "2026-03-11T14:00:00Z"
30
+ assignee: ops-bob
31
+ priority: Medium
32
+ blocker_reason: "Dependency on INFRA-301"
33
+ - key: INFRA-303
34
+ summary: "Rotate SSL certificates"
35
+ status: "Blocked"
36
+ status_changed: "2026-03-05T09:00:00Z"
37
+ assignee: ops-carol
38
+ priority: Critical
39
+ blocker_reason: "Certificate authority outage"
40
+ - key: INFRA-304
41
+ summary: "Set up backup replication"
42
+ status: "In Progress"
43
+ assignee: ops-alice
44
+ priority: High
45
+ - key: INFRA-305
46
+ summary: "Network segmentation review"
47
+ status: "Blocked"
48
+ status_changed: "2026-03-10T08:00:00Z"
49
+ assignee: null
50
+ priority: Medium
51
+ blocker_reason: "Pending security team review"
52
+ slack:
53
+ channels:
54
+ - id: C005
55
+ name: incidents
56
+ is_private: false
57
+ num_members: 15
58
+ messages: []
59
+ expected_state:
60
+ jira:
61
+ command_history:
62
+ - pattern: "jira issue list.*--project.*INFRA.*--status.*Blocked"
63
+ slack:
64
+ channels:
65
+ - name: incidents
66
+ messages:
67
+ - text_contains: "INFRA-301"
68
+ - text_contains: "INFRA-303"
69
+ command_history:
70
+ - pattern: "slack message send.*--channel.*incidents"
71
+ scoring:
72
+ outcome: 0.6
73
+ efficiency: 0.2
74
+ recovery: 0.2
75
+ max_turns: 8
76
+ optimal_commands: 3
77
+ timeout_seconds: 60
data/tasks/cb-027.yaml ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-027
2
+ title: "Search Gmail for meeting invites and create Linear tasks"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ Search Gmail for emails with subject containing "Action Items" or "Follow-up"
7
+ received in the last 7 days. Extract action items from these emails and create
8
+ corresponding Linear issues in the "Platform" team with appropriate priorities.
9
+ tools_provided:
10
+ - google
11
+ - linear
12
+ initial_state:
13
+ google:
14
+ gmail:
15
+ messages:
16
+ - id: msg-101
17
+ from: "alice@acme.com"
18
+ subject: "Meeting Action Items - Sprint Review 3/10"
19
+ date: "2026-03-10T16:00:00Z"
20
+ body: |
21
+ Action items from today's sprint review:
22
+ 1. [HIGH] Investigate performance regression in search API
23
+ 2. [MEDIUM] Update API documentation for v2 endpoints
24
+ 3. [LOW] Clean up deprecated feature flags
25
+ - id: msg-102
26
+ from: "bob@acme.com"
27
+ subject: "Follow-up: Security Audit Discussion"
28
+ date: "2026-03-11T11:00:00Z"
29
+ body: |
30
+ Follow-up tasks:
31
+ 1. [URGENT] Patch CVE-2026-5678 in auth library
32
+ 2. [HIGH] Enable CSP headers on all endpoints
33
+ - id: msg-103
34
+ from: "carol@acme.com"
35
+ subject: "Lunch plans for Friday"
36
+ date: "2026-03-11T12:00:00Z"
37
+ body: "Anyone want to try the new ramen place?"
38
+ - id: msg-104
39
+ from: "noreply@github.com"
40
+ subject: "PR Review Requested"
41
+ date: "2026-03-11T14:00:00Z"
42
+ body: "bob requested your review on PR #567"
43
+ linear:
44
+ teams:
45
+ - name: Platform
46
+ key: ACM
47
+ members:
48
+ - sarah@acme.com
49
+ - mark@acme.com
50
+ issues: []
51
+ expected_state:
52
+ google:
53
+ command_history:
54
+ - pattern: "google gmail search.*(Action Items|Follow-up)"
55
+ linear:
56
+ issues:
57
+ - title_contains: "performance regression"
58
+ priority: high
59
+ team: Platform
60
+ - title_contains: "CVE-2026-5678"
61
+ priority: urgent
62
+ team: Platform
63
+ command_history:
64
+ - pattern: "linear issue create.*--team.*Platform"
65
+ scoring:
66
+ outcome: 0.6
67
+ efficiency: 0.2
68
+ recovery: 0.2
69
+ max_turns: 10
70
+ optimal_commands: 6
71
+ timeout_seconds: 90
data/tasks/cb-028.yaml ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-028
2
+ title: "Find large files in Google Drive and post report to Slack"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ List all files in Google Drive that are larger than 50 MB. Create a summary
7
+ report with the file name, size, owner, and last modified date, then post
8
+ this report to the #engineering Slack channel with a message asking owners
9
+ to archive or clean up unused large files.
10
+ tools_provided:
11
+ - google
12
+ - slack
13
+ initial_state:
14
+ google:
15
+ drive:
16
+ all_files:
17
+ - name: "production-db-dump-20260301.sql"
18
+ size_mb: 2400
19
+ modified: "2026-03-01T03:00:00Z"
20
+ owner: "ops-alice@acme.com"
21
+ path: "Backups/"
22
+ - name: "demo-video-q1.mp4"
23
+ size_mb: 350
24
+ modified: "2026-02-15T14:00:00Z"
25
+ owner: "marketing@acme.com"
26
+ path: "Marketing/"
27
+ - name: "Architecture Diagram.png"
28
+ size_mb: 2
29
+ modified: "2026-03-10T09:00:00Z"
30
+ owner: "bob@acme.com"
31
+ path: "Engineering/"
32
+ - name: "ml-model-weights-v3.bin"
33
+ size_mb: 890
34
+ modified: "2026-01-20T10:00:00Z"
35
+ owner: "data-team@acme.com"
36
+ path: "ML/"
37
+ - name: "load-test-results.csv"
38
+ size_mb: 75
39
+ modified: "2026-03-08T16:00:00Z"
40
+ owner: "sarah@acme.com"
41
+ path: "Engineering/Testing/"
42
+ - name: "sprint-notes.docx"
43
+ size_mb: 1
44
+ modified: "2026-03-11T09:00:00Z"
45
+ owner: "alice@acme.com"
46
+ path: "Engineering/"
47
+ slack:
48
+ channels:
49
+ - id: C002
50
+ name: engineering
51
+ is_private: false
52
+ num_members: 22
53
+ messages: []
54
+ expected_state:
55
+ google:
56
+ command_history:
57
+ - pattern: "google drive list.*--min-size"
58
+ slack:
59
+ channels:
60
+ - name: engineering
61
+ messages:
62
+ - text_contains: "production-db-dump"
63
+ - text_contains: "demo-video"
64
+ - text_contains: "ml-model-weights"
65
+ - text_contains: "load-test-results"
66
+ command_history:
67
+ - pattern: "slack message send.*--channel.*engineering"
68
+ scoring:
69
+ outcome: 0.6
70
+ efficiency: 0.2
71
+ recovery: 0.2
72
+ max_turns: 8
73
+ optimal_commands: 3
74
+ timeout_seconds: 60
data/tasks/cb-029.yaml ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-029
2
+ title: "Cross-reference GitHub PRs with Linear issues"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ List all open pull requests in "acme-corp/web-platform" that reference a
7
+ Linear issue in their title or body (pattern: ACM-NNN). For each referenced
8
+ Linear issue, update its status to "in_progress" if it is currently "todo".
9
+ Report any PRs that reference non-existent Linear issues.
10
+ tools_provided:
11
+ - gh
12
+ - linear
13
+ initial_state:
14
+ gh:
15
+ repos:
16
+ acme-corp/web-platform:
17
+ pull_requests:
18
+ - number: 200
19
+ title: "feat: Implement PKCE flow [ACM-501]"
20
+ state: open
21
+ author: alice
22
+ body: "Implements the OAuth2 PKCE flow as described in ACM-501."
23
+ - number: 201
24
+ title: "fix: CORS headers [ACM-502]"
25
+ state: open
26
+ author: bob
27
+ body: "Fixes CORS header configuration per ACM-502."
28
+ - number: 202
29
+ title: "chore: Update dependencies"
30
+ state: open
31
+ author: carol
32
+ body: "Routine dependency updates, no Linear issue."
33
+ - number: 203
34
+ title: "feat: Rate limiter [ACM-503]"
35
+ state: open
36
+ author: dave
37
+ body: "Implements rate limiting middleware. Refs ACM-503."
38
+ - number: 204
39
+ title: "fix: Session handling [ACM-999]"
40
+ state: open
41
+ author: alice
42
+ body: "Fix session timeout. References ACM-999."
43
+ linear:
44
+ issues:
45
+ - id: ACM-501
46
+ title: "Implement OAuth2 PKCE flow"
47
+ status: todo
48
+ priority: high
49
+ team: Platform
50
+ - id: ACM-502
51
+ title: "Fix CORS headers"
52
+ status: in_progress
53
+ priority: medium
54
+ team: Platform
55
+ - id: ACM-503
56
+ title: "Implement rate limiter"
57
+ status: todo
58
+ priority: high
59
+ team: Platform
60
+ expected_state:
61
+ gh:
62
+ command_history:
63
+ - pattern: "gh pr list.*--repo acme-corp/web-platform"
64
+ linear:
65
+ issues:
66
+ - id: ACM-501
67
+ status: in_progress
68
+ - id: ACM-502
69
+ status: in_progress
70
+ - id: ACM-503
71
+ status: in_progress
72
+ command_history:
73
+ - pattern: "linear issue update ACM-501.*--status.*in_progress"
74
+ - pattern: "linear issue update ACM-503.*--status.*in_progress"
75
+ scoring:
76
+ outcome: 0.6
77
+ efficiency: 0.2
78
+ recovery: 0.2
79
+ max_turns: 10
80
+ optimal_commands: 6
81
+ timeout_seconds: 90
data/tasks/cb-030.yaml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-030
2
+ title: "Create Notion doc listing all Slack channel topics"
3
+ difficulty: medium
4
+ category: composite
5
+ description: |
6
+ List all public Slack channels in the workspace and collect their names,
7
+ topics, and member counts. Create a Notion page under "Company Resources"
8
+ titled "Slack Channel Directory" that organizes all channels into a
9
+ structured document with descriptions and member counts.
10
+ tools_provided:
11
+ - slack
12
+ - notion
13
+ initial_state:
14
+ slack:
15
+ channels:
16
+ - id: C001
17
+ name: general
18
+ is_private: false
19
+ num_members: 45
20
+ topic: "Company-wide announcements and updates"
21
+ - id: C002
22
+ name: engineering
23
+ is_private: false
24
+ num_members: 22
25
+ topic: "Engineering discussions, code reviews, technical decisions"
26
+ - id: C003
27
+ name: design-team
28
+ is_private: true
29
+ num_members: 8
30
+ topic: "Design reviews and feedback"
31
+ - id: C004
32
+ name: random
33
+ is_private: false
34
+ num_members: 40
35
+ topic: "Non-work banter, memes, and fun"
36
+ - id: C005
37
+ name: incidents
38
+ is_private: false
39
+ num_members: 15
40
+ topic: "Production incident coordination and post-mortems"
41
+ - id: C006
42
+ name: hiring
43
+ is_private: false
44
+ num_members: 12
45
+ topic: "Hiring pipeline updates and interview feedback"
46
+ - id: C007
47
+ name: product
48
+ is_private: false
49
+ num_members: 18
50
+ topic: "Product roadmap, feature requests, user feedback"
51
+ notion:
52
+ pages:
53
+ - id: pg-010
54
+ title: "Company Handbook"
55
+ parent: "Company Resources"
56
+ databases:
57
+ - id: db-002
58
+ title: "Company Resources"
59
+ expected_state:
60
+ slack:
61
+ command_history:
62
+ - pattern: "slack channel list"
63
+ notion:
64
+ pages:
65
+ - title: "Slack Channel Directory"
66
+ parent: "Company Resources"
67
+ content_contains: "engineering"
68
+ content_contains_2: "incidents"
69
+ command_history:
70
+ - pattern: "notion page create.*--title.*Slack Channel Directory"
71
+ scoring:
72
+ outcome: 0.6
73
+ efficiency: 0.2
74
+ recovery: 0.2
75
+ max_turns: 8
76
+ optimal_commands: 3
77
+ timeout_seconds: 60
data/tasks/cb-031.yaml ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-031
2
+ title: "Incident response: find broken commit, create issue, assign on-call, notify Slack"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ A production incident has been reported. Investigate the GitHub repository
7
+ "acme-corp/web-platform" to find the most recent merged PR that touched
8
+ files in the "src/auth/" directory. Create a GitHub issue documenting the
9
+ incident and link it to that PR. Then find the on-call engineer from the
10
+ Linear team "Platform" (the one with the "oncall" label on their current
11
+ issue) and assign the GitHub issue to them. Finally, post an incident
12
+ notification to the #incidents Slack channel with the issue link, suspected
13
+ PR, and assigned engineer.
14
+ tools_provided:
15
+ - gh
16
+ - linear
17
+ - slack
18
+ initial_state:
19
+ gh:
20
+ repos:
21
+ acme-corp/web-platform:
22
+ pull_requests:
23
+ - number: 180
24
+ title: "feat: Add session refresh logic"
25
+ state: closed
26
+ merged: true
27
+ merged_at: "2026-03-12T06:00:00Z"
28
+ author: dave
29
+ files_changed: ["src/auth/session.ts", "src/auth/refresh.ts"]
30
+ - number: 179
31
+ title: "fix: Update user avatar upload"
32
+ state: closed
33
+ merged: true
34
+ merged_at: "2026-03-11T15:00:00Z"
35
+ author: carol
36
+ files_changed: ["src/profile/avatar.ts"]
37
+ - number: 178
38
+ title: "chore: Bump auth library version"
39
+ state: closed
40
+ merged: true
41
+ merged_at: "2026-03-11T10:00:00Z"
42
+ author: bob
43
+ files_changed: ["package.json", "src/auth/config.ts"]
44
+ - number: 181
45
+ title: "docs: Update API reference"
46
+ state: open
47
+ author: alice
48
+ files_changed: ["docs/api.md"]
49
+ issues:
50
+ - number: 90
51
+ title: "Existing tracking issue"
52
+ state: open
53
+ labels: ["tracking"]
54
+ linear:
55
+ teams:
56
+ - name: Platform
57
+ key: ACM
58
+ members:
59
+ - sarah@acme.com
60
+ - mark@acme.com
61
+ - dave@acme.com
62
+ - bob@acme.com
63
+ issues:
64
+ - id: ACM-600
65
+ title: "On-call rotation week 11"
66
+ status: in_progress
67
+ priority: medium
68
+ assignee: mark@acme.com
69
+ team: Platform
70
+ labels: ["oncall"]
71
+ - id: ACM-601
72
+ title: "Refactor error handling"
73
+ status: todo
74
+ priority: low
75
+ assignee: sarah@acme.com
76
+ team: Platform
77
+ labels: []
78
+ - id: ACM-602
79
+ title: "Performance optimization"
80
+ status: in_progress
81
+ priority: medium
82
+ assignee: dave@acme.com
83
+ team: Platform
84
+ labels: []
85
+ slack:
86
+ channels:
87
+ - id: C005
88
+ name: incidents
89
+ is_private: false
90
+ num_members: 15
91
+ messages: []
92
+ - id: C002
93
+ name: engineering
94
+ is_private: false
95
+ num_members: 22
96
+ messages: []
97
+ expected_state:
98
+ gh:
99
+ repos:
100
+ acme-corp/web-platform:
101
+ issues:
102
+ - title_contains: "incident"
103
+ state: open
104
+ assignee: mark
105
+ body_contains: "180"
106
+ command_history:
107
+ - pattern: "gh pr list.*--state.*merged"
108
+ - pattern: "gh issue create.*--repo acme-corp/web-platform"
109
+ linear:
110
+ command_history:
111
+ - pattern: "linear issue list.*--team.*Platform.*--label.*oncall"
112
+ slack:
113
+ channels:
114
+ - name: incidents
115
+ messages:
116
+ - text_contains: "incident"
117
+ - text_contains: "mark"
118
+ - text_contains: "180"
119
+ command_history:
120
+ - pattern: "slack message send.*--channel.*incidents"
121
+ scoring:
122
+ outcome: 0.6
123
+ efficiency: 0.2
124
+ recovery: 0.2
125
+ max_turns: 15
126
+ optimal_commands: 7
127
+ timeout_seconds: 120
data/tasks/cb-032.yaml ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-032
2
+ title: "Sprint planning: pull Linear backlog, create Notion sprint doc, notify team"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ Prepare for sprint planning. Pull all Linear issues from the "Platform"
7
+ team that are in "backlog" or "todo" status and have priority "high" or
8
+ "urgent". Create a Notion page under "Engineering Wiki" titled
9
+ "Sprint 12 Planning - 2026-03-12" that organizes these issues by priority,
10
+ includes estimated effort, and highlights any blocked dependencies.
11
+ Then post a message to the #engineering Slack channel announcing the sprint
12
+ planning doc is ready and listing the top 3 highest priority items.
13
+ tools_provided:
14
+ - linear
15
+ - notion
16
+ - slack
17
+ initial_state:
18
+ linear:
19
+ teams:
20
+ - name: Platform
21
+ key: ACM
22
+ issues:
23
+ - id: ACM-701
24
+ title: "Implement GraphQL subscriptions"
25
+ status: backlog
26
+ priority: urgent
27
+ assignee: null
28
+ team: Platform
29
+ estimate: 8
30
+ labels: ["api"]
31
+ - id: ACM-702
32
+ title: "Add OpenTelemetry tracing"
33
+ status: todo
34
+ priority: high
35
+ assignee: sarah@acme.com
36
+ team: Platform
37
+ estimate: 5
38
+ labels: ["observability"]
39
+ - id: ACM-703
40
+ title: "Migrate to PostgreSQL 16"
41
+ status: backlog
42
+ priority: high
43
+ assignee: null
44
+ team: Platform
45
+ estimate: 13
46
+ labels: ["database", "blocked"]
47
+ blocked_by: "ACM-710"
48
+ - id: ACM-704
49
+ title: "Implement circuit breaker pattern"
50
+ status: todo
51
+ priority: urgent
52
+ assignee: mark@acme.com
53
+ team: Platform
54
+ estimate: 5
55
+ labels: ["resilience"]
56
+ - id: ACM-705
57
+ title: "Update API documentation"
58
+ status: todo
59
+ priority: low
60
+ assignee: null
61
+ team: Platform
62
+ estimate: 3
63
+ labels: ["docs"]
64
+ - id: ACM-706
65
+ title: "Add retry logic to external calls"
66
+ status: backlog
67
+ priority: high
68
+ assignee: null
69
+ team: Platform
70
+ estimate: 3
71
+ labels: ["resilience"]
72
+ - id: ACM-710
73
+ title: "Provision new database cluster"
74
+ status: in_progress
75
+ priority: high
76
+ assignee: ops-alice@acme.com
77
+ team: Platform
78
+ estimate: 8
79
+ labels: ["infrastructure"]
80
+ notion:
81
+ databases:
82
+ - id: db-001
83
+ title: "Engineering Wiki"
84
+ pages:
85
+ - id: pg-020
86
+ title: "Sprint 11 Retrospective"
87
+ parent: "Engineering Wiki"
88
+ slack:
89
+ channels:
90
+ - id: C002
91
+ name: engineering
92
+ is_private: false
93
+ num_members: 22
94
+ messages: []
95
+ expected_state:
96
+ linear:
97
+ command_history:
98
+ - pattern: "linear issue list.*--team.*Platform"
99
+ notion:
100
+ pages:
101
+ - title_contains: "Sprint 12 Planning"
102
+ parent: "Engineering Wiki"
103
+ content_contains: "ACM-701"
104
+ content_contains_2: "ACM-704"
105
+ content_contains_3: "blocked"
106
+ command_history:
107
+ - pattern: "notion page create.*Sprint 12"
108
+ slack:
109
+ channels:
110
+ - name: engineering
111
+ messages:
112
+ - text_contains: "Sprint 12"
113
+ - text_contains: "planning"
114
+ command_history:
115
+ - pattern: "slack message send.*--channel.*engineering"
116
+ scoring:
117
+ outcome: 0.6
118
+ efficiency: 0.2
119
+ recovery: 0.2
120
+ max_turns: 12
121
+ optimal_commands: 5
122
+ timeout_seconds: 120
data/tasks/cb-033.yaml ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-033
2
+ title: "Cross-platform project sync: GitHub milestones to Linear projects to Notion"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ Synchronize project tracking across three platforms. First, list all open
7
+ GitHub milestones in "acme-corp/web-platform". For each milestone, find or
8
+ create the corresponding Linear project (matching by name). Update the
9
+ Linear project's target date to match the milestone's due date. Finally,
10
+ create a Notion page under "Project Tracking" that shows a unified view
11
+ of all projects with their GitHub milestone progress (open/closed issue
12
+ counts) and Linear project status.
13
+ tools_provided:
14
+ - gh
15
+ - linear
16
+ - notion
17
+ initial_state:
18
+ gh:
19
+ repos:
20
+ acme-corp/web-platform:
21
+ milestones:
22
+ - title: "v3.0 Release"
23
+ state: open
24
+ due_date: "2026-04-01"
25
+ open_issues: 12
26
+ closed_issues: 28
27
+ description: "Major version release with new auth system"
28
+ - title: "Security Hardening"
29
+ state: open
30
+ due_date: "2026-03-20"
31
+ open_issues: 5
32
+ closed_issues: 15
33
+ description: "Address all findings from Q4 security audit"
34
+ - title: "Performance Sprint"
35
+ state: open
36
+ due_date: "2026-03-25"
37
+ open_issues: 8
38
+ closed_issues: 4
39
+ description: "P95 latency reduction targets"
40
+ - title: "v2.9 Release"
41
+ state: closed
42
+ due_date: "2026-02-28"
43
+ open_issues: 0
44
+ closed_issues: 35
45
+ linear:
46
+ projects:
47
+ - name: "v3.0 Release"
48
+ status: in_progress
49
+ lead: sarah@acme.com
50
+ target_date: "2026-03-28"
51
+ teams: ["Platform"]
52
+ - name: "Security Hardening"
53
+ status: in_progress
54
+ lead: bob@acme.com
55
+ target_date: "2026-03-15"
56
+ teams: ["Platform", "Security"]
57
+ notion:
58
+ databases:
59
+ - id: db-003
60
+ title: "Project Tracking"
61
+ pages:
62
+ - id: pg-030
63
+ title: "Archived Projects"
64
+ parent: "Project Tracking"
65
+ expected_state:
66
+ gh:
67
+ command_history:
68
+ - pattern: "gh api.*milestones"
69
+ linear:
70
+ projects:
71
+ - name: "v3.0 Release"
72
+ target_date: "2026-04-01"
73
+ - name: "Security Hardening"
74
+ target_date: "2026-03-20"
75
+ - name: "Performance Sprint"
76
+ status: planned
77
+ command_history:
78
+ - pattern: "linear project update.*v3.0.*--target-date"
79
+ - pattern: "linear project (update|create).*Security Hardening"
80
+ - pattern: "linear project create.*Performance Sprint"
81
+ notion:
82
+ pages:
83
+ - title_contains: "Project Sync"
84
+ parent: "Project Tracking"
85
+ content_contains: "v3.0 Release"
86
+ content_contains_2: "Security Hardening"
87
+ content_contains_3: "Performance Sprint"
88
+ command_history:
89
+ - pattern: "notion page create.*--parent.*Project Tracking"
90
+ scoring:
91
+ outcome: 0.6
92
+ efficiency: 0.2
93
+ recovery: 0.2
94
+ max_turns: 15
95
+ optimal_commands: 8
96
+ timeout_seconds: 120
data/tasks/cb-034.yaml ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-034
2
+ title: "Bug triage: GitHub issues to Linear issues, assign by labels, notify Slack"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ Perform a full bug triage workflow. Find all open GitHub issues in
7
+ "acme-corp/web-platform" with the "bug" label that don't have a
8
+ "linear:" label yet. For each bug, create a Linear issue in the
9
+ appropriate team based on GitHub labels ("auth" -> Security team,
10
+ "api" -> Platform team, "ui" -> Frontend team, default -> Platform).
11
+ Set priority based on other labels ("priority:critical" -> urgent,
12
+ "priority:high" -> high, otherwise medium). Add a "linear:ACM-XXX"
13
+ label back to each GitHub issue. Finally, post a triage summary to
14
+ #engineering on Slack listing all newly created Linear issues.
15
+ tools_provided:
16
+ - gh
17
+ - linear
18
+ - slack
19
+ initial_state:
20
+ gh:
21
+ repos:
22
+ acme-corp/web-platform:
23
+ issues:
24
+ - number: 100
25
+ title: "XSS vulnerability in search input"
26
+ state: open
27
+ labels: ["bug", "auth", "priority:critical"]
28
+ assignee: null
29
+ - number: 101
30
+ title: "REST API returns 500 on empty payload"
31
+ state: open
32
+ labels: ["bug", "api", "priority:high"]
33
+ assignee: null
34
+ - number: 102
35
+ title: "Button misalignment on mobile"
36
+ state: open
37
+ labels: ["bug", "ui"]
38
+ assignee: null
39
+ - number: 103
40
+ title: "Race condition in job queue"
41
+ state: open
42
+ labels: ["bug", "priority:high"]
43
+ assignee: null
44
+ - number: 104
45
+ title: "Implement dark mode"
46
+ state: open
47
+ labels: ["enhancement", "ui"]
48
+ assignee: carol
49
+ - number: 105
50
+ title: "Token refresh bug [linear:ACM-501]"
51
+ state: open
52
+ labels: ["bug", "auth", "linear:ACM-501"]
53
+ assignee: alice
54
+ linear:
55
+ teams:
56
+ - name: Platform
57
+ key: ACM
58
+ members: ["sarah@acme.com", "mark@acme.com"]
59
+ - name: Security
60
+ key: SEC
61
+ members: ["alice@acme.com", "bob@acme.com"]
62
+ - name: Frontend
63
+ key: FE
64
+ members: ["carol@acme.com", "dave@acme.com"]
65
+ issues:
66
+ - id: ACM-501
67
+ title: "Token refresh bug"
68
+ status: in_progress
69
+ priority: high
70
+ team: Security
71
+ slack:
72
+ channels:
73
+ - id: C002
74
+ name: engineering
75
+ is_private: false
76
+ num_members: 22
77
+ messages: []
78
+ expected_state:
79
+ gh:
80
+ repos:
81
+ acme-corp/web-platform:
82
+ issues:
83
+ - number: 100
84
+ labels_contain: "linear:"
85
+ - number: 101
86
+ labels_contain: "linear:"
87
+ - number: 102
88
+ labels_contain: "linear:"
89
+ - number: 103
90
+ labels_contain: "linear:"
91
+ command_history:
92
+ - pattern: "gh issue list.*--label.*bug"
93
+ - pattern: "gh issue edit.*--add-label.*linear:"
94
+ linear:
95
+ issues:
96
+ - title_contains: "XSS vulnerability"
97
+ team: Security
98
+ priority: urgent
99
+ - title_contains: "REST API returns 500"
100
+ team: Platform
101
+ priority: high
102
+ - title_contains: "Button misalignment"
103
+ team: Frontend
104
+ priority: medium
105
+ - title_contains: "Race condition"
106
+ team: Platform
107
+ priority: high
108
+ command_history:
109
+ - pattern: "linear issue create"
110
+ slack:
111
+ channels:
112
+ - name: engineering
113
+ messages:
114
+ - text_contains: "triage"
115
+ - text_contains: "XSS"
116
+ - text_contains: "REST API"
117
+ command_history:
118
+ - pattern: "slack message send.*--channel.*engineering"
119
+ scoring:
120
+ outcome: 0.6
121
+ efficiency: 0.2
122
+ recovery: 0.2
123
+ max_turns: 18
124
+ optimal_commands: 12
125
+ timeout_seconds: 180
data/tasks/cb-035.yaml ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-035
2
+ title: "(kforge) Deploy artifact: list artifacts, trigger staging pipeline, check status"
3
+ difficulty: hard
4
+ category: custom_cli
5
+ description: |
6
+ Using the kforge CLI, deploy the latest build artifact for the "web-platform"
7
+ service to the staging environment. First, list available artifacts to find
8
+ the most recent successful build. Then trigger a deployment pipeline for
9
+ staging using that artifact. Wait for the pipeline to reach a terminal state
10
+ and report the result. If the deployment fails, roll back to the previously
11
+ deployed version.
12
+ tools_provided:
13
+ - kforge
14
+ initial_state:
15
+ kforge:
16
+ artifacts:
17
+ - id: art-050
18
+ service: web-platform
19
+ version: "2.3.1"
20
+ build_status: success
21
+ created_at: "2026-03-12T08:00:00Z"
22
+ sha: "abc123f"
23
+ - id: art-049
24
+ service: web-platform
25
+ version: "2.3.0"
26
+ build_status: success
27
+ created_at: "2026-03-11T16:00:00Z"
28
+ sha: "def456a"
29
+ - id: art-048
30
+ service: web-platform
31
+ version: "2.2.9"
32
+ build_status: failed
33
+ created_at: "2026-03-11T10:00:00Z"
34
+ sha: "ghi789b"
35
+ - id: art-047
36
+ service: api-gateway
37
+ version: "1.5.2"
38
+ build_status: success
39
+ created_at: "2026-03-10T14:00:00Z"
40
+ sha: "jkl012c"
41
+ deployments:
42
+ staging:
43
+ web-platform:
44
+ current_version: "2.3.0"
45
+ artifact_id: art-049
46
+ deployed_at: "2026-03-11T17:00:00Z"
47
+ status: healthy
48
+ pipelines: []
49
+ expected_state:
50
+ kforge:
51
+ command_history:
52
+ - pattern: "kforge artifact list.*--service.*web-platform"
53
+ - pattern: "kforge deploy trigger.*--env.*staging.*--artifact.*art-050"
54
+ - pattern: "kforge pipeline status"
55
+ deployments:
56
+ staging:
57
+ web-platform:
58
+ current_version: "2.3.1"
59
+ artifact_id: art-050
60
+ scoring:
61
+ outcome: 0.6
62
+ efficiency: 0.2
63
+ recovery: 0.2
64
+ max_turns: 10
65
+ optimal_commands: 4
66
+ timeout_seconds: 90
data/tasks/cb-036.yaml ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-036
2
+ title: "(flowctl) Create approval workflow: define steps, add gate, trigger run"
3
+ difficulty: hard
4
+ category: custom_cli
5
+ description: |
6
+ Using the flowctl CLI, create a new approval workflow called
7
+ "production-deploy-approval" for the web-platform service. The workflow
8
+ should have three steps: (1) "security-scan" — automated security scanning,
9
+ (2) "qa-signoff" — manual approval gate requiring sign-off from the QA lead,
10
+ (3) "release-manager-approval" — manual approval gate requiring the release
11
+ manager. After creating the workflow, trigger a run of it with the context
12
+ of artifact version "2.3.1". Check that the workflow run was created
13
+ successfully and is in "pending" state waiting for the first step.
14
+ tools_provided:
15
+ - flowctl
16
+ initial_state:
17
+ flowctl:
18
+ workflows:
19
+ - id: wf-001
20
+ name: "staging-deploy"
21
+ steps:
22
+ - name: "lint-check"
23
+ type: automated
24
+ - name: "deploy-staging"
25
+ type: automated
26
+ status: active
27
+ runs: []
28
+ users:
29
+ - email: qa-lead@acme.com
30
+ role: qa_lead
31
+ - email: release-mgr@acme.com
32
+ role: release_manager
33
+ - email: security@acme.com
34
+ role: security_engineer
35
+ expected_state:
36
+ flowctl:
37
+ workflows:
38
+ - name: "production-deploy-approval"
39
+ steps:
40
+ - name: "security-scan"
41
+ type: automated
42
+ - name: "qa-signoff"
43
+ type: manual
44
+ approver_contains: "qa-lead"
45
+ - name: "release-manager-approval"
46
+ type: manual
47
+ approver_contains: "release-mgr"
48
+ runs:
49
+ - workflow: "production-deploy-approval"
50
+ status: pending
51
+ context_contains: "2.3.1"
52
+ command_history:
53
+ - pattern: "flowctl workflow create.*production-deploy-approval"
54
+ - pattern: "flowctl workflow add-step"
55
+ - pattern: "flowctl run trigger.*production-deploy-approval"
56
+ scoring:
57
+ outcome: 0.6
58
+ efficiency: 0.2
59
+ recovery: 0.2
60
+ max_turns: 12
61
+ optimal_commands: 6
62
+ timeout_seconds: 90
data/tasks/cb-037.yaml ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-037
2
+ title: "(alertmgr) Incident management: acknowledge alerts, create incident, escalate"
3
+ difficulty: hard
4
+ category: custom_cli
5
+ description: |
6
+ Using the alertmgr CLI, handle a production incident. First, list all
7
+ firing alerts to understand the scope. Acknowledge all critical alerts
8
+ related to the "payment-service". Create a new incident titled
9
+ "Payment Service Degradation" with severity "P1" and link the acknowledged
10
+ alerts to it. Assign the incident to the on-call responder. If no on-call
11
+ responder is available, escalate to the engineering manager. Add a timeline
12
+ entry describing the initial findings.
13
+ tools_provided:
14
+ - alertmgr
15
+ initial_state:
16
+ alertmgr:
17
+ alerts:
18
+ - id: alert-301
19
+ name: "High error rate on payment-service"
20
+ severity: critical
21
+ status: firing
22
+ service: payment-service
23
+ started_at: "2026-03-12T14:00:00Z"
24
+ labels:
25
+ team: payments
26
+ env: production
27
+ - id: alert-302
28
+ name: "Payment-service latency > 5s"
29
+ severity: critical
30
+ status: firing
31
+ service: payment-service
32
+ started_at: "2026-03-12T14:02:00Z"
33
+ labels:
34
+ team: payments
35
+ env: production
36
+ - id: alert-303
37
+ name: "Database connection pool exhaustion"
38
+ severity: warning
39
+ status: firing
40
+ service: payment-service
41
+ started_at: "2026-03-12T14:05:00Z"
42
+ labels:
43
+ team: payments
44
+ env: production
45
+ - id: alert-304
46
+ name: "CDN cache hit ratio below threshold"
47
+ severity: warning
48
+ status: firing
49
+ service: cdn-edge
50
+ started_at: "2026-03-12T13:00:00Z"
51
+ labels:
52
+ team: infrastructure
53
+ env: production
54
+ - id: alert-305
55
+ name: "Disk usage above 85%"
56
+ severity: info
57
+ status: firing
58
+ service: log-aggregator
59
+ started_at: "2026-03-12T12:00:00Z"
60
+ labels:
61
+ team: infrastructure
62
+ env: production
63
+ incidents: []
64
+ oncall:
65
+ payments: null
66
+ infrastructure: ops-alice@acme.com
67
+ escalation:
68
+ payments: eng-manager@acme.com
69
+ infrastructure: vp-infra@acme.com
70
+ expected_state:
71
+ alertmgr:
72
+ alerts:
73
+ - id: alert-301
74
+ status: acknowledged
75
+ - id: alert-302
76
+ status: acknowledged
77
+ incidents:
78
+ - title: "Payment Service Degradation"
79
+ severity: P1
80
+ assignee: eng-manager@acme.com
81
+ linked_alerts: ["alert-301", "alert-302"]
82
+ timeline:
83
+ - entry_contains: "initial"
84
+ command_history:
85
+ - pattern: "alertmgr alert list.*--status.*firing"
86
+ - pattern: "alertmgr alert ack.*alert-301"
87
+ - pattern: "alertmgr alert ack.*alert-302"
88
+ - pattern: "alertmgr incident create.*--severity.*P1"
89
+ - pattern: "alertmgr (oncall|escalat)"
90
+ scoring:
91
+ outcome: 0.6
92
+ efficiency: 0.2
93
+ recovery: 0.2
94
+ max_turns: 15
95
+ optimal_commands: 8
96
+ timeout_seconds: 120
data/tasks/cb-038.yaml ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-038
2
+ title: "(datapipe) Build ETL: connect source, create transform, set up sink, schedule"
3
+ difficulty: hard
4
+ category: custom_cli
5
+ description: |
6
+ Using the datapipe CLI, build an ETL pipeline that extracts user activity
7
+ data from a PostgreSQL source, transforms it to compute daily active user
8
+ metrics, and loads the results into an Elasticsearch sink. Create a source
9
+ connection to the PostgreSQL database "analytics_db" on host
10
+ "db.internal:5432". Create a transform step that aggregates user events
11
+ by day and computes unique user counts. Create a sink connection to
12
+ Elasticsearch cluster "es.internal:9200" targeting the index
13
+ "user_metrics". Wire these into a pipeline called "daily-dau-pipeline"
14
+ and schedule it to run daily at 02:00 UTC.
15
+ tools_provided:
16
+ - datapipe
17
+ initial_state:
18
+ datapipe:
19
+ sources: []
20
+ transforms: []
21
+ sinks: []
22
+ pipelines:
23
+ - id: pipe-001
24
+ name: "hourly-logs-pipeline"
25
+ status: active
26
+ schedule: "0 * * * *"
27
+ source: src-010
28
+ transform: tx-010
29
+ sink: sink-010
30
+ connections:
31
+ - id: src-010
32
+ type: source
33
+ connector: s3
34
+ config:
35
+ bucket: raw-logs
36
+ - id: sink-010
37
+ type: sink
38
+ connector: elasticsearch
39
+ config:
40
+ host: "es.internal:9200"
41
+ index: raw_logs
42
+ expected_state:
43
+ datapipe:
44
+ sources:
45
+ - connector: postgresql
46
+ config_contains:
47
+ host: "db.internal:5432"
48
+ database: analytics_db
49
+ transforms:
50
+ - type: aggregation
51
+ config_contains: "unique"
52
+ sinks:
53
+ - connector: elasticsearch
54
+ config_contains:
55
+ host: "es.internal:9200"
56
+ index: user_metrics
57
+ pipelines:
58
+ - name: "daily-dau-pipeline"
59
+ schedule: "0 2 * * *"
60
+ status: active
61
+ command_history:
62
+ - pattern: "datapipe source create.*--connector.*postgresql"
63
+ - pattern: "datapipe transform create"
64
+ - pattern: "datapipe sink create.*--connector.*elasticsearch"
65
+ - pattern: "datapipe pipeline create.*daily-dau-pipeline"
66
+ - pattern: "datapipe pipeline schedule"
67
+ scoring:
68
+ outcome: 0.6
69
+ efficiency: 0.2
70
+ recovery: 0.2
71
+ max_turns: 15
72
+ optimal_commands: 7
73
+ timeout_seconds: 120
data/tasks/cb-039.yaml ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-039
2
+ title: "(meshctl + alertmgr) Detect failing service, reroute traffic, create alert"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ A service mesh health check has detected issues. Using meshctl, check the
7
+ health of all services in the "production" mesh. For any service with error
8
+ rate above 5%, reroute its traffic to the canary deployment (weight 0%
9
+ to primary, 100% to canary). Then use alertmgr to create alerts for each
10
+ failing service and create an incident if more than one service is affected.
11
+ Add traffic rerouting details to the incident timeline.
12
+ tools_provided:
13
+ - meshctl
14
+ - alertmgr
15
+ initial_state:
16
+ meshctl:
17
+ mesh: production
18
+ services:
19
+ - name: user-service
20
+ version: "1.4.0"
21
+ instances: 3
22
+ error_rate: 0.2
23
+ latency_p99_ms: 45
24
+ traffic_weights:
25
+ primary: 100
26
+ canary: 0
27
+ - name: payment-service
28
+ version: "2.1.0"
29
+ instances: 3
30
+ error_rate: 12.5
31
+ latency_p99_ms: 3200
32
+ traffic_weights:
33
+ primary: 100
34
+ canary: 0
35
+ - name: notification-service
36
+ version: "1.0.3"
37
+ instances: 2
38
+ error_rate: 8.7
39
+ latency_p99_ms: 1500
40
+ traffic_weights:
41
+ primary: 100
42
+ canary: 0
43
+ - name: search-service
44
+ version: "3.2.1"
45
+ instances: 4
46
+ error_rate: 1.2
47
+ latency_p99_ms: 120
48
+ traffic_weights:
49
+ primary: 100
50
+ canary: 0
51
+ - name: auth-service
52
+ version: "2.0.5"
53
+ instances: 3
54
+ error_rate: 0.5
55
+ latency_p99_ms: 30
56
+ traffic_weights:
57
+ primary: 100
58
+ canary: 0
59
+ alertmgr:
60
+ alerts: []
61
+ incidents: []
62
+ oncall:
63
+ payments: oncall-pay@acme.com
64
+ platform: oncall-plat@acme.com
65
+ expected_state:
66
+ meshctl:
67
+ services:
68
+ - name: payment-service
69
+ traffic_weights:
70
+ primary: 0
71
+ canary: 100
72
+ - name: notification-service
73
+ traffic_weights:
74
+ primary: 0
75
+ canary: 100
76
+ command_history:
77
+ - pattern: "meshctl service health.*--mesh.*production"
78
+ - pattern: "meshctl traffic shift.*payment-service.*--canary.*100"
79
+ - pattern: "meshctl traffic shift.*notification-service.*--canary.*100"
80
+ alertmgr:
81
+ alerts:
82
+ - service: payment-service
83
+ severity: critical
84
+ - service: notification-service
85
+ severity: critical
86
+ incidents:
87
+ - title_contains: "service"
88
+ linked_alerts_count_gte: 2
89
+ timeline:
90
+ - entry_contains: "reroute"
91
+ command_history:
92
+ - pattern: "alertmgr alert create.*payment-service"
93
+ - pattern: "alertmgr alert create.*notification-service"
94
+ - pattern: "alertmgr incident create"
95
+ scoring:
96
+ outcome: 0.6
97
+ efficiency: 0.2
98
+ recovery: 0.2
99
+ max_turns: 18
100
+ optimal_commands: 10
101
+ timeout_seconds: 150
data/tasks/cb-040.yaml ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ id: cb-040
2
+ title: "(kforge + flowctl + slack) Full deployment: promote artifact, create approval gate, notify"
3
+ difficulty: hard
4
+ category: composite
5
+ description: |
6
+ Execute a full production deployment workflow using multiple tools.
7
+ First, use kforge to find the latest successful artifact for "web-platform"
8
+ that is currently deployed in staging. Verify the staging deployment is
9
+ healthy. Then use flowctl to create and trigger a "prod-release" approval
10
+ workflow with steps: automated security scan, manual QA approval, and
11
+ manual release manager approval. Use kforge to promote the staging artifact
12
+ to the production environment once the workflow is approved (simulate
13
+ approval). Finally, post deployment notifications to both #engineering
14
+ and #incidents Slack channels with the artifact version, deployment status,
15
+ and a link to the approval workflow run.
16
+ tools_provided:
17
+ - kforge
18
+ - flowctl
19
+ - slack
20
+ initial_state:
21
+ kforge:
22
+ artifacts:
23
+ - id: art-080
24
+ service: web-platform
25
+ version: "3.0.0-rc1"
26
+ build_status: success
27
+ created_at: "2026-03-12T06:00:00Z"
28
+ sha: "abc123f"
29
+ - id: art-079
30
+ service: web-platform
31
+ version: "2.9.5"
32
+ build_status: success
33
+ created_at: "2026-03-10T14:00:00Z"
34
+ sha: "def456a"
35
+ - id: art-078
36
+ service: api-gateway
37
+ version: "1.6.0"
38
+ build_status: success
39
+ created_at: "2026-03-11T08:00:00Z"
40
+ sha: "ghi789b"
41
+ deployments:
42
+ staging:
43
+ web-platform:
44
+ current_version: "3.0.0-rc1"
45
+ artifact_id: art-080
46
+ deployed_at: "2026-03-12T07:00:00Z"
47
+ status: healthy
48
+ production:
49
+ web-platform:
50
+ current_version: "2.9.5"
51
+ artifact_id: art-079
52
+ deployed_at: "2026-03-10T15:00:00Z"
53
+ status: healthy
54
+ pipelines: []
55
+ flowctl:
56
+ workflows:
57
+ - id: wf-010
58
+ name: "staging-deploy"
59
+ status: active
60
+ runs: []
61
+ users:
62
+ - email: qa-lead@acme.com
63
+ role: qa_lead
64
+ - email: release-mgr@acme.com
65
+ role: release_manager
66
+ slack:
67
+ channels:
68
+ - id: C002
69
+ name: engineering
70
+ is_private: false
71
+ num_members: 22
72
+ messages: []
73
+ - id: C005
74
+ name: incidents
75
+ is_private: false
76
+ num_members: 15
77
+ messages: []
78
+ expected_state:
79
+ kforge:
80
+ deployments:
81
+ production:
82
+ web-platform:
83
+ current_version: "3.0.0-rc1"
84
+ artifact_id: art-080
85
+ command_history:
86
+ - pattern: "kforge artifact list.*--service.*web-platform"
87
+ - pattern: "kforge deploy status.*--env.*staging"
88
+ - pattern: "kforge deploy trigger.*--env.*production.*--artifact.*art-080"
89
+ flowctl:
90
+ workflows:
91
+ - name: "prod-release"
92
+ steps:
93
+ - type: automated
94
+ - type: manual
95
+ - type: manual
96
+ runs:
97
+ - workflow: "prod-release"
98
+ status: approved
99
+ command_history:
100
+ - pattern: "flowctl workflow create.*prod-release"
101
+ - pattern: "flowctl run trigger.*prod-release"
102
+ slack:
103
+ channels:
104
+ - name: engineering
105
+ messages:
106
+ - text_contains: "3.0.0-rc1"
107
+ - text_contains: "production"
108
+ - name: incidents
109
+ messages:
110
+ - text_contains: "deployment"
111
+ command_history:
112
+ - pattern: "slack message send.*--channel.*engineering"
113
+ - pattern: "slack message send.*--channel.*incidents"
114
+ scoring:
115
+ outcome: 0.6
116
+ efficiency: 0.2
117
+ recovery: 0.2
118
+ max_turns: 20
119
+ optimal_commands: 12
120
+ timeout_seconds: 180