railwayapp 5.8.0

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
use std::collections::BTreeMap;
use std::str::FromStr;
use std::time::Duration;

use anyhow::{Result, anyhow, bail};
use clap::Parser;
use is_terminal::IsTerminal;

use crate::client::{GQLClient, post_graphql};
use crate::commands::ssh::{
    DurableResume, PortForward, ensure_ssh_key, run_native_ssh, run_native_ssh_forward, tel,
};
use crate::config::{Configs, StoredSandbox, StoredSandboxTemplate};
use crate::controllers::environment::get_matched_environment;
use crate::controllers::project::get_project;
use crate::controllers::sandbox_exec::{self, ExecOutcome};
use crate::controllers::variables::Variable;
use crate::gql::{mutations, queries};
use crate::util::progress::{create_shimmer_spinner, fail_spinner};
use crate::util::prompt::{
    prompt_confirm_with_default_with_cancel, prompt_options, prompt_options_skippable,
};
use crate::util::shell::shell_join;

/// Manage ephemeral sandboxes
#[derive(Parser)]
#[clap(
    after_help = "Examples:\n\n  railway sandbox create            # create + remember it as active\n  railway sandbox create --variable FOO=bar,DB_URL=postgres.DATABASE_URL\n  railway sandbox create --env-file .env\n  railway sandbox template build --name dev -c 'npm i -g pnpm' --wait\n  railway sandbox create --template dev   # boot from the pre-built snapshot\n  railway sandbox list              # list sandboxes in the environment\n  railway sandbox ssh               # connect to the active (last) sandbox\n  railway sandbox ssh --id <id>     # connect to a specific sandbox\n  railway sandbox exec --id <id> -- ls -la\n  railway sandbox exec --detach -- npm run build   # leave it running, prints a session name\n  railway sandbox exec --session <name>            # reattach to a detached/disconnected command\n  railway sandbox forward 3000      # localhost:3000 → port 3000 in the active sandbox\n  railway sandbox forward 8080:3000 # localhost:8080 → port 3000 (explicit local port)\n  railway sandbox forward 3000 5432 # several ports over one connection\n  railway sandbox fork              # fork the active sandbox; the fork becomes active\n  railway sandbox fork <id> --variable FOO=bar\n  railway sandbox destroy --id <id>\n\nNote: requires the PROJECT_SANDBOXES feature to be enabled."
)]
pub struct Args {
    #[clap(subcommand)]
    command: Commands,

    /// Environment name or ID (defaults to the linked environment)
    #[clap(long, short, global = true)]
    environment: Option<String>,

    /// Project ID (defaults to the linked project)
    #[clap(long, short, global = true)]
    project: Option<String>,
}

#[derive(Parser)]
enum Commands {
    /// Create a sandbox and remember it as the active sandbox
    #[clap(visible_alias = "new")]
    Create(CreateArgs),

    /// Fork an existing sandbox into a new one and make it active
    Fork(ForkArgs),

    /// Manage sandbox templates (pre-built filesystem snapshots)
    Template(TemplateArgs),

    /// List sandboxes in the environment
    #[clap(visible_alias = "ls")]
    List(ListArgs),

    /// Connect to a sandbox over SSH (defaults to the active sandbox)
    #[clap(visible_alias = "connect")]
    Ssh(SshArgs),

    /// Run a single command inside a sandbox (defaults to the active sandbox)
    Exec(ExecArgs),

    /// Forward local ports into a sandbox (defaults to the active sandbox)
    #[clap(visible_alias = "port-forward", visible_alias = "fwd")]
    Forward(ForwardArgs),

    /// Destroy a sandbox (defaults to the active sandbox)
    #[clap(visible_alias = "rm", visible_alias = "delete")]
    Destroy(DestroyArgs),
}

#[derive(Parser)]
struct CreateArgs {
    /// Minutes the sandbox may sit idle before it is auto-destroyed
    #[clap(long)]
    idle_timeout_minutes: Option<i64>,

    /// Set a variable on the sandbox (repeatable, comma-separable). Values may
    /// reference other variables — `DB_URL=postgres.DATABASE_URL` or the full
    /// `${{postgres.DATABASE_URL}}` form — resolved server-side at create time
    #[clap(long = "variable", value_name = "KEY=VALUE[,KEY=VALUE...]")]
    variables: Vec<String>,

    /// Load variables from a .env file (repeatable). `--variable` flags
    /// override file entries with the same key
    #[clap(long = "env-file", value_name = "PATH")]
    env_files: Vec<std::path::PathBuf>,

    /// Create from a built template, by local name or template id (see
    /// `railway sandbox template build`)
    #[clap(long, value_name = "NAME_OR_ID")]
    template: Option<String>,

    /// Join the environment's private network (default: isolated, public
    /// egress only). Needed to reach internal hosts like
    /// `postgres.railway.internal`
    #[clap(long)]
    private_network: bool,

    /// Output the created sandbox as JSON
    #[clap(long)]
    json: bool,
}

#[derive(Parser)]
struct TemplateArgs {
    #[clap(subcommand)]
    command: TemplateCommands,
}

#[derive(Parser)]
enum TemplateCommands {
    /// Build a template from shell instructions. Templates are
    /// content-addressed and cached server-side (~7 days), so re-running the
    /// same build is an instant cache hit
    #[clap(visible_alias = "create", visible_alias = "new")]
    Build(TemplateBuildArgs),

    /// Show the build status of a template
    Status(TemplateStatusArgs),

    /// List templates this CLI has built
    #[clap(visible_alias = "ls")]
    List(TemplateListArgs),
}

#[derive(Parser)]
struct TemplateBuildArgs {
    /// Shell instruction to run while building (repeatable, runs in order;
    /// each step must exit 0 within 10 minutes)
    #[clap(
        short = 'c',
        long = "command",
        value_name = "SHELL_COMMAND",
        required = true
    )]
    commands: Vec<String>,

    /// Local name for the template, usable with `railway sandbox create
    /// --template <name>`
    #[clap(long)]
    name: Option<String>,

    /// Base image digest to build on (defaults to the standard sandbox image)
    #[clap(long, value_name = "DIGEST")]
    base_image_digest: Option<String>,

    /// Wait for the build to finish (polls until READY or FAILED)
    #[clap(long)]
    wait: bool,

    /// Output as JSON
    #[clap(long)]
    json: bool,
}

#[derive(Parser)]
struct TemplateStatusArgs {
    /// Template id or local name
    #[clap(value_name = "ID_OR_NAME")]
    template: String,

    /// Output as JSON
    #[clap(long)]
    json: bool,
}

#[derive(Parser)]
struct TemplateListArgs {
    /// Output as JSON
    #[clap(long)]
    json: bool,
}

/// Fork has no trailing command, so a positional id is unambiguous; `--id` is
/// also accepted. Omitted → the active sandbox is the fork source.
#[derive(Parser)]
struct ForkArgs {
    /// Source sandbox ID to fork (defaults to the active sandbox)
    #[clap(value_name = "ID")]
    id_positional: Option<String>,

    /// Source sandbox ID (alternative to the positional argument)
    #[clap(long = "id", value_name = "ID")]
    id: Option<String>,

    /// Minutes the new sandbox may sit idle before it is auto-destroyed
    #[clap(long)]
    idle_timeout_minutes: Option<i64>,

    /// Set a variable on the fork (repeatable, comma-separable). The fork does
    /// not inherit the source's variables; values may reference other
    /// variables — `DB_URL=postgres.DATABASE_URL` or the full
    /// `${{postgres.DATABASE_URL}}` form — resolved server-side at fork time
    #[clap(long = "variable", value_name = "KEY=VALUE[,KEY=VALUE...]")]
    variables: Vec<String>,

    /// Load variables from a .env file (repeatable). `--variable` flags
    /// override file entries with the same key
    #[clap(long = "env-file", value_name = "PATH")]
    env_files: Vec<std::path::PathBuf>,

    /// Join the environment's private network (default: isolated, public
    /// egress only). The fork does not inherit the source's network mode
    #[clap(long)]
    private_network: bool,

    /// Output the created sandbox as JSON
    #[clap(long)]
    json: bool,
}

impl ForkArgs {
    fn explicit_id(&self) -> Option<String> {
        self.id.clone().or_else(|| self.id_positional.clone())
    }
}

