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
45
46
47
#![allow(unused)]
#![recursion_limit = "512"]
pub mod audit_handlers;
pub mod auto_ingest;
pub mod cli;
pub mod daemon_handlers;
pub mod help_guidance;
pub mod protocol;
pub mod server;
pub mod session;
pub mod tools;
// Perspective MCP — stateful navigation layer (12-PERSPECTIVE-SYNTHESIS)
pub mod boot_memory_handlers;
pub mod engine_ops;
pub mod instance_registry;
pub mod layer_handlers;
pub mod light_author_handlers;
pub mod lock_handlers;
pub mod mission_handlers;
pub mod persist_handlers;
pub mod perspective;
pub mod perspective_handlers;
pub mod surgical_handlers;
// v0.4.0: new tool handlers + personality
pub mod personality;
pub mod report_handlers;
pub mod result_shaping;
pub mod scope;
pub mod search_handlers;
pub mod universal_docs;
pub mod xray_handlers;
// HTTP server + types (feature-gated behind "serve")
#[cfg(feature = "serve")]
pub mod http_server;
#[cfg(feature = "serve")]
pub mod http_types;
// Streamable-HTTP MCP transport (POST /mcp) — Wave 4, Slice 1.
#[cfg(feature = "serve")]
pub mod mcp_http;
// stdio↔HTTP bridge for `--attach` — Wave 4, Slice 3. Lets multiple stdio MCP
// hosts share one running `--serve` owner's live graph.
#[cfg(feature = "serve")]
pub mod attach_client;