Agent Manager supports scheduling recurring or one-time agent runs without any external job orchestration. Scheduled runs execute as background jobs and produce the sameDocumentation Index
Fetch the complete documentation index at: https://operativusai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
RunResponse as manually triggered runs, so they work with all the same monitoring and audit tooling.
Common use cases
- Daily report generation (summarize overnight activity, generate executive briefings)
- Periodic data analysis (run analytics agents on a nightly or weekly cadence)
- Automated monitoring alerts (poll data sources and notify on anomalies)
- Batch knowledge base updates (re-ingest and refresh vector content on a schedule)
Creating a schedule
Define the schedule payload
Build a
ScheduleDTO with the agent to run, the message to send it, and the recurrence expression:Cron expression reference
Schedules use standard five-field cron syntax:| Expression | Meaning |
|---|---|
0 8 * * * | Every day at 8:00 AM |
0 * * * * | Every hour on the hour |
30 9 * * 1 | Every Monday at 9:30 AM |
0 0 1 * * | First day of every month at midnight |
*/15 * * * * | Every 15 minutes |
Managing schedules
List all schedules (paginated):204 No Content on success.
Triggering a schedule manually
To execute a schedule immediately without waiting for its next cron time:Viewing run history
To see the execution history for a specific schedule:Scheduled runs execute as background jobs. If a scheduled run fails, the job status will show
FAILED and the failure reason will be captured in the run record. The schedule itself continues to execute on its defined cadence regardless of individual run outcomes.