axonml-cli 0.5.0

Command-line interface for the Axonml ML framework
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
//! CLI - Command Line Interface Definitions
//!
//! # File
//! `crates/axonml-cli/src/cli.rs`
//!
//! # Author
//! Andrew Jewell Sr - AutomataNexus
//!
//! # Updated
//! March 8, 2026
//!
//! # 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.

use clap::{Parser, Subcommand};

// =============================================================================
// Main CLI Structure
// =============================================================================

/// Axonml - A high-performance ML framework for Rust
#[derive(Parser, Debug)]
#[command(
    name = "axonml",
    author = "AutomataNexus Development Team",
    version,
    about = "Axonml ML Framework CLI - Train, evaluate, and deploy ML models",
    long_about = "Axonml is a PyTorch-equivalent machine learning framework written in pure Rust.\n\n\
                  Use this CLI to manage projects, train models, evaluate performance, and deploy to production."
)]
pub struct Cli {
    /// Enable verbose output
    #[arg(short, long, global = true)]
    pub verbose: bool,

    /// Suppress all output except errors
    #[arg(short, long, global = true)]
    pub quiet: bool,

    #[command(subcommand)]
    pub command: Commands,
}

// =============================================================================
// Subcommands
// =============================================================================

#[derive(Subcommand, Debug)]
pub enum Commands {
    /// Create a new Axonml project
    New(NewArgs),

    /// Initialize Axonml in an existing directory
    Init(InitArgs),

    /// Train a model from configuration
    Train(TrainArgs),

    /// Resume training from a checkpoint
    Resume(ResumeArgs),

    /// Evaluate model performance
    Eval(EvalArgs),

    /// Make predictions with a trained model
    Predict(PredictArgs),

    /// Convert models between formats
    Convert(ConvertArgs),

    /// Export models for deployment
    Export(ExportArgs),

    /// Inspect model architecture and parameters
    Inspect(InspectArgs),

    /// Generate comprehensive evaluation report
    Report(ReportArgs),

    /// Start an inference server
    #[cfg(feature = "serve")]
    Serve(ServeArgs),

    /// Configure Weights & Biases integration
    #[cfg(feature = "wandb")]
    Wandb(WandbArgs),

    /// Upload a model file to Axonml
    Upload(UploadArgs),

    /// Analyze and configure a dataset for training
    Data(DataArgs),

    /// Generate a Rust training project scaffold
    Scaffold(ScaffoldArgs),

    /// Create and manage model/dataset bundles
    Zip(ZipArgs),

    /// Rename models and datasets
    Rename(RenameArgs),

    /// Quantize models to reduce size and improve inference
    Quant(QuantArgs),

    /// Load models and datasets into workspace
    Load(LoadArgs),

    /// Analyze loaded models and datasets
    Analyze(AnalyzeArgs),

    /// Benchmark models and hardware
    Bench(BenchArgs),

    /// GPU detection and management
    Gpu(GpuArgs),

    /// Launch the terminal user interface
    Tui(TuiArgs),

    /// Kaggle dataset integration
    Kaggle(KaggleArgs),

    /// Pretrained model hub
    Hub(HubArgs),

    /// Dataset management (NexusConnectBridge)
    Dataset(DatasetArgs),

    /// Start the AxonML dashboard and API server
    Start(StartArgs),

    /// Stop running AxonML services
    Stop(StopArgs),

    /// Check status of AxonML services
    Status(StatusArgs),

    /// View logs from AxonML services
    Logs(LogsArgs),

    /// Login to AxonML server (sync with webapp)
    #[cfg(feature = "server-sync")]
    Login(LoginArgs),

    /// Logout from AxonML server
    #[cfg(feature = "server-sync")]
    Logout,

    /// Check sync status with server
    #[cfg(feature = "server-sync")]
    Sync(SyncArgs),
}

// =============================================================================
// Project Commands
// =============================================================================

/// Arguments for the `new` command
#[derive(Parser, Debug)]
pub struct NewArgs {
    /// Name of the project to create
    pub name: String,

    /// Project template to use
    #[arg(short, long, default_value = "default")]
    pub template: String,

    /// Skip git initialization
    #[arg(long)]
    pub no_git: bool,

    /// Directory to create the project in (defaults to current directory)
    #[arg(short, long)]
    pub path: Option<String>,
}

/// Arguments for the `init` command
#[derive(Parser, Debug)]
pub struct InitArgs {
    /// Project name (defaults to directory name)
    #[arg(short, long)]
    pub name: Option<String>,

    /// Skip git initialization
    #[arg(long)]
    pub no_git: bool,

    /// Force initialization even if files exist
    #[arg(short, long)]
    pub force: bool,
}

// =============================================================================
// Training Commands
// =============================================================================

/// Arguments for the `train` command
#[derive(Parser, Debug)]
pub struct TrainArgs {
    /// Path to configuration file (TOML or JSON)
    #[arg(short, long)]
    pub config: Option<String>,

    /// Path to model definition file
    #[arg(short, long)]
    pub model: Option<String>,

    /// Path to training data directory (required)
    #[arg(short, long)]
    pub data: String,

    /// Dataset format (mnist, fashion-mnist, cifar10). Auto-detected if not specified.
    #[arg(long)]
    pub format: Option<String>,

