collet 0.1.0

Relentless agentic coding orchestrator with zero-drop agent loops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Collaboration modes: parallel multi-agent coordination.
//!
//! Tiered: None < Fork < Hive < Flock
//!
//! When `collaboration.mode` is set to fork/hive/flock, the coordinator splits
//! tasks across multiple independent agent loops that share knowledge via
//! `SharedKnowledge` and merge results with conflict detection.

pub mod config;
pub mod conflict;
pub mod coordinator;
pub mod knowledge;