#[derive(Parser)]
struct ListArgs {
    /// Output as JSON
    #[clap(long)]
    json: bool,

    /// Include destroyed sandboxes (hidden by default)
    #[clap(long)]
    all: bool,
}

/// `railway sandbox ssh [--id <id>] [-- command...]`. The id is a flag (not a
/// positional) so it's unambiguous against the trailing command; omitted → the
/// active sandbox.
#[derive(Parser)]
struct SshArgs {
    /// Sandbox ID to connect to (defaults to the active sandbox)
    #[clap(long = "id", value_name = "ID")]
    id: Option<String>,

    /// Path to an identity (private key) file, like `ssh -i`
    #[clap(short = 'i', long = "identity-file", value_name = "PATH")]
    identity_file: Option<std::path::PathBuf>,

    /// Resume a durable session by name (the relay announces the name on
    /// connect: "Railway durable session: <name>")
    #[clap(long, value_name = "NAME")]
    session: Option<String>,

    /// When resuming, continue from the last-read position instead of
    /// replaying the retained scrollback
    #[clap(long, requires = "session")]
    resume_from_last_read: bool,

    /// Command to run instead of an interactive shell
    #[clap(trailing_var_arg = true)]
    command: Vec<String>,
}

#[derive(Parser)]
struct ExecArgs {
    /// Sandbox ID to run in (defaults to the active sandbox)
    #[clap(long = "id", value_name = "ID")]
    id: Option<String>,

    /// Client-side deadline in seconds; on expiry the command is terminated
    /// and the CLI exits 124
    #[clap(long)]
    timeout: Option<i64>,

    /// Reattach to a durable session by name (a command is then optional)
    #[clap(long, value_name = "NAME", conflicts_with = "detach")]
    session: Option<String>,

    /// When reattaching, resume from the last-read position instead of
    /// replaying the retained output
    #[clap(long, requires = "session")]
    resume_from_last_read: bool,

    /// Start the command, print its durable session name to stdout, and exit
    /// while it keeps running (reattach with --session)
    #[clap(long)]
    detach: bool,

    /// Command to run (everything after `--`; optional with --session).
    /// A single argument runs as a shell command; multiple arguments run
    /// as argv with each argument quoted intact
    #[clap(trailing_var_arg = true)]
    command: Vec<String>,
}

/// `railway sandbox forward 3000 5432` / `railway sandbox forward 8080:3000`.
/// Ports are positional so the common case stays short; `--id` selects a
/// sandbox other than the active one.
#[derive(Parser)]
struct ForwardArgs {
    /// Ports to forward: `REMOTE` (same port locally) or `LOCAL:REMOTE`
    #[clap(value_name = "[LOCAL:]REMOTE", required = true)]
    ports: Vec<String>,

    /// Sandbox ID to forward into (defaults to the active sandbox)
    #[clap(long = "id", value_name = "ID")]
    id: Option<String>,

    /// Path to an identity (private key) file, like `ssh -i`
    #[clap(short = 'i', long = "identity-file", value_name = "PATH")]
    identity_file: Option<std::path::PathBuf>,

    /// Fail if a requested local port is busy instead of picking a nearby
    /// free one
    #[clap(long)]
    strict: bool,
}

/// Destroy has no trailing command, so a positional id is unambiguous; `--id`
/// is also accepted. Omitted → the active sandbox.
#[derive(Parser)]
struct DestroyArgs {
    /// Sandbox ID to destroy (defaults to the active sandbox)
    #[clap(value_name = "ID")]
    id_positional: Option<String>,

    /// Sandbox ID (alternative to the positional argument)
    #[clap(long = "id", value_name = "ID")]
    id: Option<String>,
}

impl DestroyArgs {
    fn explicit_id(&self) -> Option<String> {
        self.id.clone().or_else(|| self.id_positional.clone())
    }
}

pub async fn command(args: Args) -> Result<()> {
    use colored::Colorize;
    eprintln!(
        "{}",
        "Warning: Railway sandboxes are experimental and APIs may change or break during testing."
            .yellow()
    );

    let mut configs = Configs::new()?;
    let client = GQLClient::new_authorized(&configs)?;
    let project = args.project;
    let environment = args.environment;

    match args.command {
        Commands::Create(sub) => create(&mut configs, &client, project, environment, sub).await,
        Commands::Fork(sub) => fork(&mut configs, &client, project, environment, sub).await,
        Commands::Template(sub) => template(&mut configs, &client, project, environment, sub).await,
        Commands::List(sub) => list(&mut configs, &client, project, environment, sub).await,
        Commands::Ssh(sub) => ssh(&mut configs, &client, project, environment, sub).await,
        Commands::Exec(sub) => exec(&mut configs, &client, project, environment, sub).await,
        Commands::Forward(sub) => forward(&mut configs, &client, project, environment, sub).await,
        Commands::Destroy(sub) => destroy(&mut configs, &client, project, environment, sub).await,
    }
}

/// A selectable `{id, name}` shown by name in interactive pickers.
struct Choice {
    id: String,
    name: String,
}

impl std::fmt::Display for Choice {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.name)
    }
}

/// Resolve `(project_id, environment_id)` for create/list. Precedence:
/// explicit `--project`/`--environment` flags → the linked project/environment
/// → an interactive picker (when attached to a TTY) → a helpful error in
/// non-interactive contexts.
async fn resolve_project_and_env(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
) -> Result<(String, String)> {
    let interactive = std::io::stdin().is_terminal() && std::io::stdout().is_terminal();

    // The linked project only matters when a flag is missing. Swallow its
    // errors (no link, or the RAILWAY_ENVIRONMENT_ID-without-PROJECT_ID guard)
    // and fall back to prompting when interactive.
    let linked = if project.is_none() || environment.is_none() {
        configs.get_linked_project().await.ok()
    } else {
        None
    };

    // No project from a flag or the link: run the full workspace → project →
    // environment picker, which returns both ids.
    let project_id = match project.or_else(|| linked.as_ref().map(|l| l.project.clone())) {
        Some(id) => id,
        None if interactive => return prompt_workspace_project_env(client, configs).await,
        None => {
            bail!("No project selected. Pass --project and --environment, or run `railway link`.")
        }
    };

    let project_obj = get_project(client, configs, project_id).await?;

    let environment_id = if let Some(env) = environment {
        get_matched_environment(&project_obj, env)?.id
    } else if let Some(env_id) = linked
        .as_ref()
        .filter(|l| l.project == project_obj.id)
        .and_then(|l| l.environment.clone())
    {
        get_matched_environment(&project_obj, env_id)?.id
    } else if interactive {
        prompt_environment(&project_obj)?
    } else {
        bail!("No environment selected. Pass --environment, or run `railway link`.");
    };

    Ok((project_obj.id, environment_id))
}

/// Full interactive picker: workspace → project → environment. `Esc` steps back
/// to the previous selection (`Esc` at the workspace level cancels). Returns
/// `(project_id, environment_id)`. Only runs when the directory has no link,
/// so after a selection it offers to save it as the link (declining just
/// proceeds without one). Uses the OAuth-safe `UserProjects` listing (what
/// `railway list` uses) — the `projects(workspaceId:)` root field is not
/// authorized for plain user tokens.
async fn prompt_workspace_project_env(
    client: &reqwest::Client,
    configs: &mut Configs,
) -> Result<(String, String)> {
    let workspaces = crate::workspace::workspaces_with_client(client, configs).await?;
    if workspaces.is_empty() {
        bail!("No workspaces found. Create a project at https://railway.com/new");
    }

    // Workspace level. Esc here cancels the whole operation.
    loop {
        let ws_choices: Vec<Choice> = workspaces
            .iter()
            .map(|w| Choice {
                id: w.id().to_string(),
                name: w.name().to_string(),
            })
            .collect();
        let ws_id = match prompt_options_skippable("Select a workspace", ws_choices)? {
            Some(choice) => choice.id,
            None => bail!("Cancelled."),
        };
        let workspace = workspaces
            .iter()
            .find(|w| w.id() == ws_id)
            .expect("selected workspace exists");
        let projects = workspace.projects();
        if projects.is_empty() {
            eprintln!("That workspace has no projects.");
            continue; // back to workspace selection
        }

        // Project level. Esc steps back to workspace selection.
        'project: loop {
            let proj_choices: Vec<Choice> = projects
                .iter()
                .map(|p| Choice {
                    id: p.id().to_string(),
                    name: p.name().to_string(),
                })
                .collect();
            let project_id = match prompt_options_skippable("Select a project", proj_choices)? {
                Some(choice) => choice.id,
                None => break 'project,
            };

            let project_obj = get_project(client, configs, project_id).await?;
            let env_choices: Vec<Choice> = project_obj
                .environments
                .edges
                .iter()
                .filter(|e| e.node.can_access)
                .map(|e| Choice {
                    id: e.node.id.clone(),
                    name: e.node.name.clone(),
                })
                .collect();
            if env_choices.is_empty() {
                eprintln!("That project has no accessible environments.");
                continue 'project;
            }

            // Environment level. Esc steps back to project selection.
            match prompt_options_skippable("Select an environment", env_choices)? {
                Some(choice) => {
                    offer_to_link(configs, &project_obj.id, &project_obj.name, &choice)?;
                    return Ok((project_obj.id, choice.id));
                }
                None => continue 'project,
            }
        }
    }
}

