Daily Summaries
OMD Cleo provides three daily summary workflows for mobile workers and planners.
Start of Day Summary
The sod_summary workflow delivers a briefing for the upcoming workday to a mobile worker.
Workflow ID
sod_summary
Parameters
In addition to the common workflow parameters:
| Parameter | Type | Description |
|---|---|---|
workflow_data.resource_id |
string | OMD resource external ID (e.g. DE-NSS-DE2-1606) |
workflow_data.date_from |
string | Target date in YYYY-MM-DD format |
workflow_data.date_to |
string | Target date (same as date_from for a single day) |
Example
{
"user_ids": ["@worker:optimizemyday.ai"],
"workflow_id": "sod_summary",
"workflow_data": {
"resource_id": "DE-NSS-DE2-1606",
"date_from": "2025-07-28",
"date_to": "2025-07-28"
},
"config_id": "16169276",
"instance": "www",
"channel": "matrix",
"language": "en",
"new_room": true
}
What the agent does
- Fetches the worker's trips and tasks for the specified day from OMD Go.
- Resolves customer names, addresses, and any special instructions.
- Generates a concise day briefing in the specified language.
- Delivers the message to the user's channel.
End of Day Summary
The eod_summary workflow delivers a wrap-up for the completed workday, including any notes recorded during the day.
Workflow ID
eod_summary
Parameters
Same as sod_summary — resource_id, date_from, date_to.
Example
{
"user_ids": ["@worker:optimizemyday.ai"],
"workflow_id": "eod_summary",
"workflow_data": {
"resource_id": "DE-NSS-DE2-1606",
"date_from": "2025-07-22",
"date_to": "2025-07-22"
},
"config_id": "16169276",
"instance": "www",
"channel": "matrix",
"language": "en",
"new_room": true
}
Territory Summary
The territory_summary workflow delivers a planner-facing summary of all trips completed in a territory on a given day, including worker notes.
Workflow ID
territory_summary
Parameters
In addition to the common workflow parameters:
| Parameter | Type | Description |
|---|---|---|
workflow_data.territory_internal_id |
string | OMD internal territory ID (e.g. 16185788) |
workflow_data.date_from |
string | Target date in YYYY-MM-DD format |
workflow_data.date_to |
string | Target date (same as date_from for a single day) |
Example
{
"user_ids": ["@planner:optimizemyday.ai"],
"workflow_id": "territory_summary",
"workflow_data": {
"territory_internal_id": "16185788",
"date_from": "2025-07-22",
"date_to": "2025-07-22"
},
"config_id": "16169276",
"instance": "www",
"channel": "matrix",
"language": "en",
"new_room": true
}
What the agent does
- Fetches all trips in the territory for the specified date from OMD Go.
- Retrieves task completion notes and status updates.
- Generates a structured planner digest in the specified language.
- Delivers the summary to the planner's channel.