    /// Number of epochs to train
    #[arg(short, long)]
    pub epochs: Option<usize>,

    /// Batch size
    #[arg(short, long)]
    pub batch_size: Option<usize>,

    /// Learning rate
    #[arg(short, long)]
    pub lr: Option<f64>,

    /// Output directory for checkpoints
    #[arg(short, long, default_value = "./output")]
    pub output: String,

    /// Device to train on (cpu, cuda:0, etc.)
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Random seed for reproducibility
    #[arg(long)]
    pub seed: Option<u64>,

    /// Number of workers for data loading
    #[arg(long, default_value = "4")]
    pub workers: usize,
}

/// Arguments for the `resume` command
#[derive(Parser, Debug)]
pub struct ResumeArgs {
    /// Path to checkpoint file
    pub checkpoint: String,

    /// Path to training data directory (required)
    #[arg(short, long)]
    pub data: String,

    /// Dataset format (mnist, fashion-mnist, cifar10). Auto-detected if not specified.
    #[arg(long)]
    pub format: Option<String>,

    /// Additional epochs to train
    #[arg(short, long)]
    pub epochs: Option<usize>,

    /// Override learning rate
    #[arg(short, long)]
    pub lr: Option<f64>,

    /// Batch size for training
    #[arg(short, long, default_value = "32")]
    pub batch_size: usize,

    /// Output directory for new checkpoints
    #[arg(short, long)]
    pub output: Option<String>,
}

// =============================================================================
// Evaluation Commands
// =============================================================================

/// Arguments for the `eval` command
#[derive(Parser, Debug)]
pub struct EvalArgs {
    /// Path to model file
    pub model: String,

    /// Path to evaluation data directory
    pub data: String,

    /// Dataset format (mnist, fashion-mnist, cifar10). Auto-detected if not specified.
    #[arg(long)]
    pub format: Option<String>,

    /// Batch size for evaluation
    #[arg(short, long, default_value = "32")]
    pub batch_size: usize,

    /// Device to evaluate on
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Output file for metrics (JSON)
    #[arg(short, long)]
    pub output: Option<String>,

    /// Metrics to compute (comma-separated)
    #[arg(short, long, default_value = "accuracy,loss")]
    pub metrics: String,
}

/// Arguments for the `predict` command
#[derive(Parser, Debug)]
pub struct PredictArgs {
    /// Path to model file
    pub model: String,

    /// Input data (file path or JSON string)
    pub input: String,

    /// Output file for predictions
    #[arg(short, long)]
    pub output: Option<String>,

    /// Output format (json, csv, text)
    #[arg(short, long, default_value = "json")]
    pub format: String,

    /// Device to run inference on
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Return top-k predictions for classification
    #[arg(short, long)]
    pub top_k: Option<usize>,
}

// =============================================================================
// Model Management Commands
// =============================================================================

/// Arguments for the `convert` command
#[derive(Parser, Debug)]
pub struct ConvertArgs {
    /// Input model file
    pub input: String,

    /// Output model file
    pub output: String,

    /// Input format (auto-detect if not specified)
    #[arg(long)]
    pub from: Option<String>,

    /// Output format (ferrite, onnx, safetensors)
    #[arg(long)]
    pub to: Option<String>,

    /// Optimize model during conversion
    #[arg(long)]
    pub optimize: bool,
}

/// Arguments for the `export` command
#[derive(Parser, Debug)]
pub struct ExportArgs {
    /// Input model file
    pub model: String,

    /// Output directory or file
    pub output: String,

    /// Export format (onnx, torchscript, safetensors)
    #[arg(short, long, default_value = "onnx")]
    pub format: String,

    /// Target platform (cpu, cuda, wasm, arm)
    #[arg(long, default_value = "cpu")]
    pub target: String,

    /// Enable quantization
    #[arg(long)]
    pub quantize: bool,

    /// Quantization precision (int8, fp16)
    #[arg(long, default_value = "fp16")]
    pub precision: String,
}

/// Arguments for the `inspect` command
#[derive(Parser, Debug)]
pub struct InspectArgs {
    /// Path to model file
    pub model: String,

    /// Show detailed layer information
    #[arg(short, long)]
    pub detailed: bool,

    /// Show parameter values (first N per layer)
    #[arg(long)]
    pub show_params: Option<usize>,

    /// Output format (text, json)
    #[arg(short, long, default_value = "text")]
    pub format: String,
}

// =============================================================================
// Report Command
// =============================================================================

/// Arguments for the `report` command
#[derive(Parser, Debug)]
pub struct ReportArgs {
    /// Path to model file
    pub model: String,

    /// Path to evaluation data directory (required)
    #[arg(short, long)]
    pub data: String,

    /// Dataset format (mnist, fashion-mnist, cifar10). Auto-detected if not specified.
    #[arg(long)]
    pub dataset_format: Option<String>,

    /// Batch size for evaluation
    #[arg(short, long, default_value = "32")]
    pub batch_size: usize,

    /// Device to evaluate on
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Output directory for report files
    #[arg(short, long)]
    pub output: Option<String>,

    /// Output format (html, json, text, all)
    #[arg(short, long, default_value = "html")]
    pub format: String,

