File size: 1,885 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
id: cb-024
title: "Find unassigned Linear issues and notify team on Slack"
difficulty: medium
category: composite
description: |
  Find all Linear issues in the "Platform" team that have status "todo" or
  "in_progress" but have no assignee. Post a message to the #engineering
  Slack channel listing these unassigned issues and asking team members
  to pick them up.
tools_provided:
  - linear
  - slack
initial_state:
  linear:
    issues:
      - id: ACM-301
        title: "Implement rate limiter middleware"
        status: todo
        priority: high
        assignee: null
        team: Platform
      - id: ACM-302
        title: "Set up integration tests"
        status: in_progress
        priority: medium
        assignee: null
        team: Platform
      - id: ACM-303
        title: "Refactor auth module"
        status: todo
        priority: low
        assignee: sarah@acme.com
        team: Platform
      - id: ACM-304
        title: "Add health check endpoints"
        status: todo
        priority: medium
        assignee: null
        team: Platform
      - id: ACM-305
        title: "Database connection pooling"
        status: backlog
        priority: low
        assignee: null
        team: Platform
  slack:
    channels:
      - id: C002
        name: engineering
        is_private: false
        num_members: 22
        messages: []
expected_state:
  linear:
    command_history:
      - pattern: "linear issue list.*--team.*Platform"
  slack:
    channels:
      - name: engineering
        messages:
          - text_contains: "ACM-301"
          - text_contains: "ACM-302"
          - text_contains: "ACM-304"
          - text_contains: "unassigned"
    command_history:
      - pattern: "slack message send.*--channel.*engineering"
scoring:
  outcome: 0.6
  efficiency: 0.2
  recovery: 0.2
max_turns: 8
optimal_commands: 3
timeout_seconds: 60