scud/commands/
mod.rs

1pub mod ai;
2pub mod check_deps;
3pub mod clean;
4pub mod commit;
5pub mod config;
6pub mod convert;
7pub mod doctor;
8pub mod generate;
9pub mod helpers;
10pub mod init;
11pub mod install;
12pub mod list;
13pub mod log;
14pub mod mermaid;
15pub mod migrate;
16pub mod next;
17pub mod next_batch;
18pub mod set_status;
19pub mod show;
20pub mod stats;
21pub mod tags;
22pub mod view;
23pub mod warmup;
24pub mod waves;
25
26// Task assignment commands
27pub mod assign;
28pub mod whois;
29
30// Parallel execution
31pub mod spawn;
32
33// Single agent execution
34pub mod run;
35
36// Task restart (reset + spawn)
37pub mod restart;
38
39// Swarm mode (wave-based parallel execution with backpressure)
40pub mod swarm;
41
42// Ralph mode (sequential iteration with fresh context)
43pub mod ralph;
44
45// Test and fix loop
46pub mod test;