2026-07-12 11:28:39 +07:00
|
|
|
//! Top-level application module: harness, modes, runtime loop, state,
|
2026-07-12 13:40:58 +07:00
|
|
|
//! workflows, subagents, review, background bash, MCP integration, and
|
|
|
|
|
//! native LSP client.
|
2026-07-11 13:16:10 +07:00
|
|
|
pub mod harness;
|
|
|
|
|
pub mod mode;
|
|
|
|
|
pub mod runtime;
|
|
|
|
|
pub mod state;
|
|
|
|
|
pub mod workflow;
|
|
|
|
|
pub mod subagent;
|
|
|
|
|
pub mod review;
|
|
|
|
|
pub mod bgbash;
|
|
|
|
|
pub mod mcp;
|
2026-07-12 13:40:58 +07:00
|
|
|
pub mod lsp;
|