simit 0.16.0

Semver-aware git commit helper for Rust projects
Documentation
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
use std::ffi::OsString;

use camino::Utf8PathBuf;
use clap::{Args, Parser, Subcommand, ValueEnum};
use semver::Version;
use serde::{Deserialize, Serialize};

#[derive(Debug, Parser)]
#[command(
    name = "simit",
    version,
    about = "Semver-aware Rust project helper",
    long_about = "simit helps Rust projects prepare release commits, generate CI workflows, wire formatter/pre-commit hooks, and emit shell integration artifacts."
)]
pub struct Cli {
    #[command(subcommand, help = "Command to run")]
    pub command: Commands,
}

#[derive(Debug, Subcommand)]
pub enum Commands {
    #[command(about = "Bump package versions, commit the change, and optionally tag it")]
    Commit(CommitCommand),
    #[command(about = "Run local release checks, update the changelog, commit, and tag")]
    Release(ReleaseCommand),
    #[command(
        about = "Bootstrap generated project files and distribution skeletons",
        disable_help_subcommand = true
    )]
    Init(InitCommand),
    #[command(about = "Distribution channel helpers")]
    Dist(DistCommand),
    #[command(about = "Manage a Keep a Changelog file")]
    Changelog(ChangelogCommand),
    #[command(about = "Install and verify project Git hooks")]
    Hooks(HooksCommand),
    #[command(about = "Manage user-scoped simit configuration")]
    Config(ConfigCommand),
    #[command(about = "Inspect and maintain the per-user project registry")]
    Projects(ProjectsCommand),
    #[command(about = "Print shell completion scripts")]
    Completions(CompletionsCommand),
    #[command(about = "Print a roff manpage for simit")]
    Man(ManCommand),
}

#[derive(Debug, Args)]
pub struct InitCommand {
    #[command(subcommand)]
    pub action: InitAction,
}

#[derive(Debug, Args)]
pub struct DistCommand {
    #[command(subcommand)]
    pub action: DistAction,
}

#[derive(Debug, Subcommand)]
pub enum InitAction {
    #[command(about = "Generate or verify Rust CI workflows")]
    Ci(Box<InitCiCommand>),
    #[command(about = "Generate or verify a canonical Rust crane flake and hook wiring")]
    Flake(InitFlakeCommand),
    #[command(about = "Bootstrap a Homebrew tap repo with a formula skeleton")]
    HomebrewTap(InitHomebrewTapCommand),
    #[command(about = "Bootstrap a Chocolatey package directory")]
    Chocolatey(InitChocolateyCommand),
    #[command(about = "Bootstrap a Scoop bucket repo with a manifest skeleton")]
    ScoopBucket(InitScoopBucketCommand),
    #[command(about = "Bootstrap AUR PKGBUILDs (source/-bin/-git flavors)")]
    Aur(InitAurCommand),
    #[command(about = "Bootstrap a Fedora COPR RPM spec and .copr/Makefile")]
    Copr(InitCoprCommand),
    #[command(about = "Bootstrap an apt (reprepro) repository config")]
    Apt(InitAptCommand),
    #[command(about = "Generate the comprehensive multi-channel release workflow")]
    Release(InitReleaseCommand),
}

#[derive(Debug, Subcommand)]
pub enum DistAction {
    #[command(about = "Homebrew formula helpers (render, bump, push)")]
    Homebrew(HomebrewCommand),
    #[command(about = "Chocolatey package helpers (render, bump, push)")]
    Chocolatey(ChocolateyCommand),
    #[command(about = "Scoop manifest helpers (render, bump, push)")]
    Scoop(ScoopCommand),
    #[command(about = "AUR PKGBUILD helpers (render)")]
    Aur(AurCommand),
    #[command(about = "Fedora COPR helpers (render)")]
    Copr(CoprCommand),
    #[command(about = "apt repository helpers (render)")]
    Apt(AptCommand),
}

#[derive(Debug, Args)]
pub struct CommitCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package to bump; may be repeated"
    )]
    pub packages: Vec<String>,
    #[arg(long, help = "Bump every package in the workspace")]
    pub workspace: bool,
    #[arg(long = "no-tag", help = "Skip creating the release tag")]
    pub no_tag: bool,
    #[arg(
        long = "no-sign",
        help = "Create an unsigned tag instead of a signed tag"
    )]
    pub no_sign: bool,
    #[arg(long, help = "Print the planned release commit without changing files")]
    pub dry_run: bool,
    #[arg(value_enum, value_name = "BUMP", help = "Version bump to apply")]
    pub bump: BumpKind,
    #[arg(
        long = "pre",
        value_name = "ID",
        help = "Prerelease identifier to attach, such as alpha.1 or rc.1"
    )]
    pub pre: Option<String>,
    #[arg(
        value_name = "GIT_ARGS",
        trailing_var_arg = true,
        allow_hyphen_values = true,
        help = "Arguments passed through to git commit, such as -m <message>"
    )]
    pub git_args: Vec<OsString>,
}

