Demo 2 generator
One click generates a believable pack of tools, agents, and scenarios, then stores it indata/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

Scenario browser
Pick one AI-generated scenario, then inspect the agent and the tool payloads created for the demo.

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.

email

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

crm_create_dealscheduling_book_demoemail_send

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.

scheduling_book_demo

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.

email_send

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"
  ]
}
Scenario cards, pack summaries, and business-case descriptions are generated by AI and stored with each saved pack.