/// Offer to remember a picker selection as the directory's linked
/// project/environment, so future commands (sandbox and otherwise) skip the
/// prompts. Esc or "no" proceeds without linking.
fn offer_to_link(
    configs: &mut Configs,
    project_id: &str,
    project_name: &str,
    environment: &Choice,
) -> Result<()> {
    let confirmed = prompt_confirm_with_default_with_cancel(
        &format!(
            "Link this directory to {project_name} ({})?",
            environment.name
        ),
        true,
    )?
    .unwrap_or(false);
    if !confirmed {
        return Ok(());
    }
    configs.link_project(
        project_id.to_string(),
        Some(project_name.to_string()),
        environment.id.clone(),
        Some(environment.name.clone()),
    )?;
    configs.write()?;
    eprintln!(
        "Linked to {project_name} ({}). Run `railway unlink` to undo.",
        environment.name
    );
    Ok(())
}

/// Interactively pick an accessible environment from a project.
fn prompt_environment(project: &queries::RailwayProject) -> Result<String> {
    let choices: Vec<Choice> = project
        .environments
        .edges
        .iter()
        .filter(|e| e.node.can_access)
        .map(|e| Choice {
            id: e.node.id.clone(),
            name: e.node.name.clone(),
        })
        .collect();
    if choices.is_empty() {
        bail!("No accessible environments in this project.");
    }
    Ok(prompt_options("Select an environment", choices)?.id)
}

/// Resolve which sandbox a command should act on: an explicit id (using the
/// local store / flags / linked project to recover its environment), or the
/// active sandbox when none is given.
async fn resolve_target(
    configs: &mut Configs,
    client: &reqwest::Client,
    explicit_id: Option<String>,
    project: Option<String>,
    environment: Option<String>,
) -> Result<(String, String)> {
    match explicit_id {
        Some(id) => {
            let environment_id = if project.is_some() || environment.is_some() {
                resolve_project_and_env(configs, client, project, environment)
                    .await?
                    .1
            } else if let Some(stored) = configs.get_sandbox(&id) {
                stored.environment_id
            } else {
                resolve_project_and_env(configs, client, None, None)
                    .await?
                    .1
            };
            Ok((id, environment_id))
        }
        None => {
            let stored = configs.get_active_sandbox().ok_or_else(|| {
                anyhow!(
                    "No active sandbox. Create one with `railway sandbox create`, or pass --id <id>."
                )
            })?;
            Ok((stored.id, stored.environment_id))
        }
    }
}

/// Parse repeatable `--variable` values into key/value pairs. Each argument is
/// a single `KEY=VALUE` or a comma-separated list of them (`A=1,B=2`). A comma
/// only splits when every segment carries its own `=` — `ALLOWED=a.com,b.com`
/// stays one variable whose value contains the comma. Repeating the flag is
/// the unambiguous form for values that mix commas and `=`.
fn parse_variable_args(args: &[String]) -> Result<Vec<Variable>> {
    let mut vars = Vec::new();
    for arg in args {
        let segments: Vec<&str> = arg.split(',').collect();
        if segments.len() > 1 && segments.iter().all(|s| s.contains('=')) {
            for segment in segments {
                vars.push(Variable::from_str(segment)?);
            }
        } else {
            vars.push(Variable::from_str(arg)?);
        }
    }
    Ok(vars)
}

/// Wrap a bare Railway reference (`name.VAR`) in `${{...}}` so users can write
/// `--variable DB_URL=postgres.DATABASE_URL` without shell-quoting the full
/// `${{postgres.DATABASE_URL}}` form. Only an exact `<name>.<VAR>` value is
/// wrapped — `name` alphanumeric/`_`/`-` starting with a letter, `VAR` in
/// UPPER_SNAKE starting with an uppercase letter — so plain values like `1.5`,
/// `example.com`, or `file.txt` pass through untouched, as does anything
/// already containing `${{`. The `shared.` namespace is unmistakable, so its
/// var segment may be any case (`shared.char`), not just UPPER_SNAKE.
fn auto_wrap_reference(value: &str) -> String {
    if value.contains("${{") {
        return value.to_string();
    }
    let Some((name, var)) = value.split_once('.') else {
        return value.to_string();
    };
    let name_ok = name.chars().next().is_some_and(|c| c.is_ascii_alphabetic())
        && name
            .chars()
            .all(|c| c.is_ascii_alphanumeric() || c == '_' || c == '-');
    let var_ok = if name == "shared" {
        var.chars().next().is_some_and(|c| c.is_ascii_alphabetic())
            && var.chars().all(|c| c.is_ascii_alphanumeric() || c == '_')
    } else {
        var.chars().next().is_some_and(|c| c.is_ascii_uppercase())
            && var
                .chars()
                .all(|c| c.is_ascii_uppercase() || c.is_ascii_digit() || c == '_')
    };
    if name_ok && var_ok {
        format!("${{{{{name}.{var}}}}}")
    } else {
        value.to_string()
    }
}

/// Parse a dotenv-style file into key/value pairs. Supports `KEY=VALUE` lines,
/// blank lines, `#` comments, an optional `export ` prefix, single/double
/// quoted values (kept verbatim inside the quotes), and trailing ` #` comments
/// on unquoted values. Multiline values are not supported.
fn parse_env_file(path: &std::path::Path) -> Result<Vec<Variable>> {
    let contents = std::fs::read_to_string(path)
        .map_err(|e| anyhow!("Failed to read env file {}: {e}", path.display()))?;
    let mut vars = Vec::new();
    for (i, raw_line) in contents.lines().enumerate() {
        let line = raw_line.trim();
        if line.is_empty() || line.starts_with('#') {
            continue;
        }
        let line = line.strip_prefix("export ").unwrap_or(line).trim_start();
        let Some((key, value)) = line.split_once('=') else {
            bail!(
                "{}:{}: expected KEY=VALUE, got `{raw_line}`",
                path.display(),
                i + 1
            );
        };
        let key = key.trim();
        if key.is_empty() {
            bail!("{}:{}: empty variable name", path.display(), i + 1);
        }
        let value = value.trim();
        let value = if (value.starts_with('"') && value.ends_with('"') && value.len() >= 2)
            || (value.starts_with('\'') && value.ends_with('\'') && value.len() >= 2)
        {
            &value[1..value.len() - 1]
        } else {
            // Unquoted: strip a trailing ` # comment`.
            value.split(" #").next().unwrap_or(value).trim_end()
        };
        vars.push(Variable {
            key: key.to_string(),
            value: value.to_string(),
        });
    }
    Ok(vars)
}

/// Convert `--env-file` and `--variable` args into the `EnvironmentVariables`
/// scalar, wrapping bare references. Files load first (in order), then flags —
/// so a `--variable` overrides a file entry with the same key. `None` when
/// empty so `skip_serializing_none` omits the field from the mutation input.
fn variables_to_input(
    env_files: &[std::path::PathBuf],
    args: &[String],
) -> Result<Option<BTreeMap<String, String>>> {
    let mut vars = Vec::new();
    for path in env_files {
        vars.extend(parse_env_file(path)?);
    }
    vars.extend(parse_variable_args(args)?);
    if vars.is_empty() {
        return Ok(None);
    }
    Ok(Some(
        vars.into_iter()
            .map(|v| (v.key, auto_wrap_reference(&v.value)))
            .collect(),
    ))
}