    /// Include confusion matrix in report
    #[arg(long, default_value = "true")]
    pub confusion_matrix: bool,

    /// Include loss curves in report
    #[arg(long, default_value = "true")]
    pub loss_curves: bool,

    /// Number of classes (auto-detected if not specified)
    #[arg(long)]
    pub num_classes: Option<usize>,

    /// Class names (comma-separated)
    #[arg(long)]
    pub class_names: Option<String>,

    /// Include per-class metrics breakdown
    #[arg(long, default_value = "true")]
    pub per_class_metrics: bool,

    /// Training history file (JSON) for loss curves
    #[arg(long)]
    pub history: Option<String>,
}

// =============================================================================
// Deployment Commands
// =============================================================================

/// Arguments for the `serve` command
#[cfg(feature = "serve")]
#[derive(Parser, Debug)]
pub struct ServeArgs {
    /// Path to model file
    pub model: String,

    /// Port to listen on
    #[arg(short, long, default_value = "8080")]
    pub port: u16,

    /// Host to bind to
    #[arg(long, default_value = "127.0.0.1")]
    pub host: String,

    /// Number of worker threads
    #[arg(long, default_value = "4")]
    pub workers: usize,

    /// Enable batching for inference
    #[arg(long)]
    pub batch: bool,

    /// Maximum batch size
    #[arg(long, default_value = "32")]
    pub max_batch_size: usize,

    /// Request timeout in milliseconds
    #[arg(long, default_value = "30000")]
    pub timeout: u64,
}

// =============================================================================
// Weights & Biases Commands
// =============================================================================

/// Arguments for the `wandb` command
#[cfg(feature = "wandb")]
#[derive(Parser, Debug)]
pub struct WandbArgs {
    #[command(subcommand)]
    pub action: WandbSubcommand,
}

/// Subcommands for wandb
#[cfg(feature = "wandb")]
#[derive(Subcommand, Debug)]
pub enum WandbSubcommand {
    /// Log in to Weights & Biases (interactive)
    Login,

    /// Log out from Weights & Biases
    Logout,

    /// Show current W&B configuration status
    Status,

    /// Configure W&B settings
    Config(WandbConfigArgs),

    /// Enable W&B logging for training
    Enable,

    /// Disable W&B logging for training
    Disable,
}

/// Arguments for wandb config subcommand
#[cfg(feature = "wandb")]
#[derive(Parser, Debug)]
pub struct WandbConfigArgs {
    /// W&B API key
    #[arg(long)]
    pub api_key: Option<String>,

    /// W&B entity (username or team name)
    #[arg(short, long)]
    pub entity: Option<String>,

    /// Default project name
    #[arg(short, long)]
    pub project: Option<String>,

    /// W&B base URL (for self-hosted instances)
    #[arg(long)]
    pub base_url: Option<String>,

    /// Log frequency (every N steps)
    #[arg(long)]
    pub log_frequency: Option<usize>,

    /// Log model checkpoints to W&B
    #[arg(long)]
    pub log_checkpoints: Option<bool>,

    /// Log system metrics (GPU, CPU, memory)
    #[arg(long)]
    pub log_system_metrics: Option<bool>,
}

// =============================================================================
// Upload Command
// =============================================================================

/// Arguments for the `upload` command
#[derive(Parser, Debug)]
pub struct UploadArgs {
    /// Path to the model file to upload
    pub path: String,

    /// Model name (defaults to filename)
    #[arg(short, long)]
    pub name: Option<String>,

    /// Model description
    #[arg(short, long)]
    pub description: Option<String>,

    /// Model format (auto-detect if not specified)
    #[arg(short, long)]
    pub format: Option<String>,

    /// Model version tag
    #[arg(long, default_value = "latest")]
    pub version: String,

    /// Destination directory for storing the model
    #[arg(short, long, default_value = "./models")]
    pub output: String,

    /// Validate model structure after upload
    #[arg(long, default_value = "true")]
    pub validate: bool,

    /// Overwrite existing model with same name
    #[arg(long)]
    pub overwrite: bool,

    /// Extract and display model architecture info
    #[arg(long)]
    pub inspect: bool,
}

// =============================================================================
// Data Command
// =============================================================================

/// Arguments for the `data` command
#[derive(Parser, Debug)]
pub struct DataArgs {
    #[command(subcommand)]
    pub action: DataSubcommand,
}

/// Subcommands for data
#[derive(Subcommand, Debug)]
pub enum DataSubcommand {
    /// Upload and analyze a new dataset
    Upload(DataUploadArgs),

    /// Analyze an existing dataset
    Analyze(DataAnalyzeArgs),

    /// List available datasets
    List(DataListArgs),

    /// Generate preprocessing configuration
    Config(DataConfigArgs),

    /// Preview dataset samples
    Preview(DataPreviewArgs),

    /// Validate dataset structure
    Validate(DataValidateArgs),
}

/// Arguments for data upload subcommand
#[derive(Parser, Debug)]
pub struct DataUploadArgs {
    /// Path to dataset file or directory
    pub path: String,

    /// Dataset name
    #[arg(short, long)]
    pub name: Option<String>,

    /// Dataset type (image, tabular, text, audio)
    #[arg(short = 't', long)]
    pub data_type: Option<String>,

