xbp 10.28.0

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
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
//! Package installation module for xbp
//!
//! This module provides functionality to install supported system packages and
//! project-local tooling. Most targets map to curated shell scripts, while
//! some use native cross-platform logic.

use crate::utils::{command_exists, find_xbp_config_upwards};
use colored::Colorize;
use serde_json::Value;
use std::collections::BTreeSet;
use std::env;
use std::ffi::OsStr;
use std::path::{Path, PathBuf};
use std::process::Output;
use tokio::process::Command;
use tracing::{debug, info};
use walkdir::{DirEntry, WalkDir};

const ULTRACITE_MIN_NODE_MAJOR: u64 = 20;
const RAILWAY_MIN_NODE_MAJOR: u64 = 16;
const SUPPORTED_POSTGRES_VERSIONS: &[u8] = &[13, 14, 15, 16, 17, 18];
pub const INSTALL_COMMAND_AFTER_HELP: &str = "\
List installable targets:
  xbp install
  xbp install --list
  xbp install -l
  xbp install ls

Available targets:
  azure-cli      Azure CLI (cross-platform: winget/Linux script)
  cloudflared    Cloudflare Tunnel client via winget, Homebrew, or the Cloudflare apt repo
  grafana        Monitoring and observability platform
  scylladb       High-performance NoSQL database
  nginx          Full NGINX installation with modules
  opencv-rust    OpenCV bindings for Rust
  docker         Container platform
  elixir-erlang  Elixir and Erlang runtime
  postgres       Latest supported PostgreSQL server/meta-package on Linux
  pg-tools       PostgreSQL client tools (`psql`, `pg_dump`, `pg_restore`) on Linux
  postgres13     PostgreSQL 13 server on Linux
  postgres14     PostgreSQL 14 server on Linux
  postgres15     PostgreSQL 15 server on Linux
  postgres16     PostgreSQL 16 server on Linux
  postgres17     PostgreSQL 17 server on Linux
  postgres18     PostgreSQL 18 server on Linux
  pg-tools13     PostgreSQL 13 client tools on Linux
  pg-tools14     PostgreSQL 14 client tools on Linux
  pg-tools15     PostgreSQL 15 client tools on Linux
  pg-tools16     PostgreSQL 16 client tools on Linux
  pg-tools17     PostgreSQL 17 client tools on Linux
  pg-tools18     PostgreSQL 18 client tools on Linux
  python         Python 3 runtime and `python` alias on Linux
  python-pip     pip for Python 3 on Linux, including the `pip` command
  python-deps    Common Python packages (`boto3`, `rembg`, `requests`, `tqdm`) on Linux
  railway        Railway CLI via `npm install -g @railway/cli`
  vercel         Vercel CLI via `pnpm i -g vercel`
  triggerdotdev  Background job framework
  iotop          I/O monitoring tool
  uv             uv Python package manager via Snap on Linux or the official fallback installer
  ultracite      Project-local JS/TS linting setup via `npx ultracite init`
";
const PACKAGE_JSON_SKIP_DIRS: &[&str] = &[
    "node_modules",
    ".git",
    ".next",
    "dist",
    "build",
    "coverage",
    "target",
];

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum InstallTarget {
    AzureCli,
    Cloudflared,
    Grafana,
    Scylladb,
    Nginx,
    OpenCvRust,
    Docker,
    ElixirErlang,
    PostgresDefault,
    PostgresTools,
    PostgresVersion(u8),
    PostgresToolsVersion(u8),
    Python,
    PythonPip,
    PythonDeps,
    Railway,
    Vercel,
    TriggerDotDev,
    Iotop,
    Uv,
    Ultracite,
}

impl InstallTarget {
    fn all() -> Vec<InstallTarget> {
        let mut targets = vec![
            InstallTarget::AzureCli,
            InstallTarget::Cloudflared,
            InstallTarget::Grafana,
            InstallTarget::Nginx,
            InstallTarget::OpenCvRust,
            InstallTarget::Docker,
            InstallTarget::ElixirErlang,
            InstallTarget::PostgresDefault,
            InstallTarget::PostgresTools,
        ];
        targets.extend(
            SUPPORTED_POSTGRES_VERSIONS
                .iter()
                .copied()
                .map(InstallTarget::PostgresVersion),
        );
        targets.extend(
            SUPPORTED_POSTGRES_VERSIONS
                .iter()
                .copied()
                .map(InstallTarget::PostgresToolsVersion),
        );
        targets.extend([
            InstallTarget::Scylladb,
            InstallTarget::Python,
            InstallTarget::PythonPip,
            InstallTarget::PythonDeps,
            InstallTarget::Railway,
            InstallTarget::Vercel,
            InstallTarget::TriggerDotDev,
            InstallTarget::Iotop,
            InstallTarget::Uv,
            InstallTarget::Ultracite,
        ]);
        targets
    }

    fn parse(input: &str) -> Option<Self> {
        let normalized = normalize_install_target(input);

        match normalized.as_str() {
            "azure-cli" => Some(Self::AzureCli),
            "cloudflared" | "cloudflared-cli" | "cloudflare-tunnel" => Some(Self::Cloudflared),
            "grafana" => Some(Self::Grafana),
            "scylladb" | "scylla" => Some(Self::Scylladb),
            "nginx" | "nginx-full" => Some(Self::Nginx),
            "opencv-rust" => Some(Self::OpenCvRust),
            "elixir-erlang" => Some(Self::ElixirErlang),
            "docker" => Some(Self::Docker),
            "postgres" | "postgresql" => Some(Self::PostgresDefault),
            "pg-tools" | "postgres-tools" | "postgresql-tools" | "postgres-client"
            | "postgresql-client" | "pg-client" | "psql" => Some(Self::PostgresTools),
            "python" | "python3" => Some(Self::Python),
            "python-pip" | "python3-pip" | "pip" | "pip3" => Some(Self::PythonPip),
            "python-deps" | "python-packages" => Some(Self::PythonDeps),
            "railway" | "railway-cli" | "@railway/cli" => Some(Self::Railway),
            "vercel" | "vercel-cli" => Some(Self::Vercel),
            "triggerdotdev" | "trigger-dot-dev" => Some(Self::TriggerDotDev),
            "iotop" => Some(Self::Iotop),
            "uv" => Some(Self::Uv),
            "ultracite" => Some(Self::Ultracite),
            _ => parse_postgres_version_target(&normalized),
        }
    }

