void-cli 0.0.3

CLI for void — anonymous encrypted source control
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
use clap::{Parser, Subcommand};
use std::path::PathBuf;

mod commands;
mod context;
mod daemon;
mod ipfs_utils;
mod keyring;
mod observer;
mod output;
mod registry;
mod repo_init;

use output::CliOptions;

#[derive(Parser)]
#[command(name = "void", version, about = "Anonymous encrypted source control")]
pub struct Cli {
    /// Output JSON (auto-detected if not TTY)
    #[arg(long, global = true)]
    json: bool,

    /// Force human-readable output even when piped
    #[arg(long, global = true)]
    human: bool,

    /// Suppress all non-JSON output
    #[arg(short, long, global = true)]
    quiet: bool,

    /// Show debug information
    #[arg(long, global = true)]
    debug: bool,

    /// Working directory
    #[arg(long, global = true, default_value = ".")]
    cwd: PathBuf,

    /// Verbose output
    #[arg(short, long, global = true)]
    verbose: bool,

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

#[derive(Subcommand)]
enum Commands {
    /// Initialize a new void repository
    Init,

    /// Show working tree status
    Status {
        /// Paths to check status for (empty means all)
        #[arg()]
        paths: Vec<String>,
    },

    /// Stage files for commit
    Add {
        /// Paths to stage
        paths: Vec<String>,
    },

    /// Unstage files
    Reset {
        /// Paths to unstage
        paths: Vec<String>,
    },

    /// Restore files from a commit to the working tree
    #[command(alias = "checkout")]
    Restore {
        /// Paths to restore (empty means all)
        #[arg()]
        paths: Vec<String>,

        /// Commit to restore from (default: HEAD)
        #[arg(long)]
        source: Option<String>,

        /// Unstage files only (don't touch working tree)
        #[arg(long)]
        staged: bool,

        /// Overwrite local changes
        #[arg(short, long)]
        force: bool,
    },

    /// Create a new commit
    Commit {
        /// Commit message
        #[arg(short, long, default_value = "commit")]
        message: String,

        /// Sign commit with configured identity (default when identity exists)
        #[arg(short = 'S', long)]
        sign: bool,

        /// Do not sign commit (overrides auto-signing)
        #[arg(long = "no-sign")]
        no_sign: bool,

        /// Target compressed shard size (bytes)
        #[arg(long)]
        target_shard_size: Option<u64>,

        /// Maximum compressed shard size before splitting (bytes)
        #[arg(long)]
        max_shard_size: Option<u64>,

        /// Mmap file read threshold (bytes)
        #[arg(long)]
        mmap_threshold: Option<u64>,

        /// Shard padding strategy: none, power2, buckets, or fixed bytes
        #[arg(long)]
        padding: Option<String>,

        /// Allow commits that delete >50% of files
        #[arg(long)]
        allow_data_loss: bool,
    },

    /// Show commit history
    Log {
        /// Number of commits to show
        #[arg(short, long, default_value = "10")]
        number: usize,

        /// Skip signature verification
        #[arg(long = "no-verify", default_value = "false")]
        no_verify: bool,
    },

    /// Show changes between commits or working tree
    Diff {
        /// Commits to diff (0, 1, or 2)
        commits: Vec<String>,

        /// Show staged changes (index vs HEAD)
        #[arg(long)]
        staged: bool,

        /// Alias for --staged
        #[arg(long)]
        cached: bool,

        /// Show only file-level summary (no content diff)
        #[arg(long)]
        stat: bool,

        /// Disable colored output
        #[arg(long = "no-color")]
        no_color: bool,
    },

    /// Move/rename a file
    Mv {
        /// Source path
        source: String,

        /// Destination path
        dest: String,
    },

    /// Remove files from the index and working tree
    Rm {
        /// Paths to remove
        paths: Vec<String>,

        /// Remove from index only (keep on disk)
        #[arg(long)]
        cached: bool,

        /// Remove even with local changes
        #[arg(short, long)]
        force: bool,

        /// Allow directory removal
        #[arg(short, long)]
        recursive: bool,
    },

    /// Verify a commit signature
    Verify {
        /// Commit reference (CID, branch, tag, or HEAD)
        #[arg(default_value = "HEAD")]
        commit: String,
    },

    /// List contents of a tree at a given commit
    LsTree {
        /// Commit reference (HEAD, branch, tag, or CID)
        commit: String,

        /// Optional path prefix to filter
        path: Option<String>,

        /// Show only filenames (no mode/type/size)
        #[arg(long)]
        name_only: bool,

        /// Recurse into subdirectories
        #[arg(short, long)]
        recursive: bool,
    },

    /// Show commit details or file contents
    Show {
        /// Target: commit ref, commit:path, HEAD, or branch name
        target: String,

        /// Skip signature verification
        #[arg(long = "no-verify")]
        no_verify: bool,
    },

    /// Seal workspace into encrypted shards without creating a commit
    Seal {
        /// Target compressed shard size (bytes)
        #[arg(long)]
        target_shard_size: Option<u64>,

        /// Maximum compressed shard size before splitting (bytes)
        #[arg(long)]
        max_shard_size: Option<u64>,

        /// Shard padding strategy: none, power2, buckets, or fixed bytes
        #[arg(long)]
        padding: Option<String>,
    },