    /// Task type (classification, regression, segmentation, etc.)
    #[arg(long)]
    pub task: Option<String>,

    /// Destination directory
    #[arg(short, long, default_value = "./data")]
    pub output: String,

    /// Split ratio for train/val/test (e.g., "0.8,0.1,0.1")
    #[arg(long)]
    pub split: Option<String>,

    /// Automatically analyze after upload
    #[arg(long, default_value = "true")]
    pub analyze: bool,
}

/// Arguments for data analyze subcommand
#[derive(Parser, Debug)]
pub struct DataAnalyzeArgs {
    /// Path to dataset file or directory
    pub path: String,

    /// Dataset type hint (image, tabular, text, audio)
    #[arg(short = 't', long)]
    pub data_type: Option<String>,

    /// Maximum samples to analyze
    #[arg(long, default_value = "1000")]
    pub max_samples: usize,

    /// Output format (text, json)
    #[arg(short, long, default_value = "text")]
    pub format: String,

    /// Save analysis to file
    #[arg(short, long)]
    pub output: Option<String>,

    /// Include detailed statistics
    #[arg(long)]
    pub detailed: bool,

    /// Generate recommended training configuration
    #[arg(long, default_value = "true")]
    pub recommend: bool,
}

/// Arguments for data list subcommand
#[derive(Parser, Debug)]
pub struct DataListArgs {
    /// Directory to search for datasets
    #[arg(short, long, default_value = "./data")]
    pub path: String,

    /// Show detailed information
    #[arg(short, long)]
    pub detailed: bool,
}

/// Arguments for data config subcommand
#[derive(Parser, Debug)]
pub struct DataConfigArgs {
    /// Path to dataset
    pub path: String,

    /// Output config file path
    #[arg(short, long, default_value = "data_config.toml")]
    pub output: String,

    /// Config format (toml, json)
    #[arg(short, long, default_value = "toml")]
    pub format: String,
}

/// Arguments for data preview subcommand
#[derive(Parser, Debug)]
pub struct DataPreviewArgs {
    /// Path to dataset
    pub path: String,

    /// Number of samples to preview
    #[arg(short, long, default_value = "5")]
    pub num_samples: usize,

    /// Random sampling
    #[arg(long)]
    pub random: bool,
}

/// Arguments for data validate subcommand
#[derive(Parser, Debug)]
pub struct DataValidateArgs {
    /// Path to dataset
    pub path: String,

    /// Expected number of classes
    #[arg(long)]
    pub num_classes: Option<usize>,

    /// Expected input shape (e.g., "3,224,224")
    #[arg(long)]
    pub input_shape: Option<String>,

    /// Check for missing values
    #[arg(long, default_value = "true")]
    pub check_missing: bool,

    /// Check for class imbalance
    #[arg(long, default_value = "true")]
    pub check_balance: bool,
}

// =============================================================================
// Scaffold Command
// =============================================================================

/// Arguments for the `scaffold` command
#[derive(Parser, Debug)]
pub struct ScaffoldArgs {
    #[command(subcommand)]
    pub action: ScaffoldSubcommand,
}

/// Subcommands for scaffold
#[derive(Subcommand, Debug)]
pub enum ScaffoldSubcommand {
    /// Generate a new Rust training project
    Generate(ScaffoldGenerateArgs),

    /// List available project templates
    Templates(ScaffoldTemplatesArgs),
}

/// Arguments for scaffold generate subcommand
#[derive(Parser, Debug)]
pub struct ScaffoldGenerateArgs {
    /// Project name
    pub name: String,

    /// Output directory
    #[arg(short, long, default_value = ".")]
    pub output: String,

    /// Path to model file (optional, for fine-tuning)
    #[arg(short, long)]
    pub model: Option<String>,

    /// Path to dataset or data config
    #[arg(short, long)]
    pub data: Option<String>,

    /// Project template (training, evaluation, inference, full)
    #[arg(short, long, default_value = "training")]
    pub template: String,

    /// Task type (classification, regression, generation)
    #[arg(long)]
    pub task: Option<String>,

    /// Model architecture to use
    #[arg(long)]
    pub architecture: Option<String>,

    /// Include W&B integration
    #[arg(long)]
    pub wandb: bool,

    /// Include data augmentation in generated code
    #[arg(long)]
    pub augmentation: bool,

    /// Overwrite existing project directory
    #[arg(long)]
    pub overwrite: bool,
}

/// Arguments for scaffold templates subcommand
#[derive(Parser, Debug)]
pub struct ScaffoldTemplatesArgs {
    /// Show detailed template descriptions
    #[arg(short, long)]
    pub detailed: bool,
}

// =============================================================================
// Zip Command
// =============================================================================

/// Arguments for the `zip` command
#[derive(Parser, Debug)]
pub struct ZipArgs {
    #[command(subcommand)]
    pub action: ZipSubcommand,
}

/// Subcommands for zip
#[derive(Subcommand, Debug)]
pub enum ZipSubcommand {
    /// Create a bundle from model and/or dataset
    Create(ZipCreateArgs),

    /// Extract a bundle
    Extract(ZipExtractArgs),

    /// List contents of a bundle
    List(ZipListArgs),
}