#[derive(Debug, Args)]
pub struct ReleaseCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package to release; may be repeated"
    )]
    pub packages: Vec<String>,
    #[arg(long, help = "Release every package in the workspace")]
    pub workspace: bool,
    #[arg(long = "no-tag", help = "Skip creating the release tag")]
    pub no_tag: bool,
    #[arg(
        long = "no-sign",
        help = "Create an unsigned tag instead of a signed tag"
    )]
    pub no_sign: bool,
    #[arg(long, help = "Print the planned release without changing files")]
    pub dry_run: bool,
    #[arg(
        value_enum,
        value_name = "ACTION",
        help = "Version bump to apply, or sync-up to rerun a failed release from HEAD"
    )]
    pub action: ReleaseAction,
    #[arg(value_enum, value_name = "TRUST_ACTION", help = "Release trust action")]
    pub trust_action: Option<ReleaseTrustAction>,
    #[arg(
        long = "key",
        value_name = "FINGERPRINT",
        help = "OpenPGP key fingerprint for `simit release trust`"
    )]
    pub trust_key: Option<String>,
    #[arg(
        long = "trust-root",
        value_name = "PATH",
        help = "Path to the release maintainer public keyring"
    )]
    pub trust_root: Option<Utf8PathBuf>,
    #[arg(
        long = "pre",
        value_name = "ID",
        help = "Prerelease identifier to attach, such as alpha.1 or rc.1"
    )]
    pub pre: Option<String>,
    #[arg(
        short = 'm',
        long = "message",
        value_name = "MESSAGE",
        help = "Release commit message"
    )]
    pub message: Option<String>,
    #[arg(
        long = "no-changelog",
        help = "Skip promoting CHANGELOG.md even when it exists"
    )]
    pub no_changelog: bool,
    #[arg(long, help = "Push a sync-up tag move to the remote")]
    pub push: bool,
    #[arg(
        long,
        value_name = "REMOTE",
        default_value = "origin",
        help = "Remote to push sync-up tag moves to"
    )]
    pub remote: String,
    #[arg(
        long,
        help = "Print machine-readable JSON for `simit release verify` or `simit release plan`"
    )]
    pub json: bool,
    #[arg(
        long = "dry-run-package",
        help = "Run `cargo package` checks for each crate selected by `simit release plan`"
    )]
    pub dry_run_package: bool,
    #[arg(
        long = "version",
        value_name = "VERSION",
        help = "Version to verify instead of the selected package's current Cargo.toml version"
    )]
    pub verify_version: Option<Version>,
    #[arg(
        long = "push-target",
        value_name = "REMOTE",
        help = "Remote checked by `simit release verify` for the release tag"
    )]
    pub push_target: Option<String>,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum ReleaseAction {
    #[value(help = "Increment patch: 1.2.3 -> 1.2.4")]
    Patch,
    #[value(help = "Increment minor and reset patch: 1.2.3 -> 1.3.0")]
    Minor,
    #[value(help = "Increment major and reset minor/patch: 1.2.3 -> 2.0.0")]
    Major,
    #[value(help = "Keep the numeric version and replace prerelease metadata")]
    Prerelease,
    #[value(
        name = "sync-up",
        help = "Move the current-version release tag to HEAD"
    )]
    SyncUp,
    #[value(name = "trust", help = "Manage release maintainer trust roots")]
    Trust,
    #[value(
        name = "verify",
        help = "Run the read-only release-bar verification report"
    )]
    Verify,
    #[value(
        name = "plan",
        help = "Print the dependency-ordered publish plan for the current workspace"
    )]
    Plan,
}

impl ReleaseAction {
    pub fn bump_kind(self) -> Option<BumpKind> {
        match self {
            Self::Patch => Some(BumpKind::Patch),
            Self::Minor => Some(BumpKind::Minor),
            Self::Major => Some(BumpKind::Major),
            Self::Prerelease => Some(BumpKind::Prerelease),
            Self::SyncUp | Self::Trust | Self::Verify | Self::Plan => None,
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum ReleaseTrustAction {
    #[value(help = "Show detected release signing key and trust-root state")]
    Status,
    #[value(help = "Export the maintainer public key into the release trust root")]
    Init,
    #[value(help = "Verify the release trust root exists and matches the signing key")]
    Check,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum BumpKind {
    #[value(help = "Increment patch: 1.2.3 -> 1.2.4")]
    Patch,
    #[value(help = "Increment minor and reset patch: 1.2.3 -> 1.3.0")]
    Minor,
    #[value(help = "Increment major and reset minor/patch: 1.2.3 -> 2.0.0")]
    Major,
    #[value(help = "Keep the numeric version and replace prerelease metadata")]
    Prerelease,
}

#[derive(Debug, Args)]
pub struct InitCiCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        conflicts_with = "workspace",
        help = "Workspace package to generate CI for; may be repeated"
    )]
    pub packages: Vec<String>,
    #[arg(long, help = "Generate CI for every package in the workspace")]
    pub workspace: bool,
    #[arg(
        long,
        value_enum,
        value_name = "PLATFORM",
        help = "Workflow platform to generate"
    )]
    pub platform: Platform,
    #[arg(
        long,
        value_enum,
        value_name = "RUNTIME",
        help = "Command runtime used inside generated workflows"
    )]
    pub runtime: Option<RuntimeChoice>,
    #[arg(
        long,
        value_name = "LABEL",
        help = "Override the generated runner label for Linux jobs"
    )]
    pub runner: Option<String>,
    #[arg(
        long = "windows-runner",
        value_name = "LABEL",
        help = "Override the generated runner label for Windows artifact jobs"
    )]
    pub windows_runner: Option<String>,
    #[arg(
        long = "maintainer-key",
        value_name = "FINGERPRINT",
        help = "OpenPGP key fingerprint to export into keys/maintainers.gpg"
    )]
    pub maintainer_key: Option<String>,
    #[arg(
        long = "maintainers-gpg",
        value_name = "PATH",
        help = "Path to the generated maintainer public keyring"
    )]
    pub maintainers_gpg: Option<Utf8PathBuf>,
    #[arg(
        long = "release-smoke-command",
        value_name = "COMMAND",
        help = "Command to run after signing release artifacts and before publishing"
    )]
    pub release_smoke_command: Option<String>,
    #[arg(long, help = "Verify committed workflow files match generated output")]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds stale files")]
    pub diff: bool,
    #[arg(
        long = "with-nextest",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Use cargo-nextest for test steps; pass `--with-nextest=false` to override project config"
    )]
    pub with_nextest: Option<bool>,
    #[arg(
        long = "with-msrv",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Add an MSRV check using package.rust-version; pass `--with-msrv=false` to override project config"
    )]
    pub with_msrv: Option<bool>,
    #[arg(
        long = "with-audit",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Install and run cargo-audit; pass `--with-audit=false` to override project config"
    )]
    pub with_audit: Option<bool>,
    #[arg(
        long = "with-deny",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Install and run cargo-deny; pass `--with-deny=false` to override project config"
    )]
    pub with_deny: Option<bool>,
    #[arg(
        long = "with-docs",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Build package documentation in CI; pass `--with-docs=false` to override project config"
    )]
    pub with_docs: Option<bool>,
    #[arg(
        long = "with-om-ci",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Replace flake check and cargo dev-shell steps with om ci run (requires --runtime nix)"
    )]
    pub with_om_ci: Option<bool>,
    #[arg(
        long = "om-ci-augment",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Run om ci run alongside the legacy cargo dev-shell steps; implies --with-om-ci"
    )]
    pub om_ci_augment: Option<bool>,
    #[arg(
        long = "omnix-ref",
        value_name = "REF",
        help = "Override the pinned omnix flakeref"
    )]
    pub omnix_ref: Option<String>,
    #[arg(
        long = "with-artifacts",
        num_args = 0..=1,
        default_missing_value = "true",
        action = clap::ArgAction::Set,
        help = "Generate a tagged-release artifact workflow; pass `--with-artifacts=false` to override project config"
    )]
    pub with_artifacts: Option<bool>,
    #[arg(
        long = "with-homebrew",
        help = "Add a Homebrew tap publishing step (forgejo + nix only)"
    )]
    pub with_homebrew: bool,
    #[arg(
        long = "with-chocolatey",
        help = "Validate Chocolatey package publishing configuration"
    )]
    pub with_chocolatey: bool,
    #[arg(
        long = "with-scoop",
        help = "Validate Scoop bucket publishing configuration"
    )]
    pub with_scoop: bool,
    #[command(flatten)]
    pub homebrew: HomebrewOverridesArgs,
    #[command(flatten)]
    pub chocolatey: ChocolateyOverridesArgs,
    #[command(flatten)]
    pub scoop: ScoopOverridesArgs,
}