    /// Restore files from sealed shards (low-level)
    Unseal {
        /// Output directory (default: current working directory)
        #[arg(short, long)]
        output: Option<String>,

        /// Specific commit CID (default: HEAD)
        #[arg(long)]
        commit: Option<String>,

        /// List files only, don't extract
        #[arg(long)]
        list: bool,

        /// Don't fetch missing shards from IPFS
        #[arg(long)]
        offline: bool,

        /// Skip hash verification
        #[arg(long = "no-verify")]
        no_verify: bool,

        /// Backend type for fetching remote shards: kubo or gateway
        #[arg(long)]
        backend: Option<String>,

        /// Kubo API URL (default: http://127.0.0.1:5001)
        #[arg(long)]
        kubo: Option<String>,

        /// Gateway URL (required if backend is gateway)
        #[arg(long)]
        gateway: Option<String>,

        /// Request timeout in milliseconds (default: 30000)
        #[arg(long)]
        timeout: Option<u64>,
    },

    /// Repository information and statistics
    #[command(subcommand)]
    Repo(RepoCommands),

    /// Generate shell completion scripts
    Completion {
        /// Shell to generate completions for (bash, zsh, fish, powershell)
        #[arg(value_parser = ["bash", "zsh", "fish", "powershell"])]
        shell: String,
    },

    /// Get, set, list, or unset configuration values
    Config {
        /// List all configuration values
        #[arg(long, short)]
        list: bool,

        /// Unset a configuration value
        #[arg(long)]
        unset: Option<String>,

        /// Configuration key to get or set
        #[arg()]
        key: Option<String>,

        /// Value to set (with key)
        #[arg()]
        value: Option<String>,
    },

    /// Manage user identity for P2P sharing
    #[command(subcommand)]
    Identity(IdentityCommands),

    /// Manage repository contributors
    #[command(subcommand)]
    Contributors(ContributorsCommands),

    /// Manage remote pinning targets
    #[command(subcommand)]
    Remote(RemoteCommands),

    /// Manage linked worktrees
    #[command(subcommand)]
    Workspace(WorkspaceCommands),

    /// Publish repository as a browsable static website
    Publish {
        /// Commit reference (default: HEAD)
        #[arg(long)]
        commit: Option<String>,
        /// Output directory (default: _publish/)
        #[arg(short, long)]
        output: Option<String>,
        /// Pin to IPFS via local Kubo
        #[arg(long)]
        push: bool,
        /// Omit identity URI from published metadata
        #[arg(long)]
        no_identity: bool,
        /// Include contributor list in published metadata
        #[arg(long)]
        contributors: bool,
        /// Show verbose output
        #[arg(long)]
        verbose: bool,
        /// Publish workspace crates to crates.io in dependency order (dry-run by default)
        #[arg(long)]
        crates_io: bool,
        /// Actually publish to crates.io (without this, --crates-io is a dry-run)
        #[arg(long, requires = "crates_io")]
        execute: bool,
        /// Skip cargo verify during crates.io publish
        #[arg(long, requires = "crates_io")]
        no_verify: bool,
    },

    /// Export a commit and its objects to a CAR file
    ExportCar {
        /// Commit reference (default: HEAD)
        #[arg(long)]
        commit: Option<String>,
        /// Output file path (default: export.car)
        #[arg(short, long)]
        output: Option<String>,
    },

    /// Pin a commit to a remote IPFS node via SSH
    PinRemote {
        /// Remote name (from `void remote list`)
        remote: String,
        /// Commit CID to pin (default: HEAD)
        #[arg(long)]
        commit: Option<String>,
    },

    /// List conflicted files during a merge
    Conflicts,

    /// Interactive commit graph visualization
    Graph {
        /// Maximum commits to show
        #[arg(short, long, default_value = "100")]
        max_count: usize,

        /// Sort order: chrono or topo
        #[arg(long, default_value = "chrono")]
        order: String,
    },

    // ========== Branch Commands ==========
    /// Manage branches
    Branch {
        /// Branch name (list all if omitted)
        name: Option<String>,
        /// Delete the branch
        #[arg(short, long)]
        delete: bool,
        /// Overwrite existing branch when creating
        #[arg(short, long)]
        force: bool,
        /// Target commit CID (default: HEAD)
        #[arg(long)]
        target: Option<String>,
    },

    /// Switch branches or restore working tree files
    Switch {
        /// Branch name to switch to
        target: Option<String>,
        /// Create and switch to a new branch
        #[arg(short, long)]
        create: bool,
        /// Detach HEAD at the given commit CID
        #[arg(short, long)]
        detach: Option<String>,
        /// Force switch even with uncommitted changes
        #[arg(short, long)]
        force: bool,
    },

    /// Join two development histories together
    Merge {
        /// Branch or commit to merge (required unless --continue/--abort)
        target: Option<String>,
        /// Force overwrite of local changes
        #[arg(short, long)]
        force: bool,
        /// Continue after resolving conflicts
        #[arg(long = "continue")]
        continue_merge: bool,
        /// Abort in-progress merge
        #[arg(long)]
        abort: bool,
    },

    /// Mark conflicts as resolved
    Resolve {
        /// Paths to resolve
        paths: Vec<String>,
        /// Use our version (HEAD)
        #[arg(long)]
        ours: bool,
        /// Use their version (merge head)
        #[arg(long)]
        theirs: bool,
        /// Resolve all conflicts
        #[arg(long)]
        all: bool,
    },

    /// Stash changes in a dirty working directory
    Stash {
        /// Optional stash message (implies save)
        #[arg(short, long)]
        message: Option<String>,
        /// Stash subcommand
        #[command(subcommand)]
        action: Option<StashCommands>,
    },