    fn display_name(self) -> String {
        match self {
            Self::AzureCli => "azure-cli".to_string(),
            Self::Cloudflared => "cloudflared".to_string(),
            Self::Grafana => "grafana".to_string(),
            Self::Scylladb => "scylladb".to_string(),
            Self::Nginx => "nginx".to_string(),
            Self::OpenCvRust => "opencv-rust".to_string(),
            Self::Docker => "docker".to_string(),
            Self::ElixirErlang => "elixir-erlang".to_string(),
            Self::PostgresDefault => "postgres".to_string(),
            Self::PostgresTools => "pg-tools".to_string(),
            Self::PostgresVersion(version) => format!("postgres{}", version),
            Self::PostgresToolsVersion(version) => format!("pg-tools{}", version),
            Self::Python => "python".to_string(),
            Self::PythonPip => "python-pip".to_string(),
            Self::PythonDeps => "python-deps".to_string(),
            Self::Railway => "railway".to_string(),
            Self::Vercel => "vercel".to_string(),
            Self::TriggerDotDev => "triggerdotdev".to_string(),
            Self::Iotop => "iotop".to_string(),
            Self::Uv => "uv".to_string(),
            Self::Ultracite => "ultracite".to_string(),
        }
    }

    fn description(self) -> String {
        match self {
            Self::AzureCli => "Azure CLI (cross-platform: winget/Linux script)".to_string(),
            Self::Cloudflared => {
                "Cloudflare Tunnel client via winget, Homebrew, or the Cloudflare apt repo"
                    .to_string()
            }
            Self::Grafana => "Monitoring and observability platform".to_string(),
            Self::Scylladb => "High-performance NoSQL database".to_string(),
            Self::Nginx => "Full NGINX installation with modules".to_string(),
            Self::OpenCvRust => "OpenCV bindings for Rust".to_string(),
            Self::Docker => "Container platform".to_string(),
            Self::ElixirErlang => "Elixir and Erlang runtime".to_string(),
            Self::PostgresDefault => {
                "Latest supported PostgreSQL server/meta-package on Linux".to_string()
            }
            Self::PostgresTools => {
                "PostgreSQL client tools (`psql`, `pg_dump`, `pg_restore`) on Linux".to_string()
            }
            Self::PostgresVersion(version) => format!("PostgreSQL {} server on Linux", version),
            Self::PostgresToolsVersion(version) => format!(
                "PostgreSQL {} client tools (`psql`, `pg_dump`, `pg_restore`) on Linux",
                version
            ),
            Self::Python => "Python 3 runtime and `python` alias on Linux".to_string(),
            Self::PythonPip => "pip for Python 3 on Linux, including the `pip` command".to_string(),
            Self::PythonDeps => {
                "Common Python packages (`boto3`, `rembg`, `requests`, `tqdm`) on Linux".to_string()
            }
            Self::Railway => "Railway CLI via `npm install -g @railway/cli`".to_string(),
            Self::Vercel => "Vercel CLI via `pnpm i -g vercel`".to_string(),
            Self::TriggerDotDev => "Background job framework".to_string(),
            Self::Iotop => "I/O monitoring tool".to_string(),
            Self::Uv => {
                "uv Python package manager via Snap on Linux or the official fallback installer"
                    .to_string()
            }
            Self::Ultracite => {
                "Project-local JS/TS linting setup via `npx ultracite init`".to_string()
            }
        }
    }

    fn script_name(self) -> Option<String> {
        match self {
            Self::AzureCli | Self::Cloudflared | Self::Railway | Self::Vercel | Self::Ultracite => {
                None
            }
            Self::Grafana => Some("grafana".to_string()),
            Self::Scylladb => Some("scylladb".to_string()),
            Self::Nginx => Some("nginx_full".to_string()),
            Self::OpenCvRust => Some("opencv-rust".to_string()),
            Self::Docker => Some("docker".to_string()),
            Self::ElixirErlang => Some("elixir_erlang".to_string()),
            Self::PostgresDefault => Some("postgres".to_string()),
            Self::PostgresTools => Some("postgres_tools".to_string()),
            Self::PostgresVersion(version) => Some(format!("postgres_{}", version)),
            Self::PostgresToolsVersion(version) => Some(format!("pg_tools_{}", version)),
            Self::Python => Some("python".to_string()),
            Self::PythonPip => Some("python_pip".to_string()),
            Self::PythonDeps => Some("python_deps".to_string()),
            Self::TriggerDotDev => Some("triggerdotdev".to_string()),
            Self::Iotop => Some("iotop".to_string()),
            Self::Uv => Some("uv".to_string()),
        }
    }