/// Arguments for zip create subcommand
#[derive(Parser, Debug)]
pub struct ZipCreateArgs {
    /// Output bundle file path
    #[arg(short, long)]
    pub output: String,

    /// Path to model file to include
    #[arg(short, long)]
    pub model: Option<String>,

    /// Path to dataset directory to include
    #[arg(short, long)]
    pub data: Option<String>,

    /// Include config files (axonml.toml, etc.)
    #[arg(long)]
    pub include_config: bool,

    /// Overwrite existing bundle file
    #[arg(long)]
    pub overwrite: bool,
}

/// Arguments for zip extract subcommand
#[derive(Parser, Debug)]
pub struct ZipExtractArgs {
    /// Input bundle file path
    pub input: String,

    /// Output directory for extracted files
    #[arg(short, long, default_value = ".")]
    pub output: String,

    /// Print extracted files
    #[arg(short, long)]
    pub verbose: bool,
}

/// Arguments for zip list subcommand
#[derive(Parser, Debug)]
pub struct ZipListArgs {
    /// Input bundle file path
    pub input: String,

    /// Show detailed file information
    #[arg(short, long)]
    pub detailed: bool,
}

// =============================================================================
// Rename Command
// =============================================================================

/// Arguments for the `rename` command
#[derive(Parser, Debug)]
pub struct RenameArgs {
    #[command(subcommand)]
    pub action: RenameSubcommand,
}

/// Subcommands for rename
#[derive(Subcommand, Debug)]
pub enum RenameSubcommand {
    /// Rename a model file
    Model(RenameModelArgs),

    /// Rename a dataset
    Data(RenameDataArgs),
}

/// Arguments for rename model subcommand
#[derive(Parser, Debug)]
pub struct RenameModelArgs {
    /// Path to the model file
    pub path: String,

    /// New name for the model
    pub new_name: String,

    /// Force rename even if destination exists
    #[arg(short, long)]
    pub force: bool,
}

/// Arguments for rename data subcommand
#[derive(Parser, Debug)]
pub struct RenameDataArgs {
    /// Path to the dataset file or directory
    pub path: String,

    /// New name for the dataset
    pub new_name: String,

    /// Force rename even if destination exists
    #[arg(short, long)]
    pub force: bool,
}

// =============================================================================
// Quant Command
// =============================================================================

/// Arguments for the `quant` command
#[derive(Parser, Debug)]
pub struct QuantArgs {
    #[command(subcommand)]
    pub action: QuantSubcommand,
}

/// Subcommands for quant
#[derive(Subcommand, Debug)]
pub enum QuantSubcommand {
    /// Convert model to a quantized format
    Convert(QuantConvertArgs),

    /// Show quantization info about a model
    Info(QuantInfoArgs),

    /// Benchmark different quantization levels
    Benchmark(QuantBenchmarkArgs),

    /// List available quantization types
    List,
}

/// Arguments for quant convert subcommand
#[derive(Parser, Debug)]
pub struct QuantConvertArgs {
    /// Input model file (`PyTorch`, `SafeTensors`, ONNX, Axonml)
    pub input: String,

    /// Target quantization type (`Q4_0`, `Q4_1`, `Q5_0`, `Q5_1`, `Q8_0`, F16, F32)
    #[arg(short, long)]
    pub target: String,

    /// Output file path
    #[arg(short, long)]
    pub output: String,

    /// Source format override (auto-detect if not specified)
    #[arg(long)]
    pub from: Option<String>,

    /// Calibration dataset for better quantization (optional)
    #[arg(long)]
    pub calibration_data: Option<String>,

    /// Number of calibration samples
    #[arg(long, default_value = "100")]
    pub calibration_samples: usize,

    /// Overwrite existing output file
    #[arg(long)]
    pub overwrite: bool,
}

/// Arguments for quant info subcommand
#[derive(Parser, Debug)]
pub struct QuantInfoArgs {
    /// Input model file
    pub input: String,

    /// Show detailed layer-by-layer info
    #[arg(short, long)]
    pub detailed: bool,
}

/// Arguments for quant benchmark subcommand
#[derive(Parser, Debug)]
pub struct QuantBenchmarkArgs {
    /// Input model file
    pub input: String,

    /// Number of iterations for benchmarking
    #[arg(short, long, default_value = "10")]
    pub iterations: usize,

    /// Specific quantization types to benchmark (comma-separated)
    #[arg(short, long)]
    pub types: Option<String>,
}

// =============================================================================
// Load Command
// =============================================================================

/// Arguments for the `load` command
#[derive(Parser, Debug)]
pub struct LoadArgs {
    #[command(subcommand)]
    pub action: LoadSubcommand,
}

/// Subcommands for load
#[derive(Subcommand, Debug)]
pub enum LoadSubcommand {
    /// Load a model into the workspace
    Model(LoadModelArgs),

    /// Load a dataset into the workspace
    Data(LoadDataArgs),

    /// Load both a model and dataset
    Both(LoadBothArgs),

    /// Show current workspace status
    Status,

    /// Clear loaded items from workspace
    Clear,
}

/// Arguments for load model subcommand
#[derive(Parser, Debug)]
pub struct LoadModelArgs {
    /// Path to the model file
    pub path: String,

