Datasets:
File size: 1,394 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-007
title: "Search for Slack messages containing a keyword"
difficulty: easy
category: communication
description: |
Search the Slack workspace for all messages containing the keyword "outage"
from the last 7 days. Display the channel, sender, timestamp, and message text.
tools_provided:
- slack
initial_state:
slack:
channels:
- id: C005
name: incidents
messages:
- user: ops-bot
text: "ALERT: Database outage detected in us-east-1"
ts: "2026-03-10T14:30:00Z"
- user: alice
text: "Investigating the outage — looks like connection pool exhaustion"
ts: "2026-03-10T14:35:00Z"
- user: bob
text: "Restarting the affected pods now"
ts: "2026-03-10T14:40:00Z"
- id: C002
name: engineering
messages:
- user: carol
text: "FYI the outage yesterday was caused by a bad migration"
ts: "2026-03-11T09:00:00Z"
- user: dave
text: "PR #234 is ready for review"
ts: "2026-03-11T10:00:00Z"
expected_state:
slack:
command_history:
- pattern: "slack message search.*outage"
output_contains:
- "outage"
- "incidents"
- "engineering"
scoring:
outcome: 0.6
efficiency: 0.2
recovery: 0.2
max_turns: 3
optimal_commands: 1
timeout_seconds: 30
|