huskies: merge 858

This commit is contained in:
dave
2026-04-29 10:41:32 +00:00
parent be5db846cc
commit 11d111360d
79 changed files with 265 additions and 0 deletions
+10
View File
@@ -9,22 +9,32 @@ mod agent_mode;
mod agents;
mod chat;
mod config;
/// CRDT snapshot — serialisation and restore of the full pipeline CRDT state.
pub mod crdt_snapshot;
/// CRDT state — in-memory pipeline state machine backed by a distributed CRDT.
pub mod crdt_state;
/// CRDT sync — WebSocket-based peer synchronisation for distributed nodes.
pub mod crdt_sync;
/// CRDT wire format — on-wire message types for the crdt-sync protocol.
pub mod crdt_wire;
mod db;
/// Gateway mode — multi-project reverse proxy that fronts multiple project containers.
pub mod gateway;
mod gateway_relay;
mod http;
mod io;
mod llm;
/// Log buffer — in-memory ring buffer for recent server-side log lines.
pub mod log_buffer;
/// Mesh — peer discovery and multi-hop CRDT replication over WebSocket.
pub mod mesh;
/// Node identity — Ed25519 keypair generation and stable node ID management.
pub mod node_identity;
pub(crate) mod pipeline_state;
/// Rebuild — process restart and shutdown coordination.
pub mod rebuild;
mod service;
/// Services — shared service bundle injected into HTTP handlers and bot tasks.
pub mod services;
mod startup;
mod state;