    /// Model name (defaults to filename)
    #[arg(short, long)]
    pub name: Option<String>,

    /// Model format override (auto-detect if not specified)
    #[arg(short, long)]
    pub format: Option<String>,
}

/// Arguments for load data subcommand
#[derive(Parser, Debug)]
pub struct LoadDataArgs {
    /// Path to the dataset file or directory
    pub path: String,

    /// Dataset name (defaults to directory name)
    #[arg(short, long)]
    pub name: Option<String>,

    /// Dataset type override (auto-detect if not specified)
    #[arg(short = 't', long)]
    pub data_type: Option<String>,
}

/// Arguments for load both subcommand
#[derive(Parser, Debug)]
pub struct LoadBothArgs {
    /// Path to the model file
    #[arg(short, long)]
    pub model: String,

    /// Path to the dataset file or directory
    #[arg(short, long)]
    pub data: String,
}

// =============================================================================
// Analyze Command
// =============================================================================

/// Arguments for the `analyze` command
#[derive(Parser, Debug)]
pub struct AnalyzeArgs {
    #[command(subcommand)]
    pub action: AnalyzeSubcommand,
}

/// Subcommands for analyze
#[derive(Subcommand, Debug)]
pub enum AnalyzeSubcommand {
    /// Analyze the loaded or specified model
    Model(AnalyzeModelArgs),

    /// Analyze the loaded or specified dataset
    Data(AnalyzeDataArgs),

    /// Analyze both model and dataset for compatibility
    Both(AnalyzeBothArgs),

    /// Generate a comprehensive analysis report
    Report(AnalyzeReportArgs),
}

/// Arguments for analyze model subcommand
#[derive(Parser, Debug)]
pub struct AnalyzeModelArgs {
    /// Path to model (uses loaded model if not specified)
    #[arg(short, long)]
    pub path: Option<String>,

    /// Show detailed layer-by-layer analysis
    #[arg(short, long)]
    pub detailed: bool,

    /// Output report file path
    #[arg(short, long)]
    pub output: Option<String>,

    /// Output format (json, text)
    #[arg(short, long, default_value = "text")]
    pub format: String,
}

/// Arguments for analyze data subcommand
#[derive(Parser, Debug)]
pub struct AnalyzeDataArgs {
    /// Path to dataset (uses loaded dataset if not specified)
    #[arg(short, long)]
    pub path: Option<String>,

    /// Show detailed statistics
    #[arg(short, long)]
    pub detailed: bool,

    /// Maximum samples to analyze
    #[arg(long, default_value = "10000")]
    pub max_samples: usize,

    /// Output report file path
    #[arg(short, long)]
    pub output: Option<String>,

    /// Output format (json, text)
    #[arg(short, long, default_value = "text")]
    pub format: String,
}

/// Arguments for analyze both subcommand
#[derive(Parser, Debug)]
pub struct AnalyzeBothArgs {
    /// Output report file path
    #[arg(short, long)]
    pub output: Option<String>,
}

/// Arguments for analyze report subcommand
#[derive(Parser, Debug)]
pub struct AnalyzeReportArgs {
    /// Output file path
    #[arg(short, long, default_value = "analysis_report.html")]
    pub output: String,

    /// Report format (html, json, md, text)
    #[arg(short, long, default_value = "html")]
    pub format: String,

    /// Include visualizations in report
    #[arg(long)]
    pub visualize: bool,
}

// =============================================================================
// Bench Command
// =============================================================================

/// Arguments for the `bench` command
#[derive(Parser, Debug)]
pub struct BenchArgs {
    #[command(subcommand)]
    pub action: BenchSubcommand,
}

/// Subcommands for bench
#[derive(Subcommand, Debug)]
pub enum BenchSubcommand {
    /// Benchmark a model's performance
    Model(BenchModelArgs),

    /// Benchmark inference at different batch sizes
    Inference(BenchInferenceArgs),

    /// Compare multiple models
    Compare(BenchCompareArgs),

    /// Benchmark hardware capabilities
    Hardware(BenchHardwareArgs),
}

/// Arguments for bench model subcommand
#[derive(Parser, Debug)]
pub struct BenchModelArgs {
    /// Input model file
    pub input: String,

    /// Number of benchmark iterations
    #[arg(short, long, default_value = "100")]
    pub iterations: usize,

    /// Number of warmup iterations
    #[arg(short, long, default_value = "10")]
    pub warmup: usize,

    /// Batch size for benchmarking
    #[arg(short, long, default_value = "1")]
    pub batch_size: usize,

    /// Device to benchmark on (cpu, cuda:0, etc.)
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Output file for results (JSON)
    #[arg(short, long)]
    pub output: Option<String>,
}

/// Arguments for bench inference subcommand
#[derive(Parser, Debug)]
pub struct BenchInferenceArgs {
    /// Input model file
    pub model: String,

    /// Batch sizes to test (comma-separated)
    #[arg(short, long, default_value = "1,2,4,8,16,32")]
    pub batch_sizes: String,

    /// Number of iterations per batch size
    #[arg(short, long, default_value = "50")]
    pub iterations: usize,

    /// Number of warmup iterations
    #[arg(short, long, default_value = "5")]
    pub warmup: usize,

