brainwires-autonomy 0.7.0

Autonomous agent operations — self-improvement, Git workflows, and human-out-of-loop execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Cron-based scheduled autonomy — recurring autonomous tasks.
//!
//! Provides a scheduler that runs tasks on cron expressions, integrating
//! with safety mechanisms and the workflow trigger system.

pub mod cron_trigger;
pub mod scheduler;
pub mod task_schedule;

pub use cron_trigger::CronTrigger;
pub use scheduler::AutonomyScheduler;
pub use task_schedule::{FailurePolicy, ScheduledTask, ScheduledTaskType};