#[derive(Debug, Args)]
pub struct HomebrewOverridesArgs {
    #[arg(
        long = "homebrew-name",
        value_name = "NAME",
        help = "Homebrew formula name"
    )]
    pub name: Option<String>,
    #[arg(
        long = "homebrew-tap",
        id = "homebrew_tap",
        value_name = "URL",
        help = "Homebrew tap repo URL, e.g. https://codeberg.org/foo/homebrew-bar.git"
    )]
    pub tap: Option<String>,
    #[arg(
        long = "homebrew-binary",
        value_name = "NAME",
        help = "Binary to install via the formula; repeatable"
    )]
    pub binary: Vec<String>,
    #[arg(
        long = "homebrew-description",
        value_name = "TEXT",
        help = "Formula description (<= 80 chars)"
    )]
    pub description: Option<String>,
    #[arg(
        long = "homebrew-homepage",
        value_name = "URL",
        help = "Project homepage URL"
    )]
    pub homepage: Option<String>,
    #[arg(
        long = "homebrew-license",
        value_name = "SPDX",
        help = "SPDX license identifier (defaults to package.license)"
    )]
    pub license: Option<String>,
    #[arg(
        long = "homebrew-download-repo",
        value_name = "OWNER/REPO",
        help = "Codeberg/GitHub owner/repo for release downloads"
    )]
    pub download_repo: Option<String>,
    #[arg(
        long = "homebrew-archive-pattern",
        value_name = "PATTERN",
        help = "Filename pattern for release archives"
    )]
    pub archive_pattern: Option<String>,
    #[arg(
        long = "homebrew-no-platform",
        value_name = "KEY",
        help = "Disable a platform (darwin_arm|darwin_intel|linux_arm|linux_intel); repeatable"
    )]
    pub no_platform: Vec<String>,
}

impl HomebrewOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::HomebrewOverrides<'_> {
        crate::config::HomebrewOverrides {
            name: self.name.as_deref(),
            binaries: Some(&self.binary),
            tap_url: self.tap.as_deref(),
            description: self.description.as_deref(),
            homepage: self.homepage.as_deref(),
            license: self.license.as_deref(),
            download_repo: self.download_repo.as_deref(),
            archive_pattern: self.archive_pattern.as_deref(),
            disabled_platforms: &self.no_platform,
        }
    }
}