    async fn install(self, debug: bool) -> Result<(), String> {
        match self {
            Self::AzureCli => install_azure_cli(debug).await,
            Self::Cloudflared => install_cloudflared_cli(debug).await,
            Self::Railway => install_railway_cli(debug).await,
            Self::Vercel => install_vercel_cli(debug).await,
            Self::Ultracite => install_ultracite(debug).await,
            _ => {
                let script_name = self.script_name().expect("script-backed target");
                let display_name = self.display_name();
                execute_install_script(&script_name, &display_name, debug).await
            }
        }
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum NodePackageManager {
    Pnpm,
    Bun,
    Yarn,
    Npm,
}

impl NodePackageManager {
    fn as_flag(self) -> &'static str {
        match self {
            Self::Pnpm => "pnpm",
            Self::Bun => "bun",
            Self::Yarn => "yarn",
            Self::Npm => "npm",
        }
    }
}

/// Installs a package by name using the corresponding installation script or
/// native implementation.
pub async fn install_package(package_name: &str, debug: bool) -> Result<(), String> {
    if package_name.trim().is_empty() || is_install_listing_request(package_name) {
        print_install_targets_help();
        return Ok(());
    }

    let Some(target) = InstallTarget::parse(package_name) else {
        eprintln!("{} '{}'", "Unknown install target:".red(), package_name);
        println!();
        print_install_targets_help();
        return Err(format!("Package '{}' is not supported", package_name));
    };

    target.install(debug).await
}

pub fn is_install_listing_request(package_name: &str) -> bool {
    matches!(
        normalize_install_target(package_name).as_str(),
        "--help" | "help" | "list" | "ls"
    )
}

pub fn print_install_empty_state() {
    println!("{}", "No install target selected.".bright_yellow().bold());
    println!(
        "{}",
        "Choose one of the supported targets below, or run `xbp install <target>` directly."
            .dimmed()
    );
    println!();
    print_install_targets_help();
}

pub fn print_install_targets_help() {
    list_available_packages();
    println!();
    println!("{}", "Examples:".bright_blue().bold());
    println!("  {}", "xbp install azure-cli".dimmed());
    println!("  {}", "xbp install cloudflared".dimmed());
    println!("  {}", "xbp install docker".dimmed());
    println!("  {}", "xbp install postgres17".dimmed());
    println!("  {}", "xbp install pg-tools".dimmed());
    println!("  {}", "xbp install python-pip".dimmed());
    println!("  {}", "xbp install railway".dimmed());
    println!("  {}", "xbp install vercel".dimmed());
    println!("  {}", "xbp install uv".dimmed());
    println!("  {}", "xbp install nginx".dimmed());
    println!("  {}", "xbp install ultracite".dimmed());
    println!();
    println!(
        "{} Use `xbp install --list`, `xbp install ls`, or `xbp <command> -h` for more detail.",
        "Tip:".bright_yellow().bold()
    );
}

fn list_available_packages() {
    println!("{}", "Available packages:".bright_blue().bold());
    println!();

    for target in InstallTarget::all() {
        println!(
            "  {} - {}",
            target.display_name().cyan(),
            target.description()
        );
    }

    println!();
    println!(
        "{} {}",
        "Usage:".bright_blue(),
        "xbp install <package>".yellow()
    );
    println!(
        "{} {}",
        "Discover:".bright_blue(),
        "Run `xbp install`, `xbp install --list`, or `xbp install ls` to inspect targets.".yellow()
    );
}

fn normalize_install_target(input: &str) -> String {
    input.trim().to_ascii_lowercase().replace('_', "-")
}

fn parse_postgres_version_target(input: &str) -> Option<InstallTarget> {
    parse_supported_version_suffix(input, &["postgres", "postgresql"])
        .map(InstallTarget::PostgresVersion)
        .or_else(|| {
            parse_supported_version_suffix(
                input,
                &[
                    "pg-tools",
                    "postgres-tools",
                    "postgresql-tools",
                    "postgres-client",
                    "postgresql-client",
                    "pg-client",
                    "psql",
                ],
            )
            .map(InstallTarget::PostgresToolsVersion)
        })
}

fn parse_supported_version_suffix(input: &str, prefixes: &[&str]) -> Option<u8> {
    prefixes.iter().find_map(|prefix| {
        let rest = input.strip_prefix(prefix)?;
        let version = rest.strip_prefix('-').unwrap_or(rest);
        if version.is_empty() || !version.chars().all(|ch| ch.is_ascii_digit()) {
            return None;
        }

        let parsed = version.parse::<u8>().ok()?;
        SUPPORTED_POSTGRES_VERSIONS
            .contains(&parsed)
            .then_some(parsed)
    })
}

/// Install Azure CLI natively: winget on Windows, curl|bash on Linux/macOS.
async fn install_azure_cli(_debug: bool) -> Result<(), String> {
    if command_exists("az") {
        info!("{}", "Azure CLI is already installed.".green());
        return Ok(());
    }

    #[cfg(target_os = "windows")]
    {
        if !command_exists("winget") {
            return Err(
                "winget is required. Install it from the Microsoft Store or use Windows 10/11."
                    .to_string(),
            );
        }
        info!("Installing Azure CLI via winget...");
        let output = Command::new("winget")
            .args([
                "install",
                "--exact",
                "--id",
                "Microsoft.AzureCLI",
                "--accept-package-agreements",
                "--accept-source-agreements",
            ])
            .output()
            .await
            .map_err(|e| format!("winget failed: {}", e))?;

        if !output.status.success() {
            let stderr = String::from_utf8_lossy(&output.stderr);
            let stdout = String::from_utf8_lossy(&output.stdout);
            return Err(format!("Azure CLI install failed: {}{}", stdout, stderr));
        }
        info!(
            "{}",
            "Azure CLI installed. Restart your terminal to use 'az'.".green()
        );
        Ok(())
    }

    #[cfg(target_os = "macos")]
    {
        if !command_exists("brew") {
            return Err("Homebrew is required. Install from https://brew.sh/".to_string());
        }
        info!("Installing Azure CLI via Homebrew...");
        let output = Command::new("brew")
            .args(["install", "azure-cli"])
            .output()
            .await
            .map_err(|e| format!("brew install failed: {}", e))?;

        if !output.status.success() {
            let stderr = String::from_utf8_lossy(&output.stderr);
            return Err(format!("Azure CLI install failed: {}", stderr));
        }
        info!("{}", "Azure CLI installed successfully.".green());
        Ok(())
    }

    #[cfg(target_os = "linux")]
    {
        info!("Installing Azure CLI via official script...");
        let script = "curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash";
        let output = Command::new("sh")
            .args(["-c", script])
            .output()
            .await
            .map_err(|e| format!("Azure CLI install failed: {}", e))?;

        if !output.status.success() {
            let stderr = String::from_utf8_lossy(&output.stderr);
            return Err(format!("Azure CLI install failed: {}", stderr));
        }
        info!("{}", "Azure CLI installed successfully.".green());
        Ok(())
    }

    #[cfg(not(any(target_os = "windows", target_os = "linux", target_os = "macos")))]
    {
        Err("Azure CLI install is supported on Windows, Linux, and macOS only.".to_string())
    }
}

async fn install_cloudflared_cli(debug: bool) -> Result<(), String> {
    if command_exists("cloudflared") {
        let output = Command::new("cloudflared")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to check cloudflared version: {}", e))?;

        let version = primary_output_line(&output);
        if output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!("cloudflared is already installed: {}", version).green()
            );
            return Ok(());
        }

