data/demo2/scenarios. The pack summary and scenario business-case text are AI-generated.Action
Generate a fresh demo world with four scenarios ready to inspect.
Packs
1
Selected agent
Sales Operations Assistant
Active tools
2
Recent packs
Active pack
SMB Operations Automation Demo Pack
A simple, credible set of tools, agents, and scenarios showing validations across sales, billing, inventory, and marketing workflows for a mid-market company.
Tools
7
Agents
4
Scenarios
4
Scenario selector
These four cards are generated by AI inside the active pack.
Agent
Sales Operations Assistant
Triage inbound sales requests, schedule demos, and create deals.
Scenario description
A prospect emails asking for a product demo next week.
Trigger payload
{
"from": "jane.prospect@example.com",
"subject": "Requesting a demo next week",
"body": "Hi team,\nWe’re evaluating options and would like a 30-minute demo next Thursday afternoon. Thanks!\n- Jane"
}Allowed tools
System prompt
You assist Sales by triaging inbound requests, scheduling demos, and creating CRM deals. Keep entries concise and accurate.
Tools
Book Product Demo
Schedule a customer demo on the calendar.
customerEmail
jane.prospect@example.com
dateTime
2026-03-20
notes
Inbound email request: 30-minute demo next Thursday afternoon; hold an afternoon slot and assign to AE on duty.
Input schema
{
"type": "object",
"properties": {
"customerEmail": {
"type": "string",
"format": "email"
},
"dateTime": {
"type": "string",
"format": "date"
},
"notes": {
"type": "string"
}
},
"required": [
"customerEmail",
"dateTime"
]
}Send Email
Send a plain email to a recipient.
to
jane.prospect@example.com
subject
Demo request received
body
Hi Jane, Thanks for reaching out. We’re holding a 30-minute demo slot for you next Thursday. We’ll send a calendar invite once it’s confirmed. Best, Sales Team
Input schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"format": "email"
},
"subject": {
"type": "string"
},
"body": {
"type": "string"
}
},
"required": [
"to",
"subject",
"body"
]
}