/// Run `sandboxCreate` with the given input, persist the result as the active
/// sandbox (create and fork both retarget `ssh`/`exec` at the new sandbox),
/// and print create-style output.
async fn create_and_store(
    configs: &mut Configs,
    client: &reqwest::Client,
    project_id: String,
    environment_id: String,
    input: mutations::sandbox_create::SandboxCreateInput,
    json: bool,
    forked: bool,
) -> Result<()> {
    let (doing, did, failed) = if forked {
        ("Forking sandbox", "Forked", "Failed to fork sandbox")
    } else {
        ("Creating sandbox", "Created", "Failed to create sandbox")
    };

    let mut spinner = create_shimmer_spinner(doing);
    let sandbox = match post_graphql::<mutations::SandboxCreate, _>(
        client,
        configs.get_backboard(),
        mutations::sandbox_create::Variables { input },
    )
    .await
    {
        Ok(res) => res.sandbox_create,
        Err(e) => {
            fail_spinner(&mut spinner, failed.to_string());
            return Err(e.into());
        }
    };
    spinner.finish_and_clear();

    configs.upsert_sandbox(
        StoredSandbox {
            id: sandbox.id.clone(),
            environment_id,
            project_id: Some(project_id),
            created_at: Some(sandbox.created_at.to_rfc3339()),
        },
        true,
    );
    configs.write()?;

    if json {
        println!("{}", serde_json::to_string_pretty(&sandbox)?);
    } else {
        println!("✓ {did} sandbox {} (now active)", sandbox.id);
        println!("  status: {:?}", sandbox.status);
        println!("  region: {}", sandbox.region);
        if let Some(idle) = sandbox.idle_timeout_minutes {
            println!("  idle timeout: {idle}m");
        }
        println!("\nConnect with:\n  railway sandbox ssh");
    }
    Ok(())
}

async fn create(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: CreateArgs,
) -> Result<()> {
    let (project_id, environment_id) =
        resolve_project_and_env(configs, client, project, environment).await?;

    // Templates are content-addressed server-side: sandboxCreate needs the
    // full recipe, not just the id, so resolve it from the local store.
    let template = match &args.template {
        Some(handle) => {
            let stored = configs
                .find_sandbox_template(handle, Some(&environment_id))
                .ok_or_else(|| {
                    anyhow!(
                        "Unknown template `{handle}` for this environment. Build it first:\n  railway sandbox template build --name {handle} -c '<command>' --wait"
                    )
                })?;
            Some(mutations::sandbox_create::SandboxTemplateInput {
                instructions: stored.instructions,
                base_image_digest: stored.base_image_digest,
            })
        }
        None => None,
    };

    let input = mutations::sandbox_create::SandboxCreateInput {
        environment_id: environment_id.clone(),
        idle_timeout_minutes: args.idle_timeout_minutes,
        template,
        source_sandbox_id: None,
        network_isolation: args
            .private_network
            .then_some(mutations::sandbox_create::SandboxNetworkIsolation::PRIVATE),
        variables: variables_to_input(&args.env_files, &args.variables)?,
    };
    create_and_store(
        configs,
        client,
        project_id,
        environment_id,
        input,
        args.json,
        false,
    )
    .await
}

async fn template(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: TemplateArgs,
) -> Result<()> {
    match args.command {
        TemplateCommands::Build(sub) => {
            template_build(configs, client, project, environment, sub).await
        }
        TemplateCommands::Status(sub) => {
            template_status(configs, client, project, environment, sub).await
        }
        TemplateCommands::List(sub) => {
            template_list(configs, client, project, environment, sub).await
        }
    }
}

async fn template_build(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: TemplateBuildArgs,
) -> Result<()> {
    let (_, environment_id) =
        resolve_project_and_env(configs, client, project, environment).await?;

    let res = post_graphql::<mutations::SandboxTemplateBuild, _>(
        client,
        configs.get_backboard(),
        mutations::sandbox_template_build::Variables {
            environment_id: environment_id.clone(),
            input: mutations::sandbox_template_build::SandboxTemplateInput {
                instructions: args.commands.clone(),
                base_image_digest: args.base_image_digest.clone(),
            },
        },
    )
    .await?;
    let built = res.sandbox_template_build;

    // Keep the recipe locally: `sandbox create --template` must resend the
    // instructions, since the server only caches by hash.
    configs.upsert_sandbox_template(StoredSandboxTemplate {
        id: built.id.clone(),
        name: args.name.clone(),
        environment_id: environment_id.clone(),
        instructions: args.commands,
        base_image_digest: args.base_image_digest,
        created_at: Some(chrono::Utc::now().to_rfc3339()),
    });
    configs.write()?;

    let already_ready = matches!(
        built.status,
        mutations::sandbox_template_build::SandboxTemplateStatus::READY
    );
    let status = if args.wait && !already_ready {
        wait_for_template(client, configs, &environment_id, &built.id).await?
    } else {
        format!("{:?}", built.status)
    };

    let handle = args.name.unwrap_or_else(|| built.id.clone());
    if args.json {
        let out = serde_json::json!({
            "id": built.id,
            "status": status,
            "environmentId": environment_id,
            "name": handle,
        });
        println!("{}", serde_json::to_string_pretty(&out)?);
        return Ok(());
    }

    if already_ready {
        println!("✓ Template {handle} ready (cached)");
    } else if status == "READY" {
        println!("✓ Template {handle} built");
    } else {
        println!("Template {handle} status: {status}");
        println!("\nCheck progress with:\n  railway sandbox template status {handle}");
    }
    if status == "READY" {
        println!("\nCreate a sandbox from it with:\n  railway sandbox create --template {handle}");
    }
    Ok(())
}

async fn template_status(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: TemplateStatusArgs,
) -> Result<()> {
    // A locally stored template knows its environment; a raw id falls back to
    // flags / the linked environment.
    let stored = configs.find_sandbox_template(&args.template, None);
    let (id, environment_id) = match &stored {
        Some(t) => (t.id.clone(), t.environment_id.clone()),
        None => {
            let (_, environment_id) =
                resolve_project_and_env(configs, client, project, environment).await?;
            (args.template.clone(), environment_id)
        }
    };

    let res = post_graphql::<queries::SandboxTemplate, _>(
        client,
        configs.get_backboard(),
        queries::sandbox_template::Variables { environment_id, id },
    )
    .await?;
    let tpl = res.sandbox_template;

    if args.json {
        println!("{}", serde_json::to_string_pretty(&tpl)?);
        return Ok(());
    }
    if let Some(name) = stored.and_then(|t| t.name) {
        println!("Template {name} ({})", tpl.id);
    } else {
        println!("Template {}", tpl.id);
    }
    println!("  status: {:?}", tpl.status);
    Ok(())
}

async fn template_list(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: TemplateListArgs,
) -> Result<()> {
    let (_, environment_id) =
        resolve_project_and_env(configs, client, project, environment).await?;
    let templates = configs.list_sandbox_templates(Some(&environment_id));

    if templates.is_empty() {
        if args.json {
            println!("[]");
        } else {
            println!(
                "No templates built from this CLI for this environment.\nBuild one with:\n  railway sandbox template build --name <name> -c '<command>' --wait"
            );
        }
        return Ok(());
    }

    let mut rows = Vec::new();
    for t in &templates {
        let status = post_graphql::<queries::SandboxTemplate, _>(
            client,
            configs.get_backboard(),
            queries::sandbox_template::Variables {
                environment_id: environment_id.clone(),
                id: t.id.clone(),
            },
        )
        .await
        .map(|r| format!("{:?}", r.sandbox_template.status))
        .unwrap_or_else(|_| "UNKNOWN".to_string());
        rows.push((t, status));
    }

    if args.json {
        let out: Vec<_> = rows
            .iter()
            .map(|(t, status)| {
                serde_json::json!({
                    "id": t.id,
                    "name": t.name,
                    "status": status,
                    "instructions": t.instructions,
                    "baseImageDigest": t.base_image_digest,
                    "createdAt": t.created_at,
                })
            })
            .collect();
        println!("{}", serde_json::to_string_pretty(&out)?);
        return Ok(());
    }

    println!(
        "{:<20}  {:<16}  {:<10}  {:<6}",
        "NAME", "ID", "STATUS", "STEPS"
    );
    for (t, status) in rows {
        println!(
            "{:<20}  {:<16}  {:<10}  {:<6}",
            t.name.as_deref().unwrap_or("-"),
            &t.id[..t.id.len().min(16)],
            status,
            t.instructions.len()
        );
    }
    Ok(())
}

