1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! # brainwires-autonomy
//!
//! Autonomous agent operations — self-improvement, Git workflows, and
//! human-out-of-loop execution for the Brainwires Agent Framework.
//!
//! ## Feature flags
//!
//! | Feature | Description |
//! |---------|-------------|
//! | `self-improve` | Self-improvement controller and strategies |
//! | `eval-driven` | Eval-driven feedback loop (requires `brainwires-eval`) |
//! | `supervisor` | Agent supervisor with health monitoring |
//! | `attention` | Attention mechanism with RAG integration |
//! | `parallel` | Parallel coordinator with optional MDAP |
//! | `training` | Autonomous training loop |
//! | `git-workflow` | Automated Git workflow pipeline |
//! | `webhook` | Webhook server for Git forge events |
//! | `full` | All features enabled |
/// GPIO hardware control — re-exported from `brainwires-hardware`.
pub use gpio;
pub use AutonomyConfig;
pub use AutonomyError;
pub use ;
pub use ;