//! Scheduled agent execution.
//!
//! Enables cron-based and webhook-triggered agent runs. Schedules are
//! persisted as JSON in `~/.config/agent-code/schedules/` and executed
//! by a background daemon loop.
//!
//! # Usage
//!
//! ```bash
//! agent schedule add "0 9 * * *" --prompt "run tests" --name daily-tests
//! agent schedule list
//! agent schedule remove daily-tests
//! agent schedule run daily-tests
//! agent daemon # start the scheduler loop
//! ```
pub use CronExpr;
pub use ;
pub use ;