        info!("{}", "cloudflared is already installed.".green());
        return Ok(());
    }

    #[cfg(target_os = "windows")]
    {
        if !command_exists("winget") {
            return Err(
                "cloudflared install on Windows requires the `winget` command on PATH.".to_string(),
            );
        }

        let args = vec![
            "install".to_string(),
            "--exact".to_string(),
            "--id".to_string(),
            "Cloudflare.cloudflared".to_string(),
            "--accept-package-agreements".to_string(),
            "--accept-source-agreements".to_string(),
        ];

        if debug {
            debug!("Running cloudflared install: winget {}", args.join(" "));
        }

        let output = Command::new("winget")
            .args(&args)
            .output()
            .await
            .map_err(|e| format!("Failed to execute cloudflared installer: {}", e))?;

        if debug {
            debug!("cloudflared install output: {:?}", output);
        }

        if !output.status.success() {
            return Err(format_command_failure("winget", &args, &output));
        }
    }

    #[cfg(target_os = "macos")]
    {
        if !command_exists("brew") {
            return Err(
                "cloudflared install on macOS requires Homebrew. Install it from https://brew.sh/."
                    .to_string(),
            );
        }

        let args = vec!["install".to_string(), "cloudflared".to_string()];

        if debug {
            debug!("Running cloudflared install: brew {}", args.join(" "));
        }

        let output = Command::new("brew")
            .args(&args)
            .output()
            .await
            .map_err(|e| format!("Failed to execute cloudflared installer: {}", e))?;

        if debug {
            debug!("cloudflared install output: {:?}", output);
        }

        if !output.status.success() {
            return Err(format_command_failure("brew", &args, &output));
        }
    }

    #[cfg(target_os = "linux")]
    {
        if !command_exists("apt-get") {
            return Err(
                "cloudflared install on Linux currently supports Debian/Ubuntu-style hosts with `apt-get`."
                    .to_string(),
            );
        }

        if !command_exists("curl") {
            return Err("cloudflared install on Linux requires `curl` on PATH.".to_string());
        }

        let script = r#"set -euo pipefail
sudo mkdir -p --mode=0755 /usr/share/keyrings
curl -fsSL https://pkg.cloudflare.com/cloudflare-main.gpg | sudo tee /usr/share/keyrings/cloudflare-main.gpg >/dev/null
echo 'deb [signed-by=/usr/share/keyrings/cloudflare-main.gpg] https://pkg.cloudflare.com/cloudflared any main' | sudo tee /etc/apt/sources.list.d/cloudflared.list >/dev/null
sudo apt-get update
sudo apt-get install -y cloudflared"#;

        let args = vec!["-lc".to_string(), script.to_string()];

        if debug {
            debug!(
                "Running cloudflared install via bash -lc with the stable Cloudflare apt repository"
            );
        }

        let output = Command::new("bash")
            .args(&args)
            .output()
            .await
            .map_err(|e| format!("Failed to execute cloudflared installer: {}", e))?;

        if debug {
            debug!("cloudflared install output: {:?}", output);
        }

        if !output.status.success() {
            return Err(format_command_failure("bash", &args, &output));
        }
    }

    #[cfg(not(any(target_os = "windows", target_os = "linux", target_os = "macos")))]
    {
        return Err(
            "cloudflared install is supported on Windows, Linux, and macOS only.".to_string(),
        );
    }

    if command_exists("cloudflared") {
        let version_output = Command::new("cloudflared")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to verify cloudflared installation: {}", e))?;
        let version = primary_output_line(&version_output);
        if version_output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!(
                    "cloudflared installation completed successfully: {}",
                    version
                )
                .green()
            );
            return Ok(());
        }
    }

    info!(
        "{}",
        "cloudflared installation completed successfully.".green()
    );
    info!(
        "{}",
        "If `cloudflared` is not on PATH yet, open a new shell and try `cloudflared --version` again."
            .dimmed()
    );

    Ok(())
}

async fn install_ultracite(debug: bool) -> Result<(), String> {
    let current_dir =
        env::current_dir().map_err(|e| format!("Failed to resolve current directory: {}", e))?;
    let project_dir = resolve_ultracite_project_dir(&current_dir)?;

    ensure_ultracite_prerequisites(debug).await?;

    let package_manager = detect_node_package_manager(&project_dir);
    let frameworks = infer_ultracite_frameworks(&project_dir);
    let args = build_ultracite_init_args(package_manager, &frameworks);

    info!(
        "Initializing Ultracite in project root: {}",
        project_dir.display()
    );
    info!(
        "Using package manager preset: {}",
        package_manager.as_flag()
    );
    if !frameworks.is_empty() {
        info!("Detected frameworks: {}", frameworks.join(", "));
    }

    if debug {
        debug!("Running Ultracite init: npx {}", args.join(" "));
    }

    let output = Command::new("npx")
        .args(&args)
        .current_dir(&project_dir)
        .output()
        .await
        .map_err(|e| format!("Failed to execute Ultracite installer: {}", e))?;

    if debug {
        debug!("Ultracite init output: {:?}", output);
    }

    if !output.status.success() {
        return Err(format_command_failure("npx", &args, &output));
    }

    let stdout = String::from_utf8_lossy(&output.stdout);
    if !stdout.trim().is_empty() {
        info!("{}", stdout.trim());
    }

    info!("{}", "Ultracite initialized successfully.".green());
    info!(
        "{}",
        "Tip: run `npx ultracite doctor` to validate the generated setup.".dimmed()
    );

    Ok(())
}