#[derive(Debug, Args)]
pub struct ChocolateyOverridesArgs {
    #[arg(
        long = "choco-name",
        id = "choco_name",
        value_name = "NAME",
        help = "Chocolatey package display name"
    )]
    pub name: Option<String>,
    #[arg(
        long = "choco-id",
        id = "choco_id",
        value_name = "ID",
        help = "Chocolatey nuspec package id"
    )]
    pub id: Option<String>,
    #[arg(
        long = "choco-title",
        id = "choco_title",
        value_name = "TEXT",
        help = "Chocolatey nuspec title"
    )]
    pub title: Option<String>,
    #[arg(
        long = "choco-authors",
        id = "choco_authors",
        value_name = "TEXT",
        help = "Chocolatey nuspec authors"
    )]
    pub authors: Option<String>,
    #[arg(
        long = "choco-description",
        id = "choco_description",
        value_name = "TEXT",
        help = "Chocolatey package description"
    )]
    pub description: Option<String>,
    #[arg(
        long = "choco-project-url",
        id = "choco_project_url",
        value_name = "URL",
        help = "Chocolatey project URL"
    )]
    pub project_url: Option<String>,
    #[arg(
        long = "choco-license-url",
        id = "choco_license_url",
        value_name = "URL",
        help = "Chocolatey license URL"
    )]
    pub license_url: Option<String>,
    #[arg(
        long = "choco-tags",
        id = "choco_tags",
        value_name = "TEXT",
        help = "Chocolatey package tags"
    )]
    pub tags: Option<String>,
    #[arg(
        long = "choco-release-notes-url",
        id = "choco_release_notes_url",
        value_name = "URL",
        help = "Chocolatey release notes URL"
    )]
    pub release_notes_url: Option<String>,
    #[arg(
        long = "choco-download-repo",
        id = "choco_download_repo",
        value_name = "OWNER/REPO",
        help = "Codeberg/GitHub owner/repo for Chocolatey release downloads"
    )]
    pub download_repo: Option<String>,
    #[arg(
        long = "choco-archive-pattern",
        id = "choco_archive_pattern",
        value_name = "PATTERN",
        help = "Filename pattern for Chocolatey release archives"
    )]
    pub archive_pattern: Option<String>,
    #[arg(
        long = "choco-push-source",
        id = "choco_push_source",
        value_name = "URL",
        help = "Chocolatey push source URL"
    )]
    pub push_source: Option<String>,
}

impl ChocolateyOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::ChocolateyOverrides<'_> {
        crate::config::ChocolateyOverrides {
            name: self.name.as_deref(),
            id: self.id.as_deref(),
            title: self.title.as_deref(),
            authors: self.authors.as_deref(),
            description: self.description.as_deref(),
            project_url: self.project_url.as_deref(),
            license_url: self.license_url.as_deref(),
            tags: self.tags.as_deref(),
            release_notes_url: self.release_notes_url.as_deref(),
            download_repo: self.download_repo.as_deref(),
            archive_pattern: self.archive_pattern.as_deref(),
            push_source: self.push_source.as_deref(),
        }
    }
}

#[derive(Debug, Args)]
pub struct ScoopOverridesArgs {
    #[arg(
        long = "scoop-name",
        id = "scoop_name",
        value_name = "NAME",
        help = "Scoop manifest name"
    )]
    pub name: Option<String>,
    #[arg(
        long = "scoop-bucket",
        id = "scoop_bucket",
        value_name = "URL",
        help = "Scoop bucket repo URL"
    )]
    pub bucket: Option<String>,
    #[arg(
        long = "scoop-description",
        id = "scoop_description",
        value_name = "TEXT",
        help = "Scoop manifest description"
    )]
    pub description: Option<String>,
    #[arg(
        long = "scoop-homepage",
        id = "scoop_homepage",
        value_name = "URL",
        help = "Scoop manifest homepage"
    )]
    pub homepage: Option<String>,
    #[arg(
        long = "scoop-license",
        id = "scoop_license",
        value_name = "SPDX",
        help = "Scoop manifest license"
    )]
    pub license: Option<String>,
    #[arg(
        long = "scoop-download-repo",
        id = "scoop_download_repo",
        value_name = "OWNER/REPO",
        help = "Codeberg/GitHub owner/repo for Scoop release downloads"
    )]
    pub download_repo: Option<String>,
    #[arg(
        long = "scoop-archive-pattern",
        id = "scoop_archive_pattern",
        value_name = "PATTERN",
        help = "Filename pattern for Scoop release archives"
    )]
    pub archive_pattern: Option<String>,
    #[arg(
        long = "scoop-binary",
        id = "scoop_binary",
        value_name = "NAME",
        help = "Binary to expose in the Scoop manifest; repeatable"
    )]
    pub binary: Vec<String>,
    #[arg(
        long = "scoop-no-arch",
        id = "scoop_no_arch",
        value_name = "KEY",
        help = "Disable an architecture (x64|arm64); repeatable"
    )]
    pub no_arch: Vec<String>,
}

impl ScoopOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::ScoopOverrides<'_> {
        crate::config::ScoopOverrides {
            name: self.name.as_deref(),
            bucket_url: self.bucket.as_deref(),
            description: self.description.as_deref(),
            homepage: self.homepage.as_deref(),
            license: self.license.as_deref(),
            download_repo: self.download_repo.as_deref(),
            archive_pattern: self.archive_pattern.as_deref(),
            binaries: Some(&self.binary),
            disabled_architectures: &self.no_arch,
        }
    }
}

#[derive(Debug, Args)]
pub struct InitHomebrewTapCommand {
    #[arg(
        long,
        value_name = "DIR",
        help = "Path to the tap repo to bootstrap (created if missing)"
    )]
    pub target: Utf8PathBuf,
    #[arg(
        long,
        help = "Verify the existing Formula/<name>.rb matches the rendered template"
    )]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered formula without writing files")]
    pub print: bool,
    #[arg(long, help = "Skip `git init` and remote wiring (formula write only)")]
    pub no_git: bool,
    #[command(flatten)]
    pub homebrew: HomebrewOverridesArgs,
}

#[derive(Debug, Args)]
pub struct HomebrewCommand {
    #[command(subcommand)]
    pub action: HomebrewAction,
}