    /// Create, list, or delete tags
    Tag {
        /// Tag name (list all if omitted)
        name: Option<String>,
        /// List all tags
        #[arg(short, long)]
        list: bool,
        /// Delete the tag
        #[arg(short, long)]
        delete: bool,
        /// Overwrite existing tag
        #[arg(short, long)]
        force: bool,
        /// Target commit (default: HEAD)
        #[arg(long)]
        target: Option<String>,
    },

    // ========== Network Commands ==========
    /// Push commits to IPFS
    Push {
        /// Commit to push (default: HEAD)
        commit: Option<String>,
        /// Backend type: daemon (default), kubo, or gateway
        #[arg(long, default_value = "daemon")]
        backend: String,
        /// Kubo API URL
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo: String,
        /// Gateway URL (required if backend is gateway)
        #[arg(long)]
        gateway: Option<String>,
        /// Request timeout in milliseconds
        #[arg(long, default_value = "30000")]
        timeout: u64,
        /// Pin objects after pushing (use --no-pin to skip)
        #[arg(long, default_value = "true", action = clap::ArgAction::Set)]
        pin: bool,
        /// Also replicate to SSH remotes (optionally specify a remote name)
        #[arg(long, num_args = 0..=1, default_missing_value = "*")]
        remote: Option<String>,
        /// Push all objects (ignore push markers)
        #[arg(long)]
        full: bool,
        /// Force push: skip missing objects instead of failing
        #[arg(long)]
        force: bool,
    },

    /// Pull commits from IPFS
    Pull {
        /// Commit CID or inbox reference (contact/project) to pull
        commit: Option<String>,
        /// Backend type: daemon (default), kubo, or gateway
        #[arg(long)]
        backend: Option<String>,
        /// Kubo API URL
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo: String,
        /// Gateway URL (required if backend is gateway)
        #[arg(long)]
        gateway: Option<String>,
        /// Request timeout in milliseconds
        #[arg(long, default_value = "30000")]
        timeout: u64,
        /// Pull mode: depth1, full, or lazy
        #[arg(long, default_value = "depth1")]
        mode: String,
    },

    /// Clone a repository from IPFS
    Clone {
        /// Source: commit CID or inbox reference (user/repo/branch)
        source: String,
        /// Target directory to clone into
        #[arg()]
        path: Option<PathBuf>,
        /// Repository encryption key (64 hex chars, required for CID sources)
        #[arg(long)]
        key: Option<String>,
        /// Scoped content key for single-commit clone (64 hex chars).
        /// Used with published repos — decrypts only the target commit.
        #[arg(long)]
        content_key: Option<String>,
        /// Backend type: kubo or gateway
        #[arg(long)]
        backend: Option<String>,
        /// Kubo API URL
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo: String,
        /// Gateway URL (required if backend is gateway)
        #[arg(long)]
        gateway: Option<String>,
        /// Request timeout in milliseconds
        #[arg(long, default_value = "30000")]
        timeout: u64,
        /// Clone mode: depth1, full, or lazy
        #[arg(long, default_value = "depth1")]
        mode: String,
        /// Clone with full history (shorthand for --mode full)
        #[arg(long, conflicts_with = "lazy")]
        full: bool,
        /// Clone metadata only, no files (shorthand for --mode lazy)
        #[arg(long, conflicts_with = "full")]
        lazy: bool,
        /// Skip interactive prompts (use defaults)
        #[arg(long, short = 'y')]
        yes: bool,
    },

    /// Fork a published repository (creates independent repo from snapshot)
    Fork {
        /// Source: commit CID
        source: String,
        /// Target directory
        #[arg()]
        path: Option<PathBuf>,
        /// Scoped content key (64 hex chars)
        #[arg(long)]
        content_key: Option<String>,
        /// Backend type: daemon (default), kubo, or gateway
        #[arg(long, default_value = "daemon")]
        backend: String,
        /// Kubo API URL
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo: String,
        /// Gateway URL (required if backend is gateway)
        #[arg(long)]
        gateway: Option<String>,
        /// Request timeout in milliseconds
        #[arg(long, default_value = "30000")]
        timeout: u64,
    },

    /// Import a published commit as a branch for review and merge
    PullRequest {
        /// Commit CID from contributor's publish output
        source: String,
        /// Branch name (created as pr/<name>)
        #[arg(long)]
        name: String,
        /// Content key (64 hex chars)
        #[arg(long)]
        content_key: String,
        /// Backend type: kubo or gateway
        #[arg(long, default_value = "gateway")]
        backend: String,
        /// Gateway URL
        #[arg(long, default_value = "https://ipfs.io")]
        gateway: Option<String>,
        /// Kubo API URL
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo: String,
        /// Request timeout in milliseconds
        #[arg(long, default_value = "30000")]
        timeout: u64,
    },

    /// Tor and onion daemon integration helpers
    #[command(subcommand)]
    Tor(TorCommands),

    // ========== Daemon Commands ==========
    /// Manage the embedded IPFS daemon
    #[command(subcommand)]
    Daemon(DaemonCommands),