async fn install_railway_cli(debug: bool) -> Result<(), String> {
    if command_exists("railway") {
        let output = Command::new("railway")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to check Railway CLI version: {}", e))?;

        let version = primary_output_line(&output);
        if output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!("Railway CLI is already installed: {}", version).green()
            );
            return Ok(());
        }

        info!("{}", "Railway CLI is already installed.".green());
        return Ok(());
    }

    ensure_railway_prerequisites(debug).await?;

    let args = vec![
        "install".to_string(),
        "-g".to_string(),
        "@railway/cli".to_string(),
    ];

    if debug {
        debug!("Running Railway CLI install: npm {}", args.join(" "));
    }

    let output = Command::new("npm")
        .args(&args)
        .output()
        .await
        .map_err(|e| format!("Failed to execute Railway CLI installer: {}", e))?;

    if debug {
        debug!("Railway CLI install output: {:?}", output);
    }

    if !output.status.success() {
        return Err(format_command_failure("npm", &args, &output));
    }

    let stdout = String::from_utf8_lossy(&output.stdout);
    if !stdout.trim().is_empty() {
        info!("{}", stdout.trim());
    }

    if command_exists("railway") {
        let version_output = Command::new("railway")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to verify Railway CLI installation: {}", e))?;
        let version = primary_output_line(&version_output);
        if version_output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!(
                    "Railway CLI installation completed successfully: {}",
                    version
                )
                .green()
            );
            return Ok(());
        }
    }

    info!(
        "{}",
        "Railway CLI installation completed successfully.".green()
    );
    info!(
        "{}",
        "If `railway` is not on PATH yet, open a new shell and ensure `~/.railway/bin` is available."
            .dimmed()
    );

    Ok(())
}

async fn install_vercel_cli(debug: bool) -> Result<(), String> {
    if command_exists("vercel") {
        let output = Command::new("vercel")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to check Vercel CLI version: {}", e))?;

        let version = primary_output_line(&output);
        if output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!("Vercel CLI is already installed: {}", version).green()
            );
            return Ok(());
        }

        info!("{}", "Vercel CLI is already installed.".green());
        return Ok(());
    }

    ensure_vercel_prerequisites().await?;

    let args = vec!["i".to_string(), "-g".to_string(), "vercel".to_string()];

    if debug {
        debug!("Running Vercel CLI install: pnpm {}", args.join(" "));
    }

    let output = Command::new("pnpm")
        .args(&args)
        .output()
        .await
        .map_err(|e| format!("Failed to execute Vercel CLI installer: {}", e))?;

    if debug {
        debug!("Vercel CLI install output: {:?}", output);
    }

    if !output.status.success() {
        return Err(format_command_failure("pnpm", &args, &output));
    }

    let stdout = String::from_utf8_lossy(&output.stdout);
    if !stdout.trim().is_empty() {
        info!("{}", stdout.trim());
    }

    if command_exists("vercel") {
        let version_output = Command::new("vercel")
            .arg("--version")
            .output()
            .await
            .map_err(|e| format!("Failed to verify Vercel CLI installation: {}", e))?;
        let version = primary_output_line(&version_output);
        if version_output.status.success() && !version.is_empty() {
            info!(
                "{}",
                format!(
                    "Vercel CLI installation completed successfully: {}",
                    version
                )
                .green()
            );
            return Ok(());
        }
    }

    info!(
        "{}",
        "Vercel CLI installation completed successfully.".green()
    );
    info!(
        "{}",
        "If `vercel` is not on PATH yet, open a new shell and ensure your pnpm global bin directory is available."
            .dimmed()
    );

    Ok(())
}

fn resolve_ultracite_project_dir(current_dir: &Path) -> Result<PathBuf, String> {
    if let Some(found) = find_xbp_config_upwards(current_dir) {
        let project_root = found.project_root;
        if project_root.join("package.json").exists() {
            return Ok(project_root);
        }

        if let Some(package_dir) =
            find_nearest_package_dir_ancestor(current_dir, Some(project_root.as_path()))
        {
            return Ok(package_dir);
        }

        let nested_package_dirs = find_nested_package_dirs(&project_root);
        if nested_package_dirs.len() == 1 {
            return Ok(nested_package_dirs[0].clone());
        }

        if nested_package_dirs.len() > 1 {
            let candidates = nested_package_dirs
                .iter()
                .take(4)
                .map(|path| path.display().to_string())
                .collect::<Vec<_>>()
                .join(", ");
            return Err(format!(
                "Ultracite requires a package.json-backed Node project. The XBP root `{}` has multiple nested package roots ({}). Run `xbp install ultracite` from the package you want to configure.",
                project_root.display(),
                candidates
            ));
        }

        return Err(format!(
            "Ultracite requires a package.json-backed Node project. No package.json was found in the current XBP project root `{}`.",
            project_root.display()
        ));
    }

    if let Some(package_dir) = find_nearest_package_dir_ancestor(current_dir, None) {
        return Ok(package_dir);
    }

    Err(
        "Ultracite requires a JavaScript or TypeScript project with a package.json file."
            .to_string(),
    )
}