/// Poll the template status until READY (or fail on FAILED/timeout). Build
/// steps run server-side in a transient sandbox; the workflow caps out at 40m,
/// so poll a little past that.
async fn wait_for_template(
    client: &reqwest::Client,
    configs: &Configs,
    environment_id: &str,
    id: &str,
) -> Result<String> {
    let mut spinner = create_shimmer_spinner("Building template");
    let deadline = std::time::Instant::now() + Duration::from_secs(45 * 60);
    loop {
        tokio::time::sleep(Duration::from_secs(5)).await;
        let res = post_graphql::<queries::SandboxTemplate, _>(
            client,
            configs.get_backboard(),
            queries::sandbox_template::Variables {
                environment_id: environment_id.to_string(),
                id: id.to_string(),
            },
        )
        .await?;
        match res.sandbox_template.status {
            queries::sandbox_template::SandboxTemplateStatus::READY => {
                spinner.finish_and_clear();
                return Ok("READY".to_string());
            }
            queries::sandbox_template::SandboxTemplateStatus::FAILED => {
                fail_spinner(&mut spinner, "Template build failed".to_string());
                bail!(
                    "Template build failed. Each instruction must exit 0 within 10 minutes; fix the failing step and rebuild."
                );
            }
            _ => {}
        }
        if std::time::Instant::now() > deadline {
            fail_spinner(&mut spinner, "Timed out waiting for template".to_string());
            bail!("Timed out waiting for the template build.");
        }
    }
}

async fn fork(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: ForkArgs,
) -> Result<()> {
    let (source_sandbox_id, environment_id) = resolve_target(
        configs,
        client,
        args.explicit_id(),
        project.clone(),
        environment.clone(),
    )
    .await?;

    // For the stored ref: prefer the source's cached project_id, else resolve
    // from flags / the linked project.
    let project_id = match configs
        .get_sandbox(&source_sandbox_id)
        .and_then(|s| s.project_id)
    {
        Some(id) => id,
        None => {
            resolve_project_and_env(configs, client, project, environment)
                .await?
                .0
        }
    };

    let input = mutations::sandbox_create::SandboxCreateInput {
        environment_id: environment_id.clone(),
        idle_timeout_minutes: args.idle_timeout_minutes,
        template: None,
        source_sandbox_id: Some(source_sandbox_id),
        network_isolation: args
            .private_network
            .then_some(mutations::sandbox_create::SandboxNetworkIsolation::PRIVATE),
        variables: variables_to_input(&args.env_files, &args.variables)?,
    };
    create_and_store(
        configs,
        client,
        project_id,
        environment_id,
        input,
        args.json,
        true,
    )
    .await
}

async fn list(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: ListArgs,
) -> Result<()> {
    let (project_id, environment_id) =
        resolve_project_and_env(configs, client, project, environment).await?;

    let res = post_graphql::<queries::Sandboxes, _>(
        client,
        configs.get_backboard(),
        queries::sandboxes::Variables {
            environment_id: environment_id.clone(),
            first: Some(100),
            after: None,
        },
    )
    .await?;
    let mut nodes: Vec<_> = res.sandboxes.edges.into_iter().map(|e| e.node).collect();

    // Tombstones quickly outnumber live sandboxes; hide them unless --all.
    let hidden = if args.all {
        0
    } else {
        let before = nodes.len();
        nodes.retain(|n| !matches!(n.status, queries::sandboxes::SandboxStatus::DESTROYED));
        before - nodes.len()
    };

    // Refresh the local id -> environment cache so `--id` works for any listed
    // sandbox. Does not change which sandbox is active.
    for node in &nodes {
        configs.upsert_sandbox(
            StoredSandbox {
                id: node.id.clone(),
                environment_id: environment_id.clone(),
                project_id: Some(project_id.clone()),
                created_at: Some(node.created_at.to_rfc3339()),
            },
            false,
        );
    }
    configs.write()?;

    if args.json {
        println!("{}", serde_json::to_string_pretty(&nodes)?);
        return Ok(());
    }

    if nodes.is_empty() {
        if hidden > 0 {
            println!(
                "No active sandboxes in this environment ({hidden} destroyed; use --all to show them)."
            );
        } else {
            println!("No sandboxes in this environment.");
        }
        return Ok(());
    }

    let active = configs.get_active_sandbox().map(|s| s.id);
    println!(
        "{:<38}  {:<10}  {:<10}  {:<16}",
        "ID", "STATUS", "REGION", "CREATED"
    );
    for node in nodes {
        let marker = if active.as_deref() == Some(node.id.as_str()) {
            "*"
        } else {
            " "
        };
        println!(
            "{marker} {:<38}  {:<10}  {:<10}  {:<16}",
            node.id,
            format!("{:?}", node.status),
            node.region,
            node.created_at.format("%Y-%m-%d %H:%M").to_string()
        );
    }
    if hidden > 0 {
        println!("\n({hidden} destroyed sandboxes hidden; use --all to show them)");
    }
    Ok(())
}

async fn exec(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: ExecArgs,
) -> Result<()> {
    use colored::Colorize;

    // clap can't express "required unless --session" for a trailing vararg.
    if args.command.is_empty() && args.session.is_none() {
        bail!("a command is required (or pass --session <name> to reattach)");
    }

    let (sandbox_id, environment_id) = tel::track_for(
        "sandbox",
        "exec_resolve_target",
        resolve_target(configs, client, args.id.clone(), project, environment).await,
    )
    .await?;

    configs.set_active_sandbox(&sandbox_id);
    configs.write()?;

    let mut spinner = create_shimmer_spinner("Connecting");

    // The bridge is authorized by a short-lived shell-scoped JWT carried in
    // the WebSocket subprotocol.
    let jwt = match tel::track_for(
        "sandbox",
        "exec_mint_token",
        mint_shell_token(
            client,
            configs.get_backboard(),
            &environment_id,
            &sandbox_id,
        )
        .await,
    )
    .await
    {
        Ok(jwt) => jwt,
        Err(e) => {
            fail_spinner(&mut spinner, "Failed to authorize command".to_string());
            return Err(e);
        }
    };

    let ws =
        match tel::track_for("sandbox", "exec_connect", sandbox_exec::connect(&jwt).await).await {
            Ok(ws) => ws,
            Err(e) => {
                fail_spinner(&mut spinner, "Failed to connect to sandbox".to_string());
                return Err(e);
            }
        };
    spinner.finish_and_clear();

    // Keep the sandbox alive against the idle reaper while the command runs.
    let heartbeat = spawn_heartbeat(
        client.clone(),
        configs.get_backboard(),
        environment_id,
        sandbox_id.clone(),
    );

    let options = sandbox_exec::ExecOptions {
        // A single argument passes through as a full shell command so pipes
        // and redirects work (`exec -- "ls | head"`). Multiple arguments are
        // argv: quote each so the remote shell sees the same boundaries —
        // `exec -- bash -lc 'echo a | b'` must not re-split on the pipe.
        command: match args.command.as_slice() {
            [] => None,
            [cmd] => Some(cmd.clone()),
            argv => Some(shell_join(argv)),
        },
        session: args.session.clone(),
        resume_from_last_read: args.resume_from_last_read,
        timeout: args
            .timeout
            .map(|secs| Duration::from_secs(secs.max(0) as u64)),
        detach: args.detach,
        stdin_is_tty: std::io::stdin().is_terminal(),
    };

    let outcome = tel::track_for(
        "sandbox",
        "exec_stream",
        sandbox_exec::run(ws, options).await,
    )
    .await;
    heartbeat.abort();

    match outcome? {
        ExecOutcome::Exited {
            code,
            fresh_session_suspected,
        } => {
            if fresh_session_suspected {
                eprintln!(
                    "{}",
                    "warning: that session may have expired; the server started a fresh one instead"
                        .yellow()
                );
            }
            if args.detach {
                eprintln!(
                    "{}",
                    "warning: durable sessions are unavailable for this sandbox; ran attached"
                        .yellow()
                );
            }
            if code != 0 {
                tel::report_failure_for("sandbox", "exec_exit_nonzero", &format!("exit {code}"))
                    .await;
            }
            std::process::exit(code);
        }
        ExecOutcome::TimedOut { session_name } => {
            eprintln!("\n(command timed out)");
            if let Some(name) = session_name {
                eprintln!("{}", reattach_hint(&sandbox_id, &name).dimmed());
            }
            std::process::exit(sandbox_exec::TIMEOUT_EXIT_CODE);
        }
        ExecOutcome::Detached { session_name } => {
            // stdout carries just the session name so scripts can capture it.
            println!("{session_name}");
            eprintln!("{}", reattach_hint(&sandbox_id, &session_name).dimmed());
            Ok(())
        }
        ExecOutcome::Disconnected { session_name } => {
            match session_name {
                Some(name) => {
                    eprintln!("\nDisconnected; the command may still be running.");
                    eprintln!("{}", reattach_hint(&sandbox_id, &name).dimmed());
                }
                None => eprintln!("\nConnection lost."),
            }
            std::process::exit(1);
        }
    }
}