    // ========== Debug Commands ==========
    /// Debug and maintenance commands
    #[command(subcommand)]
    Debug(DebugCommands),
}

/// Subcommands for the daemon command.
#[derive(Subcommand)]
enum DaemonCommands {
    /// Start the daemon (foreground, with logging)
    Start {
        /// Listen address (default: /ip4/0.0.0.0/tcp/0, OS assigns port)
        #[arg(long)]
        listen: Option<String>,
        /// Log level: error, warn, info, debug, trace
        #[arg(long, default_value = "info")]
        log_level: String,
    },
    /// Stop a running daemon
    Stop,
    /// Show daemon status (peer count, uptime, addresses)
    Status,
    /// Show detailed daemon stats (bitswap counters, bytes transferred)
    Stats,
    /// List connected peers
    Peers,
    /// List stored blocks
    Files,
    /// Check a specific block by CID
    Block {
        /// CID to check
        cid: String,
    },
    /// Add a file or directory to IPFS (UnixFS)
    Add {
        /// Path to file or directory
        path: String,
    },
    /// Read a UnixFS file from IPFS
    Cat {
        /// CID of the file
        cid: String,
    },
    /// Tail the daemon log file
    Logs {
        /// Number of lines to show (default: 50)
        #[arg(short, long, default_value = "50")]
        lines: usize,
        /// Follow the log (like tail -f)
        #[arg(short, long)]
        follow: bool,
    },
    /// Generate a systemd service file for the daemon
    Install {
        /// Target init system
        #[arg(long, default_value = "systemd")]
        target: String,
    },
}

/// Subcommands for the identity command.
#[derive(Subcommand)]
enum IdentityCommands {
    /// Generate new identity with seed phrase
    Init {
        /// Force overwrite if identity already exists
        #[arg(long)]
        force: bool,
        /// Username for the identity (defaults to system username)
        #[arg(long)]
        username: Option<String>,
    },
    /// Show identity string (public keys). No PIN needed.
    Show,
    /// Export identity string for sharing. No PIN needed.
    Export,
    /// Recover identity from a mnemonic seed phrase
    Recover {
        /// Force overwrite if identity already exists
        #[arg(long)]
        force: bool,
        /// Username for the recovered identity (defaults to system username)
        #[arg(long)]
        username: Option<String>,
    },
    /// Clear cached identity keys from OS keyring
    Lock,
    /// Pre-cache identity keys in OS keyring (prompts for PIN)
    Unlock,
}


/// Subcommands for the contributors command.
#[derive(Subcommand)]
enum ContributorsCommands {
    /// List all contributors
    List,
    /// Add a contributor
    Add {
        /// Identity string (void://[username@]ed25519:.../x25519:...)
        identity: String,
        /// Optional display name
        #[arg(long)]
        name: Option<String>,
    },
    /// Remove a contributor by name or signing pubkey prefix
    Remove {
        /// Name or signing pubkey prefix
        target: String,
    },
    /// Rename a contributor
    Rename {
        /// Current name or signing pubkey prefix
        target: String,
        /// New display name
        new_name: String,
    },
    /// Create an invite JSON for a contributor
    Invite {
        /// Contributor name or signing pubkey prefix
        target: String,
    },
}

/// Subcommands for the stash command.
#[derive(Subcommand)]
enum StashCommands {
    /// Save current changes to stash
    #[command(alias = "push")]
    Save {
        /// Optional stash message
        #[arg(short, long)]
        message: Option<String>,
    },
    /// List stash entries
    List,
    /// Apply and remove a stash entry
    Pop {
        /// Stash index (default: 0)
        index: Option<u32>,
    },
    /// Remove a stash entry without applying
    Drop {
        /// Stash index (default: 0)
        index: Option<u32>,
    },
    /// Clear all stash entries
    Clear,
}

/// Subcommands for the workspace command.
#[derive(Subcommand)]
enum WorkspaceCommands {
    /// List all workspaces
    List,
    /// Create a new linked workspace
    Create {
        /// Workspace name
        name: String,
        /// Branch to check out (default: same as workspace name)
        #[arg(short, long)]
        branch: Option<String>,
        /// Working tree path (default: ../<name> relative to repo root)
        #[arg(short, long)]
        path: Option<PathBuf>,
    },
    /// Remove a linked workspace
    Remove {
        /// Workspace name
        name: String,
    },
    /// Remove stale workspace entries
    Prune,
}

/// Subcommands for the remote command.
#[derive(Subcommand)]
enum RemoteCommands {
    /// List configured remotes
    List,
    /// Add a new remote
    Add {
        /// Remote name
        name: String,
        /// Host (supports user@host format)
        #[arg(long)]
        host: Option<String>,
        /// SSH key path
        #[arg(long)]
        key: Option<String>,
        /// P2P peer multiaddr
        #[arg(long)]
        peer: Option<String>,
    },
    /// Remove a remote
    Remove {
        /// Remote name
        name: String,
    },
    /// Show remote details
    Show {
        /// Remote name
        name: String,
    },
}

/// Subcommands for the debug command.
#[derive(Subcommand)]
enum DebugCommands {
    /// Audit all objects in the repository (machine-readable)
    Audit {
        /// Maximum commits to traverse (default: 10000)
        #[arg(long, default_value = "10000")]
        max_commits: usize,
    },
    /// Interactive audit viewer (TUI)
    AuditTui,
    /// Check repository integrity
    Fsck {
        /// Run full verification (verify content hashes)
        #[arg(long)]
        full: bool,
        /// Find unreferenced objects (gc candidates)
        #[arg(long)]
        unreferenced: bool,
    },
    /// Show contents of an object by CID
    CatFile {
        /// CID of the object
        cid: String,
    },
    /// Garbage collection - quarantine unreferenced objects
    Gc {
        /// List unreferenced objects without quarantining
        #[arg(long)]
        dry_run: bool,
    },
    /// Read and display shard contents
    ReadShard {
        /// CID of the shard
        cid: String,
    },
    /// Create a new shard from files
    CreateShard {
        /// Files to include in the shard
        files: Vec<String>,
    },
    /// Encrypt data using a provided key
    Encrypt {
        /// 32-byte key as hex (64 chars)
        key: String,
        /// Plaintext data to encrypt
        plaintext: String,
    },
    /// Decrypt data using a provided key
    Decrypt {
        /// 32-byte key as hex (64 chars)
        key: String,
        /// Ciphertext to decrypt (hex-encoded)
        ciphertext: String,
    },
    /// Create a CID from data (stdin)
    CreateCid,
    /// Show shard information for a commit
    DebugShards {
        /// Commit reference (default: HEAD)
        commit: Option<String>,
    },
    /// Generate a random 32-byte encryption key
    GenerateKey,
    /// Print the repo's encryption key (hex-encoded, from identity ECIES unwrap)
    RepoKey,
    /// Rebuild the index from HEAD and working tree
    RebuildIndex,
    /// Read a single file from an encrypted shard
    ReadShardFile {
        /// CID of the shard
        shard_cid: String,
        /// File path within the shard
        path: String,
    },
    /// Repair a corrupted repository
    Repair {
        /// Repair mode: truncate (default), best-effort, rewrite-history
        #[arg(long, default_value = "truncate")]
        mode: String,
        /// Target branch for rewrite-history mode
        #[arg(long)]
        target_branch: Option<String>,
        /// Show what would happen without making changes
        #[arg(long)]
        dry_run: bool,
    },
    /// Reparent a commit (change its parent pointers)
    Reparent {
        /// CID of the commit to reparent
        commit_cid: String,
        /// New parent CID(s)
        new_parent_cids: Vec<String>,
    },
    /// Inspect an encrypted object with decrypt diagnostics
    InspectObject {
        /// CID of the object to inspect
        cid: String,
    },
}

/// Subcommands for the repo command.
#[derive(Subcommand)]
enum RepoCommands {
    /// Show file statistics by extension
    Stat {
        /// Show all file types (not just code files)
        #[arg(long)]
        all: bool,

        /// Show top N file types (default: 10)
        #[arg(long, default_value = "10")]
        top: usize,

        /// Sort by: lines, files, bytes (default: lines)
        #[arg(long, default_value = "lines")]
        sort: String,

        /// Limit to specific directory
        #[arg(long)]
        path: Option<String>,

        /// Exclude file extensions (repeatable, e.g. --exclude lock --exclude json; also supports comma-separated)
        #[arg(long)]
        exclude: Vec<String>,
    },