fn find_nearest_package_dir_ancestor(start: &Path, stop_at: Option<&Path>) -> Option<PathBuf> {
    for dir in start.ancestors() {
        if dir.join("package.json").exists() {
            return Some(dir.to_path_buf());
        }

        if stop_at == Some(dir) {
            break;
        }
    }

    None
}

fn find_nested_package_dirs(root: &Path) -> Vec<PathBuf> {
    let mut dirs = BTreeSet::new();

    for path in collect_package_json_files(root) {
        if let Some(parent) = path.parent() {
            dirs.insert(parent.to_path_buf());
        }
    }

    dirs.into_iter().collect()
}

fn collect_package_json_files(root: &Path) -> Vec<PathBuf> {
    let mut files = Vec::new();

    for entry in WalkDir::new(root)
        .into_iter()
        .filter_entry(should_walk_package_tree)
    {
        let Ok(entry) = entry else {
            continue;
        };

        if entry.file_type().is_file() && entry.file_name() == OsStr::new("package.json") {
            files.push(entry.into_path());
        }
    }

    files.sort();
    files
}

fn should_walk_package_tree(entry: &DirEntry) -> bool {
    if !entry.file_type().is_dir() {
        return true;
    }

    let name = entry.file_name().to_string_lossy();
    !PACKAGE_JSON_SKIP_DIRS.contains(&name.as_ref())
}

async fn ensure_ultracite_prerequisites(debug: bool) -> Result<(), String> {
    if !command_exists("npx") {
        return Err(
            "Ultracite requires `npx`, but it was not found on PATH. Install Node.js with npm first."
                .to_string(),
        );
    }

    ensure_node_min_major(ULTRACITE_MIN_NODE_MAJOR, "Ultracite", debug).await
}

async fn ensure_railway_prerequisites(debug: bool) -> Result<(), String> {
    if !command_exists("npm") {
        return Err(
            "Railway CLI install via npm requires `npm` on PATH. Install Node.js 16+ first."
                .to_string(),
        );
    }

    ensure_node_min_major(RAILWAY_MIN_NODE_MAJOR, "Railway CLI", debug).await
}

async fn ensure_vercel_prerequisites() -> Result<(), String> {
    if !command_exists("node") {
        return Err("Vercel CLI install via pnpm requires `node` on PATH.".to_string());
    }

    if !command_exists("pnpm") {
        return Err("Vercel CLI install requires `pnpm` on PATH.".to_string());
    }

    Ok(())
}

async fn ensure_node_min_major(min_major: u64, label: &str, debug: bool) -> Result<(), String> {
    if !command_exists("node") {
        return Err(format!(
            "{} requires Node.js {}+ but `node` was not found on PATH.",
            label, min_major
        ));
    }

    let output = Command::new("node")
        .arg("--version")
        .output()
        .await
        .map_err(|e| format!("Failed to check Node.js version: {}", e))?;

    if debug {
        debug!("Node.js version probe output: {:?}", output);
    }

    if !output.status.success() {
        return Err(format_command_failure(
            "node",
            &["--version".to_string()],
            &output,
        ));
    }

    let version = primary_output_line(&output);
    let major = parse_node_major_version(&version).ok_or_else(|| {
        format!(
            "Failed to parse Node.js version from `node --version` output: {}",
            version
        )
    })?;

    if major < min_major {
        return Err(format!(
            "{} requires Node.js {}+ but found {}.",
            label, min_major, version
        ));
    }

    Ok(())
}

fn detect_node_package_manager(project_dir: &Path) -> NodePackageManager {
    let lockfile_order = [
        ("pnpm-lock.yaml", NodePackageManager::Pnpm),
        ("bun.lockb", NodePackageManager::Bun),
        ("bun.lock", NodePackageManager::Bun),
        ("yarn.lock", NodePackageManager::Yarn),
        ("package-lock.json", NodePackageManager::Npm),
        ("npm-shrinkwrap.json", NodePackageManager::Npm),
        ("pnpm-workspace.yaml", NodePackageManager::Pnpm),
    ];

    for (file, package_manager) in lockfile_order {
        if project_dir.join(file).exists() {
            return package_manager;
        }
    }

    detect_package_manager_from_package_json(&project_dir.join("package.json"))
        .unwrap_or(NodePackageManager::Npm)
}

fn detect_package_manager_from_package_json(path: &Path) -> Option<NodePackageManager> {
    let content = std::fs::read_to_string(path).ok()?;
    let json: Value = serde_json::from_str(&content).ok()?;
    let package_manager = json.get("packageManager")?.as_str()?;
    let name = package_manager
        .split('@')
        .next()?
        .trim()
        .to_ascii_lowercase();

    match name.as_str() {
        "pnpm" => Some(NodePackageManager::Pnpm),
        "bun" => Some(NodePackageManager::Bun),
        "yarn" => Some(NodePackageManager::Yarn),
        "npm" => Some(NodePackageManager::Npm),
        _ => None,
    }
}

fn infer_ultracite_frameworks(project_dir: &Path) -> Vec<String> {
    let mut dependency_names = BTreeSet::new();

    for package_json in collect_package_json_files(project_dir) {
        dependency_names.extend(read_dependency_names(&package_json));
    }

    let has_any = |names: &[&str]| names.iter().any(|name| dependency_names.contains(*name));
    let mut frameworks = Vec::new();

    if has_any(&["react", "react-dom", "next"]) {
        frameworks.push("react".to_string());
    }
    if has_any(&["next"]) {
        frameworks.push("next".to_string());
    }
    if has_any(&["solid-js", "solid-start"]) {
        frameworks.push("solid".to_string());
    }
    if has_any(&["vue", "nuxt", "nuxt3"]) {
        frameworks.push("vue".to_string());
    }
    if has_any(&["svelte", "@sveltejs/kit"]) {
        frameworks.push("svelte".to_string());
    }
    if has_any(&["@builder.io/qwik", "@builder.io/qwik-city"]) {
        frameworks.push("qwik".to_string());
    }
    if has_any(&["remix", "@remix-run/dev", "@remix-run/react"]) {
        frameworks.push("remix".to_string());
    }
    if has_any(&[
        "@tanstack/router-plugin",
        "@tanstack/react-router",
        "@tanstack/react-start",
        "@tanstack/start",
    ]) {
        frameworks.push("tanstack".to_string());
    }
    if has_any(&["@angular/core"]) {
        frameworks.push("angular".to_string());
    }
    if has_any(&["astro"]) {
        frameworks.push("astro".to_string());
    }
    if has_any(&["@nestjs/core", "@nestjs/common"]) {
        frameworks.push("nestjs".to_string());
    }

    frameworks
}

