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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
pub mod ai;
pub mod check_deps;
pub mod clean;
pub mod commit;
pub mod config;
pub mod convert;
pub mod doctor;
pub mod generate;
pub mod helpers;
pub mod init;
pub mod install;
pub mod list;
pub mod log;
pub mod mermaid;
pub mod migrate;
pub mod next;
pub mod next_batch;
pub mod set_status;
pub mod show;
pub mod stats;
pub mod tags;
pub mod view;
pub mod warmup;
pub mod watch;
pub mod waves;
// Task assignment commands
pub mod assign;
pub mod whois;
// Parallel execution
pub mod spawn;
// Single agent execution
pub mod run;
// Headless session resumption
pub mod attach;
// Task restart (reset + spawn)
pub mod restart;
// Swarm mode (wave-based parallel execution with backpressure)
pub mod swarm;
// Salvo worktree management for parallel tag execution
pub mod salvo;
// Ralph mode (sequential iteration with fresh context)
pub mod ralph;
// Test and fix loop
pub mod task_selection;
pub mod test;
// JSON RPC IPC server for subagents
pub mod serve;
// Claude Tasks sync (internal)
pub mod sync_from_claude;
// Attractor pipeline commands
pub mod attractor;
// Direct API agent execution
#[cfg(feature = "direct-api")]
pub mod agent_exec;
// Heavy multi-agent reasoning mode
#[cfg(feature = "direct-api")]
pub mod heavy;
// Weave b-thread coordination
pub mod weave;