fn reattach_hint(sandbox_id: &str, session_name: &str) -> String {
    format!("Reattach with: railway sandbox exec --id {sandbox_id} --session {session_name}")
}

async fn mint_shell_token(
    client: &reqwest::Client,
    backboard: String,
    environment_id: &str,
    sandbox_id: &str,
) -> Result<String> {
    let res = post_graphql::<mutations::GenerateShellToken, _>(
        client,
        backboard,
        mutations::generate_shell_token::Variables {
            input: mutations::generate_shell_token::ShellTokenInput {
                environment_id: environment_id.to_string(),
                instance_id: sandbox_id.to_string(),
                kind: Some("sandbox".to_string()),
                port: None,
                scope: "shell".to_string(),
                service_id: None,
            },
        },
    )
    .await?;
    Ok(res.generate_shell_token)
}

async fn destroy(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: DestroyArgs,
) -> Result<()> {
    let (sandbox_id, environment_id) =
        resolve_target(configs, client, args.explicit_id(), project, environment).await?;

    let mut spinner = create_shimmer_spinner("Destroying sandbox");
    if let Err(e) = post_graphql::<mutations::SandboxDestroy, _>(
        client,
        configs.get_backboard(),
        mutations::sandbox_destroy::Variables {
            id: sandbox_id.clone(),
            environment_id,
        },
    )
    .await
    {
        fail_spinner(&mut spinner, "Failed to destroy sandbox".to_string());
        return Err(e.into());
    }
    spinner.finish_and_clear();

    configs.remove_sandbox(&sandbox_id);
    configs.write()?;
    println!("✓ Destroyed sandbox {sandbox_id}");
    Ok(())
}

/// How often to extend the sandbox's idle lifetime during an interactive
/// session. The backboard SSH handshake extends once on connect; this keeps a
/// long-lived shell alive against the idle reaper.
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(60);

/// A forward session that survives this long was a healthy tunnel; its drop
/// resets the quick-failure budget instead of consuming it.
const FORWARD_STABLE_SESSION: Duration = Duration::from_secs(30);
/// Base delay between reconnect attempts (doubles per consecutive quick
/// failure, capped at 2^4).
const FORWARD_RECONNECT_DELAY: Duration = Duration::from_secs(1);
/// Consecutive quick failures tolerated before the forward gives up.
const FORWARD_MAX_QUICK_FAILURES: u32 = 5;

async fn ssh(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: SshArgs,
) -> Result<()> {
    // Stage-tagged failure telemetry, mirroring `railway ssh` (tel.rs) so
    // sandbox SSH sessions land in the same stage-failure dashboards under
    // command = "sandbox".
    let (sandbox_id, environment_id) = tel::track_for(
        "sandbox",
        "ssh_resolve_target",
        resolve_target(configs, client, args.id.clone(), project, environment).await,
    )
    .await?;

    // Reuse the native-SSH key registration flow from `railway ssh`. When the
    // user didn't pass `-i`, use the registered key it resolves so a
    // non-default-named key (e.g. ~/.ssh/raildesk_railway_ed25519) is actually
    // offered to the relay instead of just ssh's default identities.
    let auto_identity = if args.identity_file.is_none() {
        tel::track_for(
            "sandbox",
            "ssh_key_setup",
            ensure_ssh_key(client, configs).await,
        )
        .await?
    } else {
        None
    };

    configs.set_active_sandbox(&sandbox_id);
    configs.write()?;

    // Relay target format (per backboard): sbx:<environmentId>:<sandboxId>.
    // `run_native_ssh` appends the environment's relay host internally.
    let target = format!("sbx:{environment_id}:{sandbox_id}");

    // Keep the sandbox alive for the duration of the session.
    let heartbeat = spawn_heartbeat(
        client.clone(),
        configs.get_backboard(),
        environment_id,
        sandbox_id,
    );

    let command = if args.command.is_empty() {
        None
    } else {
        Some(args.command.clone())
    };
    let identity = args.identity_file.clone().or(auto_identity);
    let durable_session = args.session.clone();
    let resume_from_last_read = args.resume_from_last_read;

    // `run_native_ssh` is blocking (inherits the terminal); run it off the
    // async runtime so the heartbeat task keeps ticking.
    let session = tokio::task::spawn_blocking(move || {
        let durable = durable_session.as_deref().map(|name| DurableResume {
            session_name: name,
            resume_from_last_read,
        });
        run_native_ssh(&target, command.as_deref(), identity.as_deref(), durable)
    })
    .await
    .map_err(anyhow::Error::from)
    .and_then(|r| r);
    let exit_code = tel::track_for("sandbox", "ssh_session", session).await?;

    heartbeat.abort();

    if exit_code != 0 {
        tel::report_failure_for(
            "sandbox",
            "ssh_exit_nonzero",
            &format!("ssh exited with code {exit_code}"),
        )
        .await;
        std::process::exit(exit_code);
    }
    Ok(())
}

/// A parsed `[LOCAL:]REMOTE` port spec. `local` is None when the user gave a
/// bare remote port (local defaults to the same port, with busy-port
/// fallback); an explicit `LOCAL:REMOTE` never gets remapped.
struct PortSpec {
    local: Option<u16>,
    remote: u16,
}

fn parse_port_spec(spec: &str) -> Result<PortSpec> {
    let parse_port = |s: &str, what: &str| -> Result<u16> {
        let port: u16 = s
            .trim()
            .parse()
            .map_err(|_| anyhow!("Invalid {what} port {s:?} in {spec:?} (expected 1-65535)"))?;
        if port == 0 {
            bail!("Invalid {what} port 0 in {spec:?} (expected 1-65535)");
        }
        Ok(port)
    };

    match spec.split_once(':') {
        Some((local, remote)) => Ok(PortSpec {
            local: Some(parse_port(local, "local")?),
            remote: parse_port(remote, "remote")?,
        }),
        None => Ok(PortSpec {
            local: None,
            remote: parse_port(spec, "remote")?,
        }),
    }
}

/// Pick the local port for a spec. Bare `REMOTE` specs fall back to a nearby
/// free port when the obvious one is busy (dev-server style) unless `strict`;
/// explicit `LOCAL:REMOTE` specs always fail busy. Returns `(port, remapped)`.
///
/// Bind-test then release — a small TOCTOU window before ssh re-binds, which
/// is fine for the interactive dev workflow this serves.
fn resolve_local_port(spec: &PortSpec, strict: bool) -> Result<(u16, bool)> {
    let is_free = |port: u16| std::net::TcpListener::bind(("127.0.0.1", port)).is_ok();

    let requested = spec.local.unwrap_or(spec.remote);
    if is_free(requested) {
        return Ok((requested, false));
    }

    if spec.local.is_some() || strict {
        bail!(
            "Local port {requested} is already in use.\n\
            Pick a different one with: railway sandbox forward <local>:{remote}",
            remote = spec.remote
        );
    }

    // Scan upward like dev servers do; checked_add stops the scan at 65535.
    for offset in 1..=100u16 {
        if let Some(candidate) = requested.checked_add(offset)
            && is_free(candidate)
        {
            return Ok((candidate, true));
        }
    }
    bail!("Local port {requested} is in use and no nearby free port was found");
}