    /// Show repository size breakdown
    Size {
        /// Show top N largest files (default: 10)
        #[arg(long, default_value = "10")]
        top: usize,
    },

    /// Show repository information
    Info,

    /// List all known repositories in the local registry
    List {
        /// Show full details (paths, keys, branches)
        #[arg(long)]
        verbose: bool,
    },
    /// Show detailed registry info for a repo
    Registry {
        /// Repo name or UUID
        target: String,
    },
    /// Remove a repository from the registry
    Unregister {
        /// Repo name or UUID
        target: String,
    },
}

/// Subcommands for the tor command.
#[derive(Subcommand)]
enum TorCommands {
    /// Generate Tor and Kubo service config templates
    Setup {
        /// Output directory for generated files
        #[arg(short, long)]
        output: Option<PathBuf>,
        /// Service platform override (systemd or launchd)
        #[arg(long)]
        platform: Option<String>,
        /// Tor SOCKS port
        #[arg(long, default_value = "9050")]
        socks_port: u16,
        /// Tor control port
        #[arg(long, default_value = "9051")]
        control_port: u16,
        /// Local void P2P listener port
        #[arg(long, default_value = "4001")]
        p2p_port: u16,
        /// Local Kubo API endpoint
        #[arg(long, default_value = "http://127.0.0.1:5001")]
        kubo_api: String,
    },
}


fn main() {
    let cli = Cli::parse();

    // Build CliOptions from parsed arguments
    let opts = CliOptions {
        json: cli.json,
        human: cli.human,
        quiet: cli.quiet,
        debug: cli.debug,
        verbose: cli.verbose,
    };

    let result = match cli.command {
        Commands::Init => commands::init::run(&cli.cwd, &opts),
        Commands::Status { paths } => commands::status::run(&cli.cwd, paths, &opts),
        Commands::Add { paths } => commands::add::run(&cli.cwd, paths, &opts),
        Commands::Reset { paths } => commands::reset::run(&cli.cwd, paths, &opts),
        Commands::Restore {
            paths,
            source,
            staged,
            force,
        } => commands::restore::run(
            &cli.cwd,
            commands::restore::RestoreArgs {
                paths,
                source,
                staged,
                force,
            },
            &opts,
        ),
        Commands::Commit {
            message,
            sign,
            no_sign,
            target_shard_size,
            max_shard_size,
            mmap_threshold,
            padding,
            allow_data_loss,
        } => commands::commit::run(
            &cli.cwd,
            commands::commit::CommitArgs {
                message,
                sign,
                no_sign,
                target_shard_size,
                max_shard_size,
                mmap_threshold,
                padding,
                allow_data_loss,
            },
            &opts,
        ),
        Commands::Log { number, no_verify } => {
            commands::log::run(&cli.cwd, number, &opts, !no_verify)
        }
        Commands::Diff {
            commits,
            staged,
            cached,
            stat,
            no_color,
        } => commands::diff::run(&cli.cwd, commits, staged || cached, stat, no_color, &opts),
        Commands::Mv { source, dest } => commands::mv::run(&cli.cwd, source, dest, &opts),
        Commands::Rm {
            paths,
            cached,
            force,
            recursive,
        } => commands::rm::run(&cli.cwd, paths, cached, force, recursive, &opts),
        Commands::Verify { commit } => commands::verify::run(&cli.cwd, &commit, &opts),
        Commands::LsTree {
            commit,
            path,
            name_only,
            recursive,
        } => commands::ls_tree::run(
            &cli.cwd,
            &commit,
            path.as_deref(),
            name_only,
            recursive,
            &opts,
        ),
        Commands::Show { target, no_verify } => {
            commands::show::run(&cli.cwd, &target, !no_verify, &opts)
        }
        Commands::Seal {
            target_shard_size,
            max_shard_size,
            padding,
        } => commands::seal::run(
            &cli.cwd,
            commands::seal::SealArgs {
                target_shard_size,
                max_shard_size,
                padding,
            },
            &opts,
        ),
        Commands::Unseal {
            output,
            commit,
            list,
            offline,
            no_verify,
            backend,
            kubo,
            gateway,
            timeout,
        } => commands::unseal::run(
            &cli.cwd,
            commands::unseal::UnsealArgs {
                output,
                commit,
                list,
                offline,
                no_verify,
                backend,
                kubo,
                gateway,
                timeout,
            },
            &opts,
        ),
        Commands::Repo(subcmd) => match subcmd {
            RepoCommands::Stat {
                all,
                top,
                sort,
                path,
                exclude,
            } => commands::repo::run_stat(
                &cli.cwd,
                commands::repo::StatArgs {
                    all,
                    top,
                    sort,
                    path,
                    exclude,
                },
                &opts,
            ),
            RepoCommands::Size { top } => {
                commands::repo::run_size(&cli.cwd, commands::repo::SizeArgs { top }, &opts)
            }
            RepoCommands::Info => commands::repo::run_info(&cli.cwd, &opts),
            RepoCommands::List { verbose } => commands::repo::run_list(verbose, &opts),
            RepoCommands::Registry { target } => commands::repo::run_registry(&target, &opts),
            RepoCommands::Unregister { target } => commands::repo::run_unregister(&target, &opts),
        },
        Commands::Completion { shell } => commands::completion::run(&shell, &opts),
        Commands::Config {
            list,
            unset,
            key,
            value,
        } => commands::config::run(
            &cli.cwd,
            commands::config::ConfigArgs {
                list,
                unset,
                key,
                value,
            },
            &opts,
        ),
        Commands::Identity(subcmd) => {
            let subcommand = match subcmd {
                IdentityCommands::Init {
                    force,
                    username,
                } => commands::collab::identity::IdentitySubcommand::Init {
                    force,
                    username,
                },
                IdentityCommands::Show => commands::collab::identity::IdentitySubcommand::Show,
                IdentityCommands::Export => commands::collab::identity::IdentitySubcommand::Export,
                IdentityCommands::Recover { force, username } => {
                    commands::collab::identity::IdentitySubcommand::Recover { force, username }
                }
                IdentityCommands::Lock => commands::collab::identity::IdentitySubcommand::Lock,
                IdentityCommands::Unlock => commands::collab::identity::IdentitySubcommand::Unlock,
            };
            commands::collab::identity::run(
                commands::collab::identity::IdentityArgs { subcommand },
                &opts,
            )
        }
        Commands::Contributors(subcmd) => match subcmd {
            ContributorsCommands::Invite { target } => commands::collab::invite::run(
                &cli.cwd,
                commands::collab::invite::InviteArgs { target },
                &opts,
            ),
            other => {
                let subcommand = match other {
                    ContributorsCommands::List => {
                        commands::collab::contributors::ContributorsSubcommand::List
                    }
                    ContributorsCommands::Add { identity, name } => {
                        commands::collab::contributors::ContributorsSubcommand::Add {
                            name,
                            identity,
                        }
                    }
                    ContributorsCommands::Remove { target } => {
                        commands::collab::contributors::ContributorsSubcommand::Remove { target }
                    }
                    ContributorsCommands::Rename { target, new_name } => {
                        commands::collab::contributors::ContributorsSubcommand::Rename {
                            target,
                            new_name,
                        }
                    }
                    ContributorsCommands::Invite { .. } => unreachable!(),
                };
                commands::collab::contributors::run(
                    &cli.cwd,
                    commands::collab::contributors::ContributorsArgs { subcommand },
                    &opts,
                )
            }
        },

        Commands::Remote(subcmd) => {
            let subcommand = match subcmd {
                RemoteCommands::List => commands::remote::RemoteSubcommand::List,
                RemoteCommands::Add {
                    name,
                    host,
                    key,
                    peer,
                } => commands::remote::RemoteSubcommand::Add {
                    name,
                    host,
                    key,
                    peer,
                },
                RemoteCommands::Remove { name } => {
                    commands::remote::RemoteSubcommand::Remove { name }
                }
                RemoteCommands::Show { name } => commands::remote::RemoteSubcommand::Show { name },
            };
            commands::remote::run(&cli.cwd, commands::remote::RemoteArgs { subcommand }, &opts)
        }

        Commands::Workspace(subcmd) => {
            let subcommand = match subcmd {
                WorkspaceCommands::List => commands::workspace::WorkspaceSubcommand::List,
                WorkspaceCommands::Create { name, branch, path } => {
                    commands::workspace::WorkspaceSubcommand::Create { name, branch, path }
                }
                WorkspaceCommands::Remove { name } => {
                    commands::workspace::WorkspaceSubcommand::Remove { name }
                }
                WorkspaceCommands::Prune => commands::workspace::WorkspaceSubcommand::Prune,
            };
            commands::workspace::run(
                &cli.cwd,
                commands::workspace::WorkspaceArgs { subcommand },
                &opts,
            )
        }

        Commands::Publish {
            commit,
            output,
            push,
            no_identity,
            contributors,
            verbose: _,
            crates_io,
            execute,
            no_verify,
        } => {
            if crates_io {
                commands::publish::run_crates_io(execute, no_verify, &cli.cwd, &opts)
            } else {
                commands::publish::run(
                    &cli.cwd,
                    commands::publish::PublishArgs {
                        commit,
                        output,
                        push,
                        no_identity,
                        contributors,
                    },
                    &opts,
                )
            }
        }

        Commands::ExportCar { commit, output } => commands::export_car::run(
            &cli.cwd,
            commands::export_car::ExportCarArgs { commit, output },
            &opts,
        ),

        Commands::PinRemote { remote, commit } => commands::pin_remote::run(
            &cli.cwd,
            commands::pin_remote::PinRemoteArgs { remote, commit },
            &opts,
        ),

        Commands::Daemon(subcmd) => {
            commands::daemon::run(subcmd, &opts)
        }

        Commands::Tor(subcmd) => {
            let subcommand = match subcmd {
                TorCommands::Setup {
                    output,
                    platform,
                    socks_port,
                    control_port,
                    p2p_port,
                    kubo_api,
                } => commands::tor::TorSubcommand::Setup {
                    output,
                    platform,
                    socks_port,
                    control_port,
                    p2p_port,
                    kubo_api,
                },
            };
            commands::tor::run(&cli.cwd, commands::tor::TorArgs { subcommand }, &opts)
        }

        Commands::Conflicts => commands::conflicts::run(&cli.cwd, &opts),
        Commands::Graph { max_count, order } => {
            commands::graph::run(&cli.cwd, max_count, &order, &opts)
        }

        // Branch commands
        Commands::Branch {
            name,
            delete,
            force,
            target,
        } => commands::branch::run(
            &cli.cwd,
            commands::branch::BranchArgs {
                name,
                target,
                delete,
                force,
            },
            &opts,
        ),
        Commands::Switch {
            target,
            create,
            detach,
            force,
        } => commands::switch::run(
            &cli.cwd,
            commands::switch::SwitchArgs {
                target,
                create,
                detach,
                force,
            },
            &opts,
        ),
        Commands::Merge {
            target,
            force,
            continue_merge,
            abort,
        } => commands::merge::run(
            &cli.cwd,
            commands::merge::MergeArgs {
                target,
                force,
                continue_merge,
                abort_merge: abort,
            },
            &opts,
        ),
        Commands::Resolve {
            paths,
            ours,
            theirs,
            all,
        } => commands::resolve::run(
            &cli.cwd,
            commands::resolve::ResolveArgs {
                paths,
                ours,
                theirs,
                all,
            },
            &opts,
        ),
        Commands::Stash { message, action } => {
            // If message is provided without a subcommand, treat as save
            let stash_action = match action {
                Some(StashCommands::Save { message: sub_msg }) => {
                    // Prefer subcommand message if both provided
                    commands::stash::StashAction::Save {
                        message: sub_msg.or(message),
                    }
                }
                Some(StashCommands::List) => commands::stash::StashAction::List,
                Some(StashCommands::Pop { index }) => commands::stash::StashAction::Pop { index },
                Some(StashCommands::Drop { index }) => commands::stash::StashAction::Drop { index },
                Some(StashCommands::Clear) => commands::stash::StashAction::Clear,
                None => {
                    // No subcommand: if message provided, save; otherwise list
                    if message.is_some() {
                        commands::stash::StashAction::Save { message }
                    } else {
                        commands::stash::StashAction::List
                    }
                }
            };
            commands::stash::run(
                &cli.cwd,
                commands::stash::StashArgs {
                    action: stash_action,
                },
                &opts,
            )
        }
        Commands::Tag {
            name,
            list,
            delete,
            force,
            target,
        } => commands::tag::run(
            &cli.cwd,
            commands::tag::TagArgs {
                name,
                list,
                target,
                delete,
                force,
            },
            &opts,
        ),

        // Network commands
        Commands::Push {
            commit,
            backend,
            kubo,
            gateway,
            timeout,
            pin,
            remote,
            full,
            force,
        } => {
            let local = remote.is_none();
            let specific_remote = match remote.as_deref() {
                Some("*") | None => None,
                Some(name) => Some(name.to_string()),
            };
            commands::network::push::run(
                &cli.cwd,
                commands::network::push::PushArgs {
                    commit,
                    backend,
                    kubo_url: kubo,
                    gateway,
                    timeout_ms: timeout,
                    pin,
                    local,
                    remote: specific_remote,
                    full,
                    force,
                },
                &opts,
            )
        }
        Commands::Pull {
            commit,
            backend,
            kubo,
            gateway,
            timeout,
            mode,
        } => commands::network::pull::run(
            &cli.cwd,
            commands::network::pull::PullArgs {
                commit,
                backend,
                kubo_url: kubo,
                gateway_url: gateway,
                timeout_ms: timeout,
                mode,
            },
            &opts,
        ),
        Commands::Clone {
            source,
            path,
            key,
            content_key,
            backend,
            kubo,
            gateway,
            timeout,
            mode,
            full,
            lazy,
            yes,
        } => {
            // --full and --lazy override --mode
            let effective_mode = if full {
                "full".to_string()
            } else if lazy {
                "lazy".to_string()
            } else {
                mode
            };
            commands::network::clone::run(
                &cli.cwd,
                commands::network::clone::CloneArgs {
                    source,
                    key,
                    content_key,
                    path,
                    backend,
                    kubo_url: kubo,
                    gateway_url: gateway,
                    timeout_ms: timeout,
                    mode: effective_mode,
                    yes,
                },
                &opts,
            )
        }

        Commands::Fork {
            source,
            path,
            content_key,
            backend,
            kubo,
            gateway,
            timeout,
        } => commands::fork::run(
            &cli.cwd,
            commands::fork::ForkArgs {
                source,
                path,
                content_key,
                backend,
                kubo_url: kubo,
                gateway_url: gateway,
                timeout_ms: timeout,
            },
            &opts,
        ),

        Commands::PullRequest {
            source,
            name,
            content_key,
            backend,
            gateway,
            kubo,
            timeout,
        } => commands::pull_request::run(
            &cli.cwd,
            commands::pull_request::PullRequestArgs {
                source,
                name,
                content_key,
                backend,
                kubo_url: kubo,
                gateway_url: gateway,
                timeout_ms: timeout,
            },
            &opts,
        ),

        // Debug commands
        Commands::Debug(subcmd) => match subcmd {
            DebugCommands::Audit { max_commits } => commands::debug::audit::run(
                &cli.cwd,
                commands::debug::audit::AuditArgs { max_commits },
                &opts,
            ),
            DebugCommands::AuditTui => commands::debug::audit_tui::run(&cli.cwd, &opts),
            DebugCommands::Fsck {
                full,
                unreferenced,
            } => commands::debug::fsck::run(
                &cli.cwd,
                commands::debug::fsck::FsckArgs {
                    full,
                    unreferenced,
                },
                &opts,
            ),
            DebugCommands::CatFile { cid } => commands::debug::cat_file::run(
                &cli.cwd,
                commands::debug::cat_file::CatFileArgs { cid },
                &opts,
            ),
            DebugCommands::Gc { dry_run } => {
                commands::debug::gc::run(&cli.cwd, commands::debug::gc::GcArgs { dry_run }, &opts)
            }
            DebugCommands::ReadShard { cid } => commands::debug::read_shard::run(
                &cli.cwd,
                commands::debug::read_shard::ReadShardArgs { cid },
                &opts,
            ),
            DebugCommands::CreateShard { files } => commands::debug::create_shard::run(
                &cli.cwd,
                commands::debug::create_shard::CreateShardArgs { files },
                &opts,
            ),
            DebugCommands::Encrypt { key, plaintext } => commands::debug::encrypt::run(
                commands::debug::encrypt::EncryptArgs { key, plaintext },
                &opts,
            ),
            DebugCommands::Decrypt { key, ciphertext } => commands::debug::decrypt::run(
                commands::debug::decrypt::DecryptArgs { key, ciphertext },
                &opts,
            ),
            DebugCommands::CreateCid => commands::debug::create_cid::run(
                &cli.cwd,
                commands::debug::create_cid::CreateCidArgs {},
                &opts,
            ),
            DebugCommands::DebugShards { commit } => commands::debug::debug_shards::run(
                &cli.cwd,
                commands::debug::debug_shards::DebugShardsArgs { commit_ref: commit },
                &opts,
            ),
            DebugCommands::GenerateKey => commands::debug::generate_key::run(&opts),
            DebugCommands::RepoKey => commands::debug::repo_key::run(&cli.cwd, &opts),
            DebugCommands::RebuildIndex => commands::debug::rebuild_index::run(&cli.cwd, &opts),
            DebugCommands::ReadShardFile { shard_cid, path } => {
                commands::debug::read_shard_file::run(
                    &cli.cwd,
                    commands::debug::read_shard_file::ReadShardFileArgs { shard_cid, path },
                    &opts,
                )
            }
            DebugCommands::Repair {
                mode,
                target_branch,
                dry_run,
            } => commands::debug::repair::run(
                &cli.cwd,
                commands::debug::repair::RepairArgs {
                    mode,
                    target_branch,
                    dry_run,
                },
                &opts,
            ),
            DebugCommands::Reparent {
                commit_cid,
                new_parent_cids,
            } => commands::debug::reparent::run(
                &cli.cwd,
                commands::debug::reparent::ReparentArgs {
                    commit_cid,
                    new_parent_cids,
                },
                &opts,
            ),
            DebugCommands::InspectObject { cid } => commands::debug::inspect_object::run(
                &cli.cwd,
                commands::debug::inspect_object::InspectObjectArgs { cid },
                &opts,
            ),
        },
    };

    if let Err(e) = result {
        std::process::exit(e.exit_code());
    }
}