- Introduced a new hive-mind architecture that allows the Core Intelligence to issue directives to anonymous processing nodes. - Each node executes its directive and merges output into a collective state, visible to all nodes in real-time. - Added support for dynamic cognitive cycles, enabling flexible task management. - Implemented documentation generation for hive-mind runs, ensuring a durable record of decisions and actions. - Refactored existing company pipeline tools to align with the new hive-mind structure, replacing division-specific prompts with a more generalized approach. - Updated workflow rendering to accommodate hive-mind nodes and their system-assigned designations. - Enhanced error handling and validation for cognitive cycle plans.
8 lines
194 B
Rust
8 lines
194 B
Rust
//! Workflow orchestration: a script interpreter that runs pipeline/parallel
|
|
//! primitives across multiple subagent instances.
|
|
|
|
pub mod hive_mind;
|
|
pub mod docs;
|
|
pub mod engine;
|
|
pub mod script;
|