fn read_dependency_names(package_json_path: &Path) -> BTreeSet<String> {
    let mut names = BTreeSet::new();
    let Ok(content) = std::fs::read_to_string(package_json_path) else {
        return names;
    };
    let Ok(json) = serde_json::from_str::<Value>(&content) else {
        return names;
    };

    for key in [
        "dependencies",
        "devDependencies",
        "peerDependencies",
        "optionalDependencies",
    ] {
        if let Some(map) = json.get(key).and_then(Value::as_object) {
            names.extend(map.keys().cloned());
        }
    }

    names
}

fn build_ultracite_init_args(
    package_manager: NodePackageManager,
    frameworks: &[String],
) -> Vec<String> {
    let mut args = vec![
        "--yes".to_string(),
        "ultracite".to_string(),
        "init".to_string(),
        "--quiet".to_string(),
        "--linter".to_string(),
        "biome".to_string(),
        "--pm".to_string(),
        package_manager.as_flag().to_string(),
    ];

    if !frameworks.is_empty() {
        args.push("--frameworks".to_string());
        args.extend(frameworks.iter().cloned());
    }

    args
}

fn parse_node_major_version(version: &str) -> Option<u64> {
    version
        .trim()
        .trim_start_matches('v')
        .split('.')
        .next()?
        .parse()
        .ok()
}

fn primary_output_line(output: &Output) -> String {
    let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
    if !stdout.is_empty() {
        return stdout;
    }

    String::from_utf8_lossy(&output.stderr).trim().to_string()
}

fn format_command_failure(program: &str, args: &[String], output: &Output) -> String {
    let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
    let stderr = String::from_utf8_lossy(&output.stderr).trim().to_string();
    let details = match (stdout.is_empty(), stderr.is_empty()) {
        (false, false) => format!("stdout: {}\nstderr: {}", stdout, stderr),
        (false, true) => format!("stdout: {}", stdout),
        (true, false) => format!("stderr: {}", stderr),
        (true, true) => "no command output was captured".to_string(),
    };

    format!(
        "Command failed: {} {}\n{}",
        program,
        args.join(" "),
        details
    )
}

