-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscenario.json
More file actions
56 lines (52 loc) · 1.42 KB
/
scenario.json
File metadata and controls
56 lines (52 loc) · 1.42 KB
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
{
"scenario_id": "approval-workflow.demo.v1",
"title": "Approval workflow without workflow engine",
"description": "Purchase request processed by procurement service, then manager approval via CLI. No Temporal, no Airflow.",
"agents": [
{
"role": "procurement",
"address": "procurement-service-demo",
"display_name": "Procurement Service",
"delivery_mode": "stream",
"create_if_missing": true
}
],
"humans": [
{
"role": "manager",
"display_name": "Purchasing Manager"
}
],
"workflow": {
"steps": [
{
"step_id": "process_request",
"tool_id": "tool.agent.task.v1",
"assigned_to": "procurement",
"step_deadline_seconds": 60
},
{
"step_id": "manager_approval",
"tool_id": "tool.approval.human_signoff",
"assigned_to": "manager",
"requires_approval": true,
"step_deadline_seconds": 3600,
"human_task": {
"title": "Purchase approval - office supplies $2,450",
"description": "Review purchase request and approve or reject."
}
}
]
},
"intent": {
"type": "intent.purchase.approval.v1",
"payload": {
"request_id": "PO-2026-001",
"department": "Engineering",
"items": "Office supplies, monitors",
"amount": 2450.00,
"requested_by": "jane.doe@company.com"
},
"max_delivery_attempts": 3
}
}