    /// Device to benchmark on
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Output file for results (JSON)
    #[arg(short, long)]
    pub output: Option<String>,
}

/// Arguments for bench compare subcommand
#[derive(Parser, Debug)]
pub struct BenchCompareArgs {
    /// Model files to compare (comma-separated)
    pub models: String,

    /// Number of iterations
    #[arg(short, long, default_value = "50")]
    pub iterations: usize,

    /// Batch size for comparison
    #[arg(short, long, default_value = "1")]
    pub batch_size: usize,

    /// Device to benchmark on
    #[arg(long, default_value = "cpu")]
    pub device: String,

    /// Output file for results (JSON)
    #[arg(short, long)]
    pub output: Option<String>,
}

/// Arguments for bench hardware subcommand
#[derive(Parser, Debug)]
pub struct BenchHardwareArgs {
    /// Number of iterations for each test
    #[arg(short, long, default_value = "10")]
    pub iterations: usize,

    /// Output file for results (JSON)
    #[arg(short, long)]
    pub output: Option<String>,
}

// =============================================================================
// GPU Command
// =============================================================================

/// Arguments for the `gpu` command
#[derive(Parser, Debug)]
pub struct GpuArgs {
    #[command(subcommand)]
    pub action: GpuSubcommand,
}

/// Subcommands for gpu
#[derive(Subcommand, Debug)]
pub enum GpuSubcommand {
    /// List available GPU devices
    List,

    /// Show detailed GPU information
    Info,

    /// Select a GPU device for training
    Select(GpuSelectArgs),

    /// Benchmark GPU performance
    Bench(GpuBenchArgs),

    /// Show GPU memory usage
    Memory,

    /// Show current GPU status
    Status,
}

/// Arguments for gpu select subcommand
#[derive(Parser, Debug)]
pub struct GpuSelectArgs {
    /// Device to select (e.g., 0, cuda:0, auto)
    pub device: String,

    /// Save selection persistently
    #[arg(short, long)]
    pub persistent: bool,
}

/// Arguments for gpu bench subcommand
#[derive(Parser, Debug)]
pub struct GpuBenchArgs {
    /// Specific device to benchmark
    #[arg(short, long)]
    pub device: Option<String>,

    /// Benchmark all available GPUs
    #[arg(short, long)]
    pub all: bool,

    /// Number of iterations
    #[arg(short, long, default_value = "10")]
    pub iterations: usize,
}

// =============================================================================
// TUI Command
// =============================================================================

/// Arguments for the `tui` command
#[derive(Parser, Debug)]
pub struct TuiArgs {
    /// Path to a model file to load on startup
    #[arg(short, long)]
    pub model: Option<String>,

    /// Path to a dataset directory to load on startup
    #[arg(short, long)]
    pub data: Option<String>,
}

// =============================================================================
// Kaggle Command
// =============================================================================

/// Arguments for the `kaggle` command
#[derive(Parser, Debug)]
pub struct KaggleArgs {
    #[command(subcommand)]
    pub action: KaggleSubcommand,
}

/// Subcommands for kaggle
#[derive(Subcommand, Debug)]
pub enum KaggleSubcommand {
    /// Configure Kaggle API credentials
    Login(KaggleLoginArgs),

    /// Check Kaggle configuration status
    Status,

    /// Search for datasets on Kaggle
    Search(KaggleSearchArgs),

    /// Download a dataset from Kaggle
    Download(KaggleDownloadArgs),

    /// List downloaded Kaggle datasets
    List,
}

/// Arguments for kaggle login subcommand
#[derive(Parser, Debug)]
pub struct KaggleLoginArgs {
    /// Kaggle username
    #[arg(short, long)]
    pub username: String,

    /// Kaggle API key
    #[arg(short, long)]
    pub key: String,
}

/// Arguments for kaggle search subcommand
#[derive(Parser, Debug)]
pub struct KaggleSearchArgs {
    /// Search query
    pub query: String,

    /// Maximum number of results
    #[arg(short, long, default_value = "10")]
    pub limit: usize,
}

/// Arguments for kaggle download subcommand
#[derive(Parser, Debug)]
pub struct KaggleDownloadArgs {
    /// Dataset reference (e.g., "username/dataset-name")
    pub dataset: String,

    /// Output directory
    #[arg(short, long)]
    pub output: Option<String>,
}

// =============================================================================
// Hub Command
// =============================================================================

/// Arguments for the `hub` command
#[derive(Parser, Debug)]
pub struct HubArgs {
    #[command(subcommand)]
    pub action: HubSubcommand,
}

/// Subcommands for hub
#[derive(Subcommand, Debug)]
pub enum HubSubcommand {
    /// List available pretrained models
    List,

    /// Show information about a specific model
    Info(HubInfoArgs),

    /// Download pretrained weights
    Download(HubDownloadArgs),

    /// List cached models
    Cached,

    /// Clear cached models
    Clear(HubClearArgs),
}

/// Arguments for hub info subcommand
#[derive(Parser, Debug)]
pub struct HubInfoArgs {
    /// Model name (e.g., "resnet18", "vgg16")
    pub model: String,
}

