car-scheduler
Task scheduling and background execution for the Common Agent Runtime.
What it does
Manages persistent task definitions and executes them based on triggers: once, interval, cron, file watch, or manual. Tasks are persisted to disk and can be spawned as background agent runs with cancellation support.
Usage
use ;
let task = new
.with_trigger
.with_system_prompt;
let handle = spawn_task;
handle.cancel; // cancel later
Part of CAR -- see the main repo for full documentation.