#[derive(Debug, Subcommand)]
pub enum HomebrewAction {
    #[command(about = "Render the formula to stdout or a file (no sha256)")]
    Render(HomebrewRenderArgs),
    #[command(about = "Render with real sha256 sums and write to a tap repo")]
    Bump(HomebrewBumpArgs),
}

#[derive(Debug, Args)]
pub struct HomebrewRenderArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Version to render (no leading 'v'). Defaults to cargo package.version"
    )]
    pub version: Option<String>,
    #[arg(long, value_name = "PATH", help = "Write to PATH instead of stdout")]
    pub output: Option<Utf8PathBuf>,
    #[command(flatten)]
    pub homebrew: HomebrewOverridesArgs,
}

#[derive(Debug, Args)]
pub struct HomebrewBumpArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Release version (no leading 'v')"
    )]
    pub version: String,
    #[arg(
        long,
        value_name = "DIR",
        help = "Tap repo directory (Formula/<name>.rb written here)"
    )]
    pub tap: Utf8PathBuf,
    #[arg(
        long,
        value_name = "PLATFORM=PATH",
        help = "Per-platform archive path for sha256 computation"
    )]
    pub archive: Vec<String>,
    #[arg(
        long,
        help = "After writing, run git add + commit + push. Requires git credentials"
    )]
    pub push: bool,
    #[arg(
        long,
        value_name = "MESSAGE",
        help = "Commit message (defaults to '<name> <version>')"
    )]
    pub commit_message: Option<String>,
    #[command(flatten)]
    pub homebrew: HomebrewOverridesArgs,
}

#[derive(Debug, Args)]
pub struct InitScoopBucketCommand {
    #[arg(
        long,
        value_name = "DIR",
        help = "Path to the bucket repo to bootstrap (created if missing)"
    )]
    pub target: Utf8PathBuf,
    #[arg(
        long,
        help = "Verify the existing bucket/<name>.json matches the rendered template"
    )]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered manifest without writing files")]
    pub print: bool,
    #[arg(long, help = "Skip `git init` and remote wiring (manifest write only)")]
    pub no_git: bool,
    #[command(flatten)]
    pub scoop: ScoopOverridesArgs,
}

#[derive(Debug, Args)]
pub struct ScoopCommand {
    #[command(subcommand)]
    pub action: ScoopAction,
}

#[derive(Debug, Subcommand)]
pub enum ScoopAction {
    #[command(about = "Render the manifest to stdout or a file with placeholder hashes")]
    Render(ScoopRenderArgs),
    #[command(about = "Render with real sha256 sums and write to a bucket repo")]
    Bump(ScoopBumpArgs),
}

#[derive(Debug, Args)]
pub struct ScoopRenderArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Version to render (no leading 'v'). Defaults to cargo package.version"
    )]
    pub version: Option<String>,
    #[arg(long, value_name = "PATH", help = "Write to PATH instead of stdout")]
    pub output: Option<Utf8PathBuf>,
    #[command(flatten)]
    pub scoop: ScoopOverridesArgs,
}

#[derive(Debug, Args)]
pub struct ScoopBumpArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Release version (no leading 'v')"
    )]
    pub version: String,
    #[arg(
        long,
        value_name = "DIR",
        help = "Bucket repo directory (bucket/<name>.json written here)"
    )]
    pub bucket: Utf8PathBuf,
    #[arg(
        long,
        value_name = "ARCH=PATH",
        help = "Per-architecture archive path for sha256 computation"
    )]
    pub archive: Vec<String>,
    #[arg(
        long,
        help = "After writing, run git add + commit + push. Requires git credentials"
    )]
    pub push: bool,
    #[arg(
        long,
        value_name = "MESSAGE",
        help = "Commit message (defaults to '<name> <version>')"
    )]
    pub commit_message: Option<String>,
    #[command(flatten)]
    pub scoop: ScoopOverridesArgs,
}

#[derive(Debug, Args)]
pub struct InitChocolateyCommand {
    #[arg(
        long,
        value_name = "DIR",
        help = "Path to the Chocolatey package directory to bootstrap"
    )]
    pub target: Utf8PathBuf,
    #[arg(long, help = "Verify the package files match the rendered template")]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered package files without writing files")]
    pub print: bool,
    #[command(flatten)]
    pub chocolatey: ChocolateyOverridesArgs,
}

#[derive(Debug, Args)]
pub struct ChocolateyCommand {
    #[command(subcommand)]
    pub action: ChocolateyAction,
}

#[derive(Debug, Subcommand)]
pub enum ChocolateyAction {
    #[command(about = "Render package files to stdout or a directory (no sha256)")]
    Render(ChocolateyRenderArgs),
    #[command(about = "Render with real sha256 sums and optionally push")]
    Bump(ChocolateyBumpArgs),
}

#[derive(Debug, Args)]
pub struct ChocolateyRenderArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Version to render (no leading 'v'). Defaults to cargo package.version"
    )]
    pub version: Option<String>,
    #[arg(long, value_name = "DIR", help = "Write package files under DIR")]
    pub output_dir: Option<Utf8PathBuf>,
    #[command(flatten)]
    pub chocolatey: ChocolateyOverridesArgs,
}