/// Arguments for hub download subcommand
#[derive(Parser, Debug)]
pub struct HubDownloadArgs {
    /// Model name to download
    pub model: String,

    /// Force re-download even if cached
    #[arg(short, long)]
    pub force: bool,
}

/// Arguments for hub clear subcommand
#[derive(Parser, Debug)]
pub struct HubClearArgs {
    /// Specific model to clear (clears all if not specified)
    pub model: Option<String>,
}

// =============================================================================
// Dataset Command
// =============================================================================

/// Arguments for the `dataset` command
#[derive(Parser, Debug)]
pub struct DatasetArgs {
    #[command(subcommand)]
    pub action: DatasetSubcommand,
}

/// Subcommands for dataset
#[derive(Subcommand, Debug)]
pub enum DatasetSubcommand {
    /// List available datasets
    List(DatasetListArgs),

    /// Show information about a specific dataset
    Info(DatasetInfoArgs),

    /// Search for datasets
    Search(DatasetSearchArgs),

    /// Download a dataset
    Download(DatasetDownloadArgs),

    /// List available data sources
    Sources,
}

/// Arguments for dataset list subcommand
#[derive(Parser, Debug)]
pub struct DatasetListArgs {
    /// Filter by source (builtin, kaggle, uci, etc.)
    #[arg(short, long)]
    pub source: Option<String>,
}

/// Arguments for dataset info subcommand
#[derive(Parser, Debug)]
pub struct DatasetInfoArgs {
    /// Dataset ID (e.g., "mnist", "cifar-10")
    pub dataset: String,
}

/// Arguments for dataset search subcommand
#[derive(Parser, Debug)]
pub struct DatasetSearchArgs {
    /// Search query
    pub query: String,

    /// Filter by source (kaggle, uci, data.gov, all)
    #[arg(short, long)]
    pub source: Option<String>,

    /// Maximum number of results
    #[arg(short, long, default_value = "20")]
    pub limit: usize,
}

/// Arguments for dataset download subcommand
#[derive(Parser, Debug)]
pub struct DatasetDownloadArgs {
    /// Dataset ID to download
    pub dataset: String,

    /// Output directory
    #[arg(short, long)]
    pub output: Option<String>,
}

// =============================================================================
// Dashboard/Server Commands
// =============================================================================

/// Arguments for the `start` command
#[derive(Parser, Debug)]
pub struct StartArgs {
    /// Start only the API server (backend)
    #[arg(long, conflicts_with = "dashboard")]
    pub server: bool,

    /// Start only the dashboard (frontend)
    #[arg(long, conflicts_with = "server")]
    pub dashboard: bool,

    /// API server port
    #[arg(long, default_value = "3000")]
    pub port: u16,

    /// Dashboard port
    #[arg(long, default_value = "8080")]
    pub dashboard_port: u16,

    /// Host to bind to
    #[arg(long, default_value = "127.0.0.1")]
    pub host: String,

    /// Run in foreground (don't daemonize)
    #[arg(short, long)]
    pub foreground: bool,

    /// Path to config file
    #[arg(short, long)]
    pub config: Option<String>,
}

/// Arguments for the `stop` command
#[derive(Parser, Debug)]
pub struct StopArgs {
    /// Stop only the API server
    #[arg(long, conflicts_with = "dashboard")]
    pub server: bool,

    /// Stop only the dashboard
    #[arg(long, conflicts_with = "server")]
    pub dashboard: bool,

    /// Force stop (SIGKILL instead of SIGTERM)
    #[arg(short, long)]
    pub force: bool,
}

/// Arguments for the `status` command
#[derive(Parser, Debug)]
pub struct StatusArgs {
    /// Show detailed status information
    #[arg(short, long)]
    pub detailed: bool,

    /// Output format (text, json)
    #[arg(short, long, default_value = "text")]
    pub format: String,
}

/// Arguments for the `logs` command
#[derive(Parser, Debug)]
pub struct LogsArgs {
    /// Show only server logs
    #[arg(long, conflicts_with = "dashboard")]
    pub server: bool,

    /// Show only dashboard logs
    #[arg(long, conflicts_with = "server")]
    pub dashboard: bool,

    /// Number of lines to show
    #[arg(short, long, default_value = "50")]
    pub lines: usize,

    /// Follow logs in real-time
    #[arg(short, long)]
    pub follow: bool,

    /// Filter logs by level (error, warn, info, debug, trace)
    #[arg(long)]
    pub level: Option<String>,
}

// =============================================================================
// Server Sync Commands
// =============================================================================

/// Arguments for the `login` command
#[cfg(feature = "server-sync")]
#[derive(Parser, Debug)]
pub struct LoginArgs {
    /// Username or email
    #[arg(short, long)]
    pub username: Option<String>,

    /// Password (will prompt if not provided)
    #[arg(short, long)]
    pub password: Option<String>,

    /// Server URL (defaults to http://localhost:3021)
    #[arg(short, long)]
    pub server: Option<String>,
}

/// Arguments for the `sync` command
#[cfg(feature = "server-sync")]
#[derive(Parser, Debug)]
pub struct SyncArgs {
    /// Check sync status only
    #[arg(long)]
    pub status: bool,

    /// Force re-sync all data
    #[arg(long)]
    pub force: bool,
}