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
75
76
77
78
79
//! Commands — CLI Subcommand Aggregator
//!
//! Declares every subcommand implementation module for the `axonml` CLI.
//! Always-on modules cover project lifecycle (`new`, `init`, `scaffold`),
//! training and evaluation (`train`, `resume`, `eval`, `predict`), model
//! tooling (`convert`, `export`, `inspect`, `report`, `quant`, `load`,
//! `rename`, `zip`, `upload`), data/compute (`data`, `analyze`, `bench`,
//! `gpu`), discovery (`hub`, `kaggle`, `dataset`), and UI
//! (`dashboard`, `tui`). Feature-gated: `wandb` + `wandb_client` under
//! `wandb`, `serve` under `serve`, and `sync` under `server-sync`. The
//! crate-visible `utils` module holds shared helpers for the command
//! implementations.
//!
//! # File
//! `crates/axonml-cli/src/commands/mod.rs`
//!
//! # Author
//! Andrew Jewell Sr. — AutomataNexus LLC
//! ORCID: 0009-0005-2158-7060
//!
//! # Updated
//! April 16, 2026 11:15 PM EST
//!
//! # Disclaimer
//! Use at own risk. This software is provided "as is", without warranty of any
//! kind, express or implied. The author and AutomataNexus shall not be held
//! liable for any damages arising from the use of this software.
// =============================================================================
// Sub-Modules
// =============================================================================
// -----------------------------------------------------------------------------
// Feature-Gated Modules
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
// Internal Utilities
// -----------------------------------------------------------------------------
// Re-export common utilities for commands
pub