Datasets:
File size: 3,773 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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | id: cb-034
title: "Bug triage: GitHub issues to Linear issues, assign by labels, notify Slack"
difficulty: hard
category: composite
description: |
Perform a full bug triage workflow. Find all open GitHub issues in
"acme-corp/web-platform" with the "bug" label that don't have a
"linear:" label yet. For each bug, create a Linear issue in the
appropriate team based on GitHub labels ("auth" -> Security team,
"api" -> Platform team, "ui" -> Frontend team, default -> Platform).
Set priority based on other labels ("priority:critical" -> urgent,
"priority:high" -> high, otherwise medium). Add a "linear:ACM-XXX"
label back to each GitHub issue. Finally, post a triage summary to
#engineering on Slack listing all newly created Linear issues.
tools_provided:
- gh
- linear
- slack
initial_state:
gh:
repos:
acme-corp/web-platform:
issues:
- number: 100
title: "XSS vulnerability in search input"
state: open
labels: ["bug", "auth", "priority:critical"]
assignee: null
- number: 101
title: "REST API returns 500 on empty payload"
state: open
labels: ["bug", "api", "priority:high"]
assignee: null
- number: 102
title: "Button misalignment on mobile"
state: open
labels: ["bug", "ui"]
assignee: null
- number: 103
title: "Race condition in job queue"
state: open
labels: ["bug", "priority:high"]
assignee: null
- number: 104
title: "Implement dark mode"
state: open
labels: ["enhancement", "ui"]
assignee: carol
- number: 105
title: "Token refresh bug [linear:ACM-501]"
state: open
labels: ["bug", "auth", "linear:ACM-501"]
assignee: alice
linear:
teams:
- name: Platform
key: ACM
members: ["sarah@acme.com", "mark@acme.com"]
- name: Security
key: SEC
members: ["alice@acme.com", "bob@acme.com"]
- name: Frontend
key: FE
members: ["carol@acme.com", "dave@acme.com"]
issues:
- id: ACM-501
title: "Token refresh bug"
status: in_progress
priority: high
team: Security
slack:
channels:
- id: C002
name: engineering
is_private: false
num_members: 22
messages: []
expected_state:
gh:
repos:
acme-corp/web-platform:
issues:
- number: 100
labels_contain: "linear:"
- number: 101
labels_contain: "linear:"
- number: 102
labels_contain: "linear:"
- number: 103
labels_contain: "linear:"
command_history:
- pattern: "gh issue list.*--label.*bug"
- pattern: "gh issue edit.*--add-label.*linear:"
linear:
issues:
- title_contains: "XSS vulnerability"
team: Security
priority: urgent
- title_contains: "REST API returns 500"
team: Platform
priority: high
- title_contains: "Button misalignment"
team: Frontend
priority: medium
- title_contains: "Race condition"
team: Platform
priority: high
command_history:
- pattern: "linear issue create"
slack:
channels:
- name: engineering
messages:
- text_contains: "triage"
- text_contains: "XSS"
- text_contains: "REST API"
command_history:
- pattern: "slack message send.*--channel.*engineering"
scoring:
outcome: 0.6
efficiency: 0.2
recovery: 0.2
max_turns: 18
optimal_commands: 12
timeout_seconds: 180
|