/// Executes the installation script for a specific package.
async fn execute_install_script(
    script_name: &str,
    display_name: &str,
    debug: bool,
) -> Result<(), String> {
    let script_path = format!("./package_install_scripts/{}.sh", script_name);
    let script_pathbuf = PathBuf::from(&script_path);

    if debug {
        debug!("Looking for install script at: {}", script_path);
    }

    if !script_pathbuf.exists() {
        return Err(format!("Install script not found: {}", script_path));
    }

    if debug {
        debug!("Making script executable: {}", script_path);
    }

    let chmod_output = Command::new("chmod")
        .arg("+x")
        .arg(&script_path)
        .output()
        .await
        .map_err(|e| format!("Failed to execute chmod command: {}", e))?;

    if !chmod_output.status.success() {
        return Err(format!(
            "Failed to make script executable: {}",
            String::from_utf8_lossy(&chmod_output.stderr)
        ));
    }

    if debug {
        debug!("Executing install script: {}", script_path);
    }

    let script_output = Command::new("bash")
        .arg(&script_path)
        .output()
        .await
        .map_err(|e| format!("Failed to execute install script: {}", e))?;

    if debug {
        debug!("Script output: {:?}", script_output);
    }

    if !script_output.status.success() {
        return Err(format!(
            "Install script failed: {}",
            String::from_utf8_lossy(&script_output.stderr)
        ));
    }

    let stdout = String::from_utf8_lossy(&script_output.stdout);
    if !stdout.trim().is_empty() {
        info!("{}", stdout);
    }

    info!("{} installation completed successfully!", display_name);

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json::json;
    use std::fs;
    use uuid::Uuid;

    fn temp_dir(label: &str) -> PathBuf {
        let dir = env::temp_dir().join(format!("xbp-install-{}-{}", label, Uuid::new_v4()));
        fs::create_dir_all(&dir).expect("create temp dir");
        dir
    }

    fn write_json(path: &Path, value: Value) {
        if let Some(parent) = path.parent() {
            fs::create_dir_all(parent).expect("create parent");
        }
        fs::write(
            path,
            serde_json::to_string_pretty(&value).expect("serialize json"),
        )
        .expect("write json");
    }

    #[test]
    fn install_target_parser_accepts_documented_aliases() {
        assert_eq!(InstallTarget::parse("nginx"), Some(InstallTarget::Nginx));
        assert_eq!(
            InstallTarget::parse("nginx_full"),
            Some(InstallTarget::Nginx)
        );
        assert_eq!(
            InstallTarget::parse("elixir_erlang"),
            Some(InstallTarget::ElixirErlang)
        );
        assert_eq!(
            InstallTarget::parse("postgresql"),
            Some(InstallTarget::PostgresDefault)
        );
        assert_eq!(
            InstallTarget::parse("postgres-17"),
            Some(InstallTarget::PostgresVersion(17))
        );
        assert_eq!(
            InstallTarget::parse("postgresql18"),
            Some(InstallTarget::PostgresVersion(18))
        );
        assert_eq!(
            InstallTarget::parse("pg-tools-17"),
            Some(InstallTarget::PostgresToolsVersion(17))
        );
        assert_eq!(
            InstallTarget::parse("psql16"),
            Some(InstallTarget::PostgresToolsVersion(16))
        );
        assert_eq!(InstallTarget::parse("python3"), Some(InstallTarget::Python));
        assert_eq!(InstallTarget::parse("pip"), Some(InstallTarget::PythonPip));
        assert_eq!(
            InstallTarget::parse("python-packages"),
            Some(InstallTarget::PythonDeps)
        );
        assert_eq!(
            InstallTarget::parse("railway-cli"),
            Some(InstallTarget::Railway)
        );
        assert_eq!(
            InstallTarget::parse("cloudflared-cli"),
            Some(InstallTarget::Cloudflared)
        );
        assert_eq!(
            InstallTarget::parse("cloudflare-tunnel"),
            Some(InstallTarget::Cloudflared)
        );
        assert_eq!(
            InstallTarget::parse("@railway/cli"),
            Some(InstallTarget::Railway)
        );
        assert_eq!(
            InstallTarget::parse("vercel-cli"),
            Some(InstallTarget::Vercel)
        );
        assert_eq!(
            InstallTarget::parse("trigger-dot-dev"),
            Some(InstallTarget::TriggerDotDev)
        );
        assert_eq!(
            InstallTarget::parse("scylla"),
            Some(InstallTarget::Scylladb)
        );
        assert_eq!(InstallTarget::parse("uv"), Some(InstallTarget::Uv));
        assert_eq!(
            InstallTarget::parse("ultracite"),
            Some(InstallTarget::Ultracite)
        );
    }

    #[test]
    fn install_listing_request_aliases_are_recognized() {
        assert!(is_install_listing_request("help"));
        assert!(is_install_listing_request("--help"));
        assert!(is_install_listing_request("list"));
        assert!(is_install_listing_request("ls"));
        assert!(!is_install_listing_request("docker"));
    }

    #[test]
    fn ultracite_project_resolution_prefers_xbp_root_package_json() {
        let dir = temp_dir("xbp-root-package");
        let current_dir = dir.join("apps").join("web").join("src");
        fs::create_dir_all(&current_dir).expect("create nested dir");
        fs::create_dir_all(dir.join(".xbp")).expect("create xbp dir");
        fs::write(dir.join(".xbp").join("xbp.yaml"), "services: []\n").expect("write xbp yaml");
        write_json(&dir.join("package.json"), json!({ "name": "root-app" }));
        write_json(
            &dir.join("apps").join("web").join("package.json"),
            json!({ "name": "nested-app" }),
        );

        let resolved = resolve_ultracite_project_dir(&current_dir).expect("resolve project dir");
        assert_eq!(resolved, dir);

        let _ = fs::remove_dir_all(&resolved);
    }

    #[test]
    fn ultracite_project_resolution_uses_single_nested_package_when_needed() {
        let dir = temp_dir("xbp-single-nested");
        fs::create_dir_all(dir.join(".xbp")).expect("create xbp dir");
        fs::write(dir.join(".xbp").join("xbp.yaml"), "services: []\n").expect("write xbp yaml");
        write_json(
            &dir.join("apps").join("web").join("package.json"),
            json!({ "name": "web-app" }),
        );

        let resolved = resolve_ultracite_project_dir(&dir).expect("resolve nested package dir");
        assert_eq!(resolved, dir.join("apps").join("web"));

        let _ = fs::remove_dir_all(&dir);
    }

    #[test]
    fn package_manager_detection_prefers_lockfiles() {
        let dir = temp_dir("pm-detection");
        write_json(
            &dir.join("package.json"),
            json!({ "name": "app", "packageManager": "npm@10.0.0" }),
        );
        fs::write(dir.join("pnpm-lock.yaml"), "lockfileVersion: '9.0'\n").expect("write lock");

        assert_eq!(detect_node_package_manager(&dir), NodePackageManager::Pnpm);

        let _ = fs::remove_dir_all(&dir);
    }

    #[test]
    fn framework_inference_scans_workspace_package_json_files() {
        let dir = temp_dir("framework-detection");
        write_json(
            &dir.join("package.json"),
            json!({
                "name": "workspace",
                "workspaces": ["apps/*", "packages/*"]
            }),
        );
        write_json(
            &dir.join("apps").join("web").join("package.json"),
            json!({
                "name": "web",
                "dependencies": {
                    "next": "15.0.0"
                }
            }),
        );
        write_json(
            &dir.join("packages").join("api").join("package.json"),
            json!({
                "name": "api",
                "dependencies": {
                    "@nestjs/core": "11.0.0"
                }
            }),
        );

        let frameworks = infer_ultracite_frameworks(&dir);
        assert_eq!(
            frameworks,
            vec![
                "react".to_string(),
                "next".to_string(),
                "nestjs".to_string()
            ]
        );

        let _ = fs::remove_dir_all(&dir);
    }

    #[test]
    fn ultracite_init_args_are_non_interactive_and_biome_default() {
        let args = build_ultracite_init_args(
            NodePackageManager::Pnpm,
            &["react".to_string(), "next".to_string()],
        );

        assert_eq!(
            args,
            vec![
                "--yes".to_string(),
                "ultracite".to_string(),
                "init".to_string(),
                "--quiet".to_string(),
                "--linter".to_string(),
                "biome".to_string(),
                "--pm".to_string(),
                "pnpm".to_string(),
                "--frameworks".to_string(),
                "react".to_string(),
                "next".to_string(),
            ]
        );
    }

    #[test]
    fn node_major_version_parser_handles_v_prefix() {
        assert_eq!(parse_node_major_version("v22.14.0"), Some(22));
        assert_eq!(parse_node_major_version("20.11.1"), Some(20));
        assert_eq!(parse_node_major_version("not-a-version"), None);
    }
}