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
pub mod cli;
pub mod cloud_client;
#[cfg(feature = "cloud-server")]
pub mod cloud_server;
pub mod cloud_sync;
pub mod compound_lexer;
pub mod config_io;
pub mod core;
pub mod dashboard;
pub mod doctor;
pub mod engine;
pub mod heatmap;
pub mod hook_handlers;
pub mod hooks;
#[cfg(feature = "http-server")]
pub mod http_server;
pub mod instructions;
pub mod marked_block;
pub mod mcp_stdio;
#[cfg(feature = "http-server")]
pub mod proxy;
pub mod proxy_autostart;
pub mod proxy_setup;
pub mod report;
pub mod rewrite_registry;
pub mod rules_inject;
pub mod server;
pub mod setup;
pub mod shell;
pub mod shell_hook;
pub mod status;
pub mod terminal_ui;
pub mod token_report;
pub mod tool_defs;
pub mod tools;
pub mod tui;
pub mod uninstall;