Skip to content

Schedule Management

The evonic CLI integrates with the scheduler skill for creating, listing, and cancelling scheduled jobs.

Note: Schedule commands are available through the scheduler skill. Install it first with evonic skill add if not already installed.

Trigger TypeDescription
dateOne-shot execution at a specific date/time
intervalRepeating job at fixed intervals (seconds/minutes/hours)
cronCron-like pattern (hour, minute, day_of_week)
Action TypeDescription
agent_messageSend a message to an agent
emit_eventEmit a system event with a payload

Use the scheduler skill tools to create schedules:

Run once at a specific time:

{
"trigger_type": "date",
"trigger_config": {
"run_date": "2026-05-01T09:00:00"
},
"action_type": "agent_message",
"action_config": {
"message": "Daily reminder: check deploy status"
}
}

Run every N minutes/hours:

{
"trigger_type": "interval",
"trigger_config": {
"minutes": 30
},
"action_type": "emit_event",
"action_config": {
"event_name": "health_check"
}
}

Run at specific times (e.g., every weekday at 9 AM):

{
"trigger_type": "cron",
"trigger_config": {
"day_of_week": "mon-fri",
"hour": 9,
"minute": 0
},
"action_type": "agent_message",
"action_config": {
"agent_id": "siwa",
"message": "Morning standup reminder"
}
}