async fn forward(
    configs: &mut Configs,
    client: &reqwest::Client,
    project: Option<String>,
    environment: Option<String>,
    args: ForwardArgs,
) -> Result<()> {
    use colored::Colorize;

    // Parse and de-dup before any network work so bad specs fail instantly.
    let specs = args
        .ports
        .iter()
        .map(|s| parse_port_spec(s))
        .collect::<Result<Vec<_>>>()?;

    let (sandbox_id, environment_id) = tel::track_for(
        "sandbox",
        "forward_resolve_target",
        resolve_target(configs, client, args.id.clone(), project, environment).await,
    )
    .await?;

    // Same key flow as `sandbox ssh`: resolve (or register) the key so a
    // non-default-named identity is actually offered to the relay.
    let auto_identity = if args.identity_file.is_none() {
        tel::track_for(
            "sandbox",
            "forward_key_setup",
            ensure_ssh_key(client, configs).await,
        )
        .await?
    } else {
        None
    };

    let mut forwards = Vec::with_capacity(specs.len());
    let mut remaps = Vec::new();
    let mut seen_local = std::collections::BTreeSet::new();
    for spec in &specs {
        let (local_port, remapped) = resolve_local_port(spec, args.strict)?;
        if !seen_local.insert(local_port) {
            bail!("Local port {local_port} is requested more than once");
        }
        if remapped {
            remaps.push((spec.remote, local_port));
        }
        forwards.push(PortForward {
            local_port,
            remote_port: spec.remote,
        });
    }

    configs.set_active_sandbox(&sandbox_id);
    configs.write()?;

    let target = format!("sbx:{environment_id}:{sandbox_id}");

    // Keep the sandbox alive while the forward is up; the relay extends once
    // on connect but an idle forward would otherwise hit the idle reaper.
    let heartbeat = spawn_heartbeat(
        client.clone(),
        configs.get_backboard(),
        environment_id.clone(),
        sandbox_id.clone(),
    );

    let short_id: String = sandbox_id.chars().take(8).collect();
    eprintln!();
    eprintln!(
        "{} Forwarding to sandbox {}",
        "⚡".yellow(),
        short_id.bold()
    );
    eprintln!();
    for (remapped_remote, picked) in &remaps {
        eprintln!(
            "  {} port {remapped_remote} is in use locally, using {picked} instead",
            "⚠".yellow()
        );
    }
    for f in &forwards {
        eprintln!(
            "  {}  {} {} {}",
            "➜".green(),
            format!("http://localhost:{}", f.local_port).cyan().bold(),
            "→".dimmed(),
            format!("sandbox:{}", f.remote_port).dimmed()
        );
    }
    eprintln!();
    eprintln!("  {}", "Press Ctrl+C to stop".dimmed());
    eprintln!();

    let identity = args.identity_file.clone().or(auto_identity);

    // Reconnect loop: the relay can drop a long-lived tunnel while the
    // sandbox itself is still healthy. On an unexpected ssh exit, re-check
    // the sandbox and reconnect if it is RUNNING; only tell the user to
    // create a fresh sandbox when it actually stopped. Consecutive *fast*
    // failures are bounded so a broken relay/auth setup can't hot-loop; a
    // session that held for a while resets the budget.
    let mut quick_failures: u32 = 0;
    let exit_code = loop {
        let session_target = target.clone();
        let session_identity = identity.clone();
        let session_forwards = forwards.clone();
        let started = std::time::Instant::now();
        // Blocking ssh runs off the async runtime so the heartbeat keeps ticking.
        let session = tokio::task::spawn_blocking(move || {
            run_native_ssh_forward(
                &session_target,
                session_identity.as_deref(),
                &session_forwards,
            )
        })
        .await
        .map_err(anyhow::Error::from)
        .and_then(|r| r);
        let exit_code = tel::track_for("sandbox", "forward_session", session).await?;

        // Clean exit is the user's Ctrl+C (ssh dies by signal in our
        // process group); anything else is an unexpected drop.
        if exit_code == 0 {
            break 0;
        }

        if started.elapsed() >= FORWARD_STABLE_SESSION {
            quick_failures = 0;
        } else {
            quick_failures += 1;
        }
        if quick_failures > FORWARD_MAX_QUICK_FAILURES {
            eprintln!(
                "\nForward keeps failing right after connecting (ssh exit code {exit_code}); giving up."
            );
            break exit_code;
        }

        match fetch_sandbox_status(client, configs, &environment_id, &sandbox_id).await {
            Ok(Some(queries::sandbox::SandboxStatus::RUNNING)) => {
                let delay = FORWARD_RECONNECT_DELAY * 2u32.saturating_pow(quick_failures.min(4));
                eprintln!(
                    "\n{} Forward dropped (ssh exit code {exit_code}); sandbox {} is still running — reconnecting in {}s...",
                    "⚠".yellow(),
                    short_id.bold(),
                    delay.as_secs()
                );
                tokio::time::sleep(delay).await;
            }
            Ok(status) => {
                let status = status
                    .map(|s| format!("{s:?}"))
                    .unwrap_or_else(|| "GONE".to_string());
                eprintln!(
                    "\nForward ended: sandbox {short_id} is {status}.\n\
                    Start a fresh one with `railway sandbox create` or `railway sandbox fork`."
                );
                break exit_code;
            }
            // Can't verify the sandbox either — the old generic message is
            // the honest one here.
            Err(_) => {
                eprintln!(
                    "\nForward ended unexpectedly (ssh exit code {exit_code}).\n\
                    If the sandbox stopped, start a fresh one with `railway sandbox create` or `railway sandbox fork`."
                );
                break exit_code;
            }
        }
    };

    heartbeat.abort();

    if exit_code != 0 {
        tel::report_failure_for(
            "sandbox",
            "forward_exit_nonzero",
            &format!("ssh exited with code {exit_code}"),
        )
        .await;
        std::process::exit(exit_code);
    }
    Ok(())
}

/// Best-effort status read used to decide whether a dropped forward should
/// reconnect. `Ok(None)` means the API answered but the sandbox is gone.
async fn fetch_sandbox_status(
    client: &reqwest::Client,
    configs: &Configs,
    environment_id: &str,
    sandbox_id: &str,
) -> Result<Option<queries::sandbox::SandboxStatus>> {
    let res = post_graphql::<queries::Sandbox, _>(
        client,
        configs.get_backboard(),
        queries::sandbox::Variables {
            environment_id: environment_id.to_string(),
            id: sandbox_id.to_string(),
        },
    )
    .await?;
    Ok(res.sandbox.map(|s| s.status))
}

fn spawn_heartbeat(
    client: reqwest::Client,
    backboard: String,
    environment_id: String,
    sandbox_id: String,
) -> tokio::task::JoinHandle<()> {
    tokio::spawn(async move {
        let mut interval = tokio::time::interval(HEARTBEAT_INTERVAL);
        // Skip the immediate first tick — backboard already extended on connect.
        interval.tick().await;
        loop {
            interval.tick().await;
            let _ = post_graphql::<mutations::SandboxHeartbeat, _>(
                &client,
                backboard.clone(),
                mutations::sandbox_heartbeat::Variables {
                    id: sandbox_id.clone(),
                    environment_id: environment_id.clone(),
                },
            )
            .await;
        }
    })
}

#[cfg(test)]
mod tests {
    use super::*;

    fn args(list: &[&str]) -> Vec<String> {
        list.iter().map(|s| s.to_string()).collect()
    }

    #[test]
    fn parse_port_spec_bare_remote() {
        let spec = parse_port_spec("3000").unwrap();
        assert!(spec.local.is_none());
        assert_eq!(spec.remote, 3000);
    }

    #[test]
    fn parse_port_spec_local_remote() {
        let spec = parse_port_spec("8080:3000").unwrap();
        assert_eq!(spec.local, Some(8080));
        assert_eq!(spec.remote, 3000);
    }

    #[test]
    fn parse_port_spec_rejects_garbage() {
        assert!(parse_port_spec("abc").is_err());
        assert!(parse_port_spec("0").is_err());
        assert!(parse_port_spec("8080:0").is_err());
        assert!(parse_port_spec(":3000").is_err());
        assert!(parse_port_spec("70000").is_err());
        assert!(parse_port_spec("8080:3000:1").is_err());
    }

    #[test]
    fn parse_single_pair() {
        let vars = parse_variable_args(&args(&["FOO=bar"])).unwrap();
        assert_eq!(vars.len(), 1);
        assert_eq!(vars[0].key, "FOO");
        assert_eq!(vars[0].value, "bar");
    }

    #[test]
    fn parse_comma_separated_pairs() {
        let vars = parse_variable_args(&args(&["FOO=bar,BAZ=qux,N=1"])).unwrap();
        assert_eq!(
            vars.iter()
                .map(|v| (v.key.as_str(), v.value.as_str()))
                .collect::<Vec<_>>(),
            vec![("FOO", "bar"), ("BAZ", "qux"), ("N", "1")]
        );
    }

    #[test]
    fn comma_in_value_stays_single_pair() {
        // "b.com" has no '=', so the comma is part of the value, not a separator.
        let vars = parse_variable_args(&args(&["ALLOWED=a.com,b.com"])).unwrap();
        assert_eq!(vars.len(), 1);
        assert_eq!(vars[0].key, "ALLOWED");
        assert_eq!(vars[0].value, "a.com,b.com");
    }

    #[test]
    fn repeated_flags_accumulate() {
        let vars = parse_variable_args(&args(&["A=1", "B=2,C=3"])).unwrap();
        assert_eq!(vars.len(), 3);
    }

    #[test]
    fn invalid_pair_errors() {
        assert!(parse_variable_args(&args(&["NOVALUE"])).is_err());
        assert!(parse_variable_args(&args(&["FOO=bar,NOVALUE=,BAZ=qux"])).is_err());
    }

    #[test]
    fn wraps_bare_references() {
        assert_eq!(
            auto_wrap_reference("postgres.DATABASE_URL"),
            "${{postgres.DATABASE_URL}}"
        );
        assert_eq!(auto_wrap_reference("shared.FOO"), "${{shared.FOO}}");
        assert_eq!(
            auto_wrap_reference("my-api_2.PORT_8080"),
            "${{my-api_2.PORT_8080}}"
        );
    }

    #[test]
    fn leaves_plain_values_alone() {
        for v in ["bar", "1.5", "example.com", "file.txt", "a.b.C", "2.0.1"] {
            assert_eq!(auto_wrap_reference(v), v);
        }
    }

    #[test]
    fn leaves_existing_references_alone() {
        let full = "${{postgres.DATABASE_URL}}";
        assert_eq!(auto_wrap_reference(full), full);
        let embedded = "postgres://${{postgres.PGUSER}}@host";
        assert_eq!(auto_wrap_reference(embedded), embedded);
    }

    #[test]
    fn variables_to_input_wraps_and_collects() {
        let input = variables_to_input(&[], &args(&["DB=postgres.DATABASE_URL,FOO=bar"]))
            .unwrap()
            .unwrap();
        assert_eq!(
            input.get("DB").map(String::as_str),
            Some("${{postgres.DATABASE_URL}}")
        );
        assert_eq!(input.get("FOO").map(String::as_str), Some("bar"));
    }

    #[test]
    fn variables_to_input_empty_is_none() {
        assert!(variables_to_input(&[], &[]).unwrap().is_none());
    }

    fn parse_exec(argv: &[&str]) -> std::result::Result<Args, clap::Error> {
        let full: Vec<&str> = std::iter::once("sandbox")
            .chain(argv.iter().copied())
            .collect();
        <Args as clap::Parser>::try_parse_from(full)
    }

    #[test]
    fn exec_session_without_command_parses() {
        let args = parse_exec(&["exec", "--session", "sess-1"]).unwrap();
        let Commands::Exec(exec) = args.command else {
            panic!("expected exec subcommand");
        };
        assert_eq!(exec.session.as_deref(), Some("sess-1"));
        assert!(exec.command.is_empty());
    }

    #[test]
    fn exec_session_conflicts_with_detach() {
        assert!(parse_exec(&["exec", "--session", "s", "--detach", "--", "ls"]).is_err());
    }

    #[test]
    fn exec_resume_requires_session() {
        assert!(parse_exec(&["exec", "--resume-from-last-read", "--", "ls"]).is_err());
        assert!(parse_exec(&["exec", "--session", "s", "--resume-from-last-read"]).is_ok());
    }

    #[test]
    fn exec_detach_with_command_parses() {
        let args = parse_exec(&["exec", "--detach", "--", "sleep", "300"]).unwrap();
        let Commands::Exec(exec) = args.command else {
            panic!("expected exec subcommand");
        };
        assert!(exec.detach);
        assert_eq!(exec.command, vec!["sleep", "300"]);
    }

    #[test]
    fn manually_wrapped_pairs_split_and_pass_verbatim() {
        // Users may pre-wrap references themselves; comma-splitting still
        // applies and the wrapped values are sent untouched.
        let input = variables_to_input(
            &[],
            &args(&["FOO=${{serviceName.FOO}},BAR=${{serviceName.BAR}}"]),
        )
        .unwrap()
        .unwrap();
        assert_eq!(
            input.get("FOO").map(String::as_str),
            Some("${{serviceName.FOO}}")
        );
        assert_eq!(
            input.get("BAR").map(String::as_str),
            Some("${{serviceName.BAR}}")
        );
        // Embedded references inside larger values also pass through.
        let input = variables_to_input(&[], &args(&["URL=http://${{svc.HOST}}:8080"]))
            .unwrap()
            .unwrap();
        assert_eq!(
            input.get("URL").map(String::as_str),
            Some("http://${{svc.HOST}}:8080")
        );
    }

    #[test]
    fn wraps_shared_refs_any_case() {
        assert_eq!(auto_wrap_reference("shared.char"), "${{shared.char}}");
        assert_eq!(auto_wrap_reference("shared.FOO"), "${{shared.FOO}}");
        // Other namespaces still require UPPER_SNAKE vars.
        assert_eq!(auto_wrap_reference("postgres.char"), "postgres.char");
    }

    fn write_temp_env(name: &str, contents: &str) -> std::path::PathBuf {
        let path = std::env::temp_dir().join(format!("railway-test-{}-{name}", std::process::id()));
        std::fs::write(&path, contents).unwrap();
        path
    }

    #[test]
    fn env_file_parses_dotenv_format() {
        let path = write_temp_env(
            "basic.env",
            "# comment\n\nFOO=bar\nexport BAZ=qux\nQUOTED=\"hello world\"\nSINGLE='a # not comment'\nTRAIL=value # comment\nREF=postgres.DATABASE_URL\n",
        );
        let vars = parse_env_file(&path).unwrap();
        std::fs::remove_file(&path).ok();
        let map: BTreeMap<_, _> = vars.into_iter().map(|v| (v.key, v.value)).collect();
        assert_eq!(map.get("FOO").map(String::as_str), Some("bar"));
        assert_eq!(map.get("BAZ").map(String::as_str), Some("qux"));
        assert_eq!(map.get("QUOTED").map(String::as_str), Some("hello world"));
        assert_eq!(
            map.get("SINGLE").map(String::as_str),
            Some("a # not comment")
        );
        assert_eq!(map.get("TRAIL").map(String::as_str), Some("value"));
        assert_eq!(
            map.get("REF").map(String::as_str),
            Some("postgres.DATABASE_URL")
        );
    }

    #[test]
    fn env_file_invalid_line_errors_with_location() {
        let path = write_temp_env("bad.env", "FOO=bar\nNOT A PAIR\n");
        let err = parse_env_file(&path).unwrap_err().to_string();
        std::fs::remove_file(&path).ok();
        assert!(err.contains(":2:"), "error should cite line 2: {err}");
    }

    #[test]
    fn env_file_missing_errors() {
        assert!(parse_env_file(std::path::Path::new("/nonexistent/x.env")).is_err());
    }

    #[test]
    fn flags_override_env_file_entries() {
        let path = write_temp_env("override.env", "FOO=from-file\nKEEP=file-value\n");
        let input = variables_to_input(
            std::slice::from_ref(&path),
            &args(&["FOO=from-flag,REF=shared.char"]),
        )
        .unwrap()
        .unwrap();
        std::fs::remove_file(&path).ok();
        assert_eq!(input.get("FOO").map(String::as_str), Some("from-flag"));
        assert_eq!(input.get("KEEP").map(String::as_str), Some("file-value"));
        assert_eq!(
            input.get("REF").map(String::as_str),
            Some("${{shared.char}}")
        );
    }
}