#[derive(Debug, Args)]
pub struct ChocolateyBumpArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Release version (no leading 'v')"
    )]
    pub version: String,
    #[arg(
        long,
        value_name = "DIR",
        help = "Chocolatey package directory to update"
    )]
    pub package_dir: Utf8PathBuf,
    #[arg(
        long,
        value_name = "ARCH=PATH",
        help = "Per-architecture archive path for sha256 computation (x64 or x86)"
    )]
    pub archive: Vec<String>,
    #[arg(long, help = "After writing, run choco pack and choco push")]
    pub push: bool,
    #[arg(
        long,
        value_name = "URL",
        help = "Chocolatey push source URL (defaults to config or community feed)"
    )]
    pub push_source: Option<String>,
    #[arg(
        long,
        value_name = "ENV",
        help = "Environment variable containing the Chocolatey API key"
    )]
    pub api_key_env: Option<String>,
    #[command(flatten)]
    pub chocolatey: ChocolateyOverridesArgs,
}

#[derive(Debug, Args)]
pub struct AurOverridesArgs {
    #[arg(long = "aur-name", value_name = "NAME", help = "AUR pkgbase")]
    pub name: Option<String>,
    #[arg(
        long = "aur-description",
        value_name = "TEXT",
        help = "Package description (pkgdesc)"
    )]
    pub description: Option<String>,
    #[arg(long = "aur-url", value_name = "URL", help = "Project url")]
    pub url: Option<String>,
    #[arg(
        long = "aur-license",
        value_name = "SPDX",
        help = "SPDX license identifier"
    )]
    pub license: Option<String>,
    #[arg(
        long = "aur-download-repo",
        value_name = "OWNER/REPO",
        help = "Codeberg/GitHub owner/repo for release downloads"
    )]
    pub download_repo: Option<String>,
}

impl AurOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::AurOverrides<'_> {
        crate::config::AurOverrides {
            name: self.name.as_deref(),
            description: self.description.as_deref(),
            url: self.url.as_deref(),
            license: self.license.as_deref(),
            download_repo: self.download_repo.as_deref(),
        }
    }
}

#[derive(Debug, Args)]
pub struct CoprOverridesArgs {
    #[arg(long = "copr-name", value_name = "NAME", help = "RPM package name")]
    pub name: Option<String>,
    #[arg(long = "copr-summary", value_name = "TEXT", help = "RPM Summary")]
    pub summary: Option<String>,
    #[arg(
        long = "copr-description",
        value_name = "TEXT",
        help = "RPM %description prose"
    )]
    pub description: Option<String>,
    #[arg(
        long = "copr-license",
        value_name = "SPDX",
        help = "SPDX license identifier"
    )]
    pub license: Option<String>,
    #[arg(long = "copr-url", value_name = "URL", help = "Project URL")]
    pub url: Option<String>,
    #[arg(
        long = "copr-download-repo",
        value_name = "OWNER/REPO",
        help = "Codeberg/GitHub owner/repo for the source archive"
    )]
    pub download_repo: Option<String>,
    #[arg(
        long = "copr-project",
        value_name = "OWNER/PROJECT",
        help = "COPR project for stable releases"
    )]
    pub project: Option<String>,
}

impl CoprOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::CoprOverrides<'_> {
        crate::config::CoprOverrides {
            name: self.name.as_deref(),
            summary: self.summary.as_deref(),
            description: self.description.as_deref(),
            license: self.license.as_deref(),
            url: self.url.as_deref(),
            download_repo: self.download_repo.as_deref(),
            project: self.project.as_deref(),
        }
    }
}

#[derive(Debug, Args)]
pub struct AptOverridesArgs {
    #[arg(
        long = "apt-repo-url",
        value_name = "URL",
        help = "Git remote of the apt repository"
    )]
    pub repo_url: Option<String>,
    #[arg(
        long = "apt-label",
        value_name = "TEXT",
        help = "reprepro Origin/Label"
    )]
    pub label: Option<String>,
}

impl AptOverridesArgs {
    pub fn as_overrides(&self) -> crate::config::AptOverrides<'_> {
        crate::config::AptOverrides {
            repo_url: self.repo_url.as_deref(),
            label: self.label.as_deref(),
        }
    }
}

#[derive(Debug, Args)]
pub struct InitAurCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package providing metadata fallbacks"
    )]
    pub package: Option<String>,
    #[arg(long, help = "Verify dist/aur/*/PKGBUILD match the rendered template")]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered PKGBUILDs without writing files")]
    pub print: bool,
    #[command(flatten)]
    pub aur: AurOverridesArgs,
}

#[derive(Debug, Args)]
pub struct InitCoprCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package providing metadata fallbacks"
    )]
    pub package: Option<String>,
    #[arg(
        long,
        help = "Verify the spec and .copr/Makefile match the rendered template"
    )]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered files without writing them")]
    pub print: bool,
    #[command(flatten)]
    pub copr: CoprOverridesArgs,
}

#[derive(Debug, Args)]
pub struct InitAptCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package providing metadata fallbacks"
    )]
    pub package: Option<String>,
    #[arg(
        long,
        help = "Verify dist/apt/conf/distributions matches the rendered template"
    )]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered config without writing files")]
    pub print: bool,
    #[command(flatten)]
    pub apt: AptOverridesArgs,
}

#[derive(Debug, Args)]
pub struct InitReleaseCommand {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Workspace package providing metadata fallbacks"
    )]
    pub package: Option<String>,
    #[arg(
        long,
        help = "Verify .forgejo/workflows/release.yml matches generated output"
    )]
    pub check: bool,
    #[arg(long, help = "Show a unified diff when --check finds drift")]
    pub diff: bool,
    #[arg(long, help = "Print the rendered workflow without writing files")]
    pub print: bool,
}

#[derive(Debug, Args)]
pub struct AurCommand {
    #[command(subcommand)]
    pub action: AurAction,
}

#[derive(Debug, Subcommand)]
pub enum AurAction {
    #[command(about = "Render PKGBUILDs to stdout for the given version")]
    Render(AurRenderArgs),
}

#[derive(Debug, Args)]
pub struct AurRenderArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Version to render (no leading 'v')"
    )]
    pub version: Option<String>,
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Metadata-fallback package"
    )]
    pub package: Option<String>,
    #[command(flatten)]
    pub aur: AurOverridesArgs,
}

#[derive(Debug, Args)]
pub struct CoprCommand {
    #[command(subcommand)]
    pub action: CoprAction,
}

#[derive(Debug, Subcommand)]
pub enum CoprAction {
    #[command(about = "Render the RPM spec and .copr/Makefile to stdout")]
    Render(CoprRenderArgs),
}

#[derive(Debug, Args)]
pub struct CoprRenderArgs {
    #[arg(
        long,
        value_name = "VERSION",
        help = "Version to render (no leading 'v')"
    )]
    pub version: Option<String>,
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Metadata-fallback package"
    )]
    pub package: Option<String>,
    #[command(flatten)]
    pub copr: CoprOverridesArgs,
}

#[derive(Debug, Args)]
pub struct AptCommand {
    #[command(subcommand)]
    pub action: AptAction,
}

#[derive(Debug, Subcommand)]
pub enum AptAction {
    #[command(about = "Render the reprepro distributions config to stdout")]
    Render(AptRenderArgs),
}

#[derive(Debug, Args)]
pub struct AptRenderArgs {
    #[arg(
        long = "package",
        value_name = "NAME",
        help = "Metadata-fallback package"
    )]
    pub package: Option<String>,
    #[command(flatten)]
    pub apt: AptOverridesArgs,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum Platform {
    #[value(help = "Forgejo Actions workflows under .forgejo/workflows")]
    Forgejo,
    #[value(help = "GitHub Actions workflows under .github/workflows")]
    Github,
}

impl Platform {
    pub fn workflow_dir(self) -> &'static str {
        match self {
            Self::Forgejo => ".forgejo/workflows",
            Self::Github => ".github/workflows",
        }
    }

    pub fn as_str(self) -> &'static str {
        match self {
            Self::Forgejo => "forgejo",
            Self::Github => "github",
        }
    }
}

#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq, ValueEnum)]
#[serde(rename_all = "lowercase")]
pub enum RuntimeChoice {
    #[value(help = "Use simit's default runtime choice for the target platform")]
    Auto,
    #[value(help = "Use direct cargo commands and Rust toolchain setup")]
    Cargo,
    #[value(help = "Use nix develop and flake checks; requires flake.nix")]
    Nix,
}

#[derive(Debug, Clone, Copy, Deserialize, Serialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum Runtime {
    Cargo,
    Nix,
}

#[derive(Debug, Args)]
pub struct InitFlakeCommand {
    #[arg(
        long,
        value_enum,
        help = "Generated ownership scope: hooks-only manages nix/pre-commit.nix; full also manages flake.nix and formatter wiring"
    )]
    pub scope: Option<FlakeScopeArg>,
    #[arg(long, help = "Verify flake and hook files match generated output")]
    pub check: bool,
    #[arg(
        long,
        help = "Print generated flake and hook files without writing them"
    )]
    pub print: bool,
    #[arg(long, help = "Show a unified diff when --check finds stale files")]
    pub diff: bool,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum FlakeScopeArg {
    HooksOnly,
    Full,
}

#[derive(Debug, Args)]
pub struct ChangelogCommand {
    #[arg(
        long,
        default_value = "CHANGELOG.md",
        value_name = "PATH",
        help = "Path to the changelog file"
    )]
    pub file: Utf8PathBuf,
    #[command(subcommand)]
    pub action: ChangelogAction,
}

#[derive(Debug, Args)]
pub struct HooksCommand {
    #[command(subcommand, help = "Hooks action to run")]
    pub action: HooksAction,
}

#[derive(Debug, Subcommand)]
pub enum HooksAction {
    #[command(about = "Install pre-commit hooks into this repository")]
    Install(HooksInstallCommand),
}

#[derive(Debug, Args)]
pub struct HooksInstallCommand {
    #[arg(long, help = "Verify installed hook wrappers without changing files")]
    pub check: bool,
    #[arg(long, help = "Show a unified diff for stale hook wrappers")]
    pub diff: bool,
    #[arg(
        long,
        help = "Unset rogue repo-local core.hooksPath values that shadow a friendly system dispatcher (no-op otherwise)"
    )]
    pub fix: bool,
}

#[derive(Debug, Args)]
pub struct ConfigCommand {
    #[command(subcommand, help = "User config action to run")]
    pub action: ConfigAction,
}

#[derive(Debug, Args)]
pub struct ProjectsCommand {
    #[command(subcommand, help = "Project registry action to run")]
    pub action: ProjectsAction,
}

#[derive(Debug, Subcommand)]
pub enum ProjectsAction {
    #[command(about = "List registered projects")]
    List(ProjectsListArgs),
    #[command(about = "Show one registered project's feature status")]
    Show(ProjectsShowArgs),
    #[command(about = "Re-run feature detection across registered projects")]
    Scan(ProjectsScanArgs),
    #[command(about = "Discover Rust workspaces under a filesystem subtree")]
    Discover(ProjectsDiscoverArgs),
    #[command(about = "Forget one registered project")]
    Forget(ProjectsForgetArgs),
    #[command(about = "Remove registered projects whose paths no longer exist")]
    Prune(ProjectsPruneArgs),
    #[command(about = "Clear all per-user project registry state")]
    ClearState(ProjectsClearStateArgs),
}

#[derive(Debug, Args)]
pub struct ProjectsListArgs {
    #[arg(
        long = "feature",
        value_name = "NAME[=STATUS]",
        action = clap::ArgAction::Append,
        help = "Filter to projects where feature NAME has STATUS, or any non-absent status"
    )]
    pub features: Vec<String>,
    #[arg(
        long = "include-ephemeral",
        help = "Include ephemeral /tmp project paths in the listing"
    )]
    pub include_ephemeral: bool,
    #[arg(long, help = "Print a machine-readable JSON array")]
    pub json: bool,
    #[arg(
        long,
        conflicts_with = "no_issues",
        help = "Mark projects with drift, hook conflicts, or missing paths and print an issues footer"
    )]
    pub issues: bool,
    #[arg(
        long = "no-issues",
        help = "Suppress issue markers and footer in human output"
    )]
    pub no_issues: bool,
    #[arg(
        long,
        value_enum,
        value_name = "KEY",
        default_value = "last-seen",
        help = "Sort by name, path, last-seen, or first-seen"
    )]
    pub sort: ProjectsSort,
}

#[derive(Debug, Args)]
pub struct ProjectsShowArgs {
    #[arg(
        value_name = "PATH",
        help = "Project path; defaults to the current workspace root"
    )]
    pub path: Option<Utf8PathBuf>,
    #[arg(long, help = "Print machine-readable JSON")]
    pub json: bool,
    #[arg(
        long,
        conflicts_with = "no_issues",
        help = "Print an attention header for drift, hook conflicts, or missing paths"
    )]
    pub issues: bool,
    #[arg(long = "no-issues", help = "Suppress the attention header")]
    pub no_issues: bool,
}

#[derive(Debug, Args)]
pub struct ProjectsScanArgs {
    #[arg(long, help = "Also drop entries whose paths no longer exist")]
    pub prune: bool,
    #[arg(long, help = "Print intended changes without writing the registry")]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct ProjectsDiscoverArgs {
    #[arg(
        value_name = "ROOT",
        help = "Filesystem subtree to walk; defaults to the current directory"
    )]
    pub root: Option<Utf8PathBuf>,
    #[arg(
        long,
        help = "Walk and report discoverable projects without writing the registry"
    )]
    pub dry_run: bool,
    #[arg(long, help = "Print the discovery report as machine-readable JSON")]
    pub json: bool,
    #[arg(
        long,
        value_name = "NAME",
        action = clap::ArgAction::Append,
        help = "Also skip directories with this basename, in addition to built-in skips; may be repeated"
    )]
    pub skip: Vec<String>,
    #[arg(
        long,
        value_name = "N",
        help = "Maximum recursion depth from ROOT; defaults to 8"
    )]
    pub max_depth: Option<usize>,
    #[arg(long, help = "Follow symlinked directories during discovery")]
    pub follow_symlinks: bool,
    #[arg(
        long,
        help = "Register Cargo workspaces even when no simit features are detected"
    )]
    pub include_empty: bool,
}

#[derive(Debug, Args)]
pub struct ProjectsForgetArgs {
    #[arg(value_name = "PATH", help = "Project path to remove from the registry")]
    pub path: Utf8PathBuf,
}

#[derive(Debug, Args)]
pub struct ProjectsPruneArgs {
    #[arg(long, help = "Print stale entries without writing the registry")]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct ProjectsClearStateArgs {
    #[arg(
        long,
        help = "Print the registry path that would be cleared without writing"
    )]
    pub dry_run: bool,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum ProjectsSort {
    Name,
    Path,
    #[value(name = "last-seen")]
    LastSeen,
    #[value(name = "first-seen")]
    FirstSeen,
}

#[derive(Debug, Subcommand)]
pub enum ConfigAction {
    #[command(about = "Print the resolved user config path")]
    Path,
    #[command(about = "Print the normalized user config")]
    Show,
    #[command(about = "Validate the user config")]
    Check,
    #[command(about = "Write a starter user config if one does not exist")]
    Init,
}

#[derive(Debug, Subcommand)]
pub enum ChangelogAction {
    #[command(about = "Create a Keep a Changelog skeleton")]
    Init,
    #[command(about = "Add an entry under [Unreleased]")]
    Add {
        #[arg(value_enum, value_name = "KIND", help = "Entry kind to append")]
        kind: ChangelogEntryKind,
        #[arg(value_name = "TEXT", help = "Entry text to add")]
        text: String,
    },
    #[command(about = "Promote [Unreleased] into a dated release section")]
    Release {
        #[arg(value_name = "VERSION", help = "Release version to create")]
        version: Version,
        #[arg(
            long,
            value_name = "YYYY-MM-DD",
            help = "Override the release date instead of using today in UTC"
        )]
        date: Option<String>,
        #[arg(
            long = "repo-url",
            value_name = "URL",
            help = "Repository URL used for compare links"
        )]
        repo_url: Option<String>,
    },
    #[command(about = "Validate that the file matches simit's Keep a Changelog rules")]
    Check,
    #[command(about = "Print the body of one changelog section")]
    Show {
        #[arg(
            value_name = "VERSION",
            help = "Version to print; omit to show [Unreleased]"
        )]
        version: Option<String>,
    },
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, ValueEnum)]
pub enum ChangelogEntryKind {
    Added,
    Changed,
    Deprecated,
    Removed,
    Fixed,
    Security,
}

#[derive(Debug, Args)]
pub struct CompletionsCommand {
    #[arg(
        value_enum,
        value_name = "SHELL",
        help = "Shell to generate completions for"
    )]
    pub shell: clap_complete::Shell,
}

#[derive(Debug, Args)]
pub struct ManCommand {}