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
//! Autodream memory consolidation — offline summarisation and fact extraction.
//!
//! The dream system runs periodically (via cron or on-demand) to compress older
//! conversation messages into summaries and durable facts, reducing token
//! pressure while preserving important knowledge.

pub mod consolidator;
pub mod fact_extractor;
pub mod metrics;
pub mod policy;
pub mod summarizer;
pub mod task;