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
//! Argument parser shared by `main.rs` and the integration tests.
use crate::commands::completions;
use clap::{Args, Parser, Subcommand};
use clap_complete::engine::ArgValueCandidates;
use std::path::PathBuf;
/// Runtime matrix-row selection flags, shared by `run`/`validate`/`preview`/
/// `plan` via `#[command(flatten)]`. Implements the selection model of
/// #370 (identity), #371 (status), #376 (tags), and #377 (include_parents).
#[derive(Debug, Args, Default, Clone)]
pub struct SelectionArgs {
/// Run only matrix rows whose id exactly matches. Repeatable and/or
/// comma-joined (`--select people --select time_off` or `--select a,b`).
/// Force-includes by name, bypassing the `status` gate. (#370)
#[arg(long = "select", value_delimiter = ',', env = "FAUCET_SELECT",
add = ArgValueCandidates::new(completions::matrix_id_candidates))]
pub select: Vec<String>,
/// Like `--select` but glob-matched against row ids (`--only 'timeoff_*'`).
/// Also bypasses the `status` gate. Repeatable / comma-joined. (#370)
#[arg(long = "only", value_delimiter = ',',
add = ArgValueCandidates::new(completions::matrix_id_candidates))]
pub only: Vec<String>,
/// Remove matching rows (exact id or glob) from the run set, applied last.
/// A `mandatory` row is removable only by an exact `--skip <id>`. (#370)
#[arg(long = "skip", value_delimiter = ',', env = "FAUCET_SKIP",
add = ArgValueCandidates::new(completions::matrix_id_candidates))]
pub skip: Vec<String>,
/// Additively include a readiness tier beyond the default
/// `{mandatory, active}` set: `available` / `draft` / `archived`.
/// Repeatable / comma-joined. (#371)
#[arg(long = "status", value_delimiter = ',', env = "FAUCET_STATUS",
add = ArgValueCandidates::new(completions::status_candidates))]
pub status: Vec<String>,
/// Narrow the eligible set to rows carrying any listed tag (union).
/// Cannot resurrect a non-eligible row — raise `--status` for that.
/// Repeatable / comma-joined. (#376)
#[arg(long = "tag", value_delimiter = ',', env = "FAUCET_TAGS",
add = ArgValueCandidates::new(completions::tag_candidates))]
pub tags: Vec<String>,
/// How a selected row's `parent:` / `depends_on:` ancestors are resolved
/// when not independently selected: `off` (default, strict — error on a
/// missing ancestor), `eligible`, or `all`. Overrides
/// `selection.include_parents` in the config. (#377)
#[arg(long = "include-parents", env = "FAUCET_INCLUDE_PARENTS")]
pub include_parents: Option<String>,
}
/// `faucet` — config-driven runner for faucet-stream pipelines.
#[derive(Debug, Parser)]
#[command(name = "faucet", version, about, long_about = None)]
pub struct Cli {
/// Override the global log level (also honors `FAUCET_LOG`).
#[arg(long, global = true, env = "FAUCET_LOG", default_value = "info")]
pub log_level: String,
#[command(subcommand)]
pub command: Command,
}
/// Top-level subcommands.
#[derive(Debug, Subcommand)]
pub enum Command {
/// Execute a pipeline config end-to-end.
Run(RunArgs),
/// Replay a bounded historical window of a pipeline: chunk --from/--to
/// into window units, run them with bounded parallelism, and record
/// durable, resumable progress. Exits non-zero if any unit fails.
Backfill(BackfillArgs),
/// Bulk-snapshot a database table, then stream CDC from a position captured
/// before the snapshot (a true mirror with `write_mode: upsert`).
/// Long-running when `replication.continuous` is true (Ctrl-C / SIGTERM to stop).
Replicate(ReplicateArgs),
/// Connect to a config's source, enumerate the datasets behind it
/// (tables / collections / indices / prefixes), and emit a ready-to-run
/// config with one matrix row per dataset.
Discover(DiscoverArgs),
/// Parse + validate a pipeline config without running it.
Validate(ValidateArgs),
/// Print the JSON Schema for a specific connector.
Schema(SchemaArgs),
/// List every compiled-in source, sink, and transform with a one-line
/// description (`--available` lists the whole connector registry instead).
List(ListArgs),
/// Search the connector registry index for connectors by name / keyword.
Search(SearchArgs),
/// Score each connector's conformance to the faucet SDK contract and print
/// its maturity tier (Stable / Experimental / Beta / Draft) + capabilities.
Conformance(ConformanceArgs),
/// Show how to install or enable a connector from the registry index
/// (prints the recipe; never executes anything).
Install(InstallArgs),
/// Run only the source side and print records to stdout (uses the stdout sink).
Preview(PreviewArgs),
/// Read-only preview of what a config would do: resolved pipeline, inferred
/// output schema, sink schema delta, lineage, and target sinks — zero writes.
Plan(PlanArgs),
/// Watch a config and re-run a sample offline on every save, printing a
/// live diff of the output. Requires the `cli-dev` build feature.
#[cfg(feature = "cli-dev")]
Dev(DevArgs),
/// Scaffold a starter `pipeline.yaml` to disk.
Init(InitArgs),
/// Scaffold a new artifact — currently a third-party connector crate.
New(NewArgs),
/// Probe every connector in a config (auth / network / permissions) and
/// print a green/red checklist. Exits non-zero if any probe fails.
Doctor(DoctorArgs),
/// Run fixture-based offline pipeline tests from one or more spec files.
/// No real source or sink is touched. Exits non-zero if any case fails.
Test(TestArgs),
/// Inspect, replay, or discard dead-letter-queue envelopes written by a
/// pipeline's `dlq:` sink.
Dlq(DlqArgs),
/// Validate a config's `contract:` block and print a summary, or export
/// it in a machine-readable format (`--export`).
#[cfg(feature = "contract")]
Contract(ContractArgs),
/// Validate a config's `masking:` block and print which rules apply to
/// each destination sink.
#[cfg(feature = "masking")]
Masking(MaskingArgs),
/// Run a pipeline on a cron schedule (long-running; Ctrl-C / SIGTERM to stop).
#[cfg(feature = "schedule")]
Schedule(ScheduleArgs),
/// Run a long-running HTTP control plane (submit / poll / cancel pipeline runs).
#[cfg(feature = "serve")]
Serve(ServeArgs),
/// Run an MCP (Model Context Protocol) server over stdio, exposing faucet's
/// introspection surfaces as agent tool calls (for Claude Desktop / Code).
#[cfg(feature = "mcp")]
Mcp(McpArgs),
/// Send a synthetic notification through a config's `notifications:` rules
/// to validate channel setup end-to-end (no pipeline runs).
#[cfg(feature = "notify")]
Notify(NotifyArgs),
/// Browse the Data Movement Catalog accumulated by a config's `catalog:`
/// store — datasets, schema timelines, volume/freshness, lineage.
#[cfg(feature = "catalog")]
Catalog(CatalogArgs),
/// Register a parameterized config once, then trigger runs by id + params.
/// The registry is shared with `faucet serve` — point both at the same
/// store URL and templates registered here are triggerable over HTTP.
#[cfg(feature = "templates")]
Template(TemplateArgs),
/// Generate a shell tab-completion script (bash / zsh / fish / powershell /
/// elvish). For registry- and config-aware *dynamic* completion, enable the
/// `COMPLETE` hook instead, e.g. `source <(COMPLETE=zsh faucet)`.
Completions(CompletionsArgs),
/// Upgrade a config written against an older `faucet` grammar to the current
/// shape (e.g. pre-`pipeline:` top-level source/sink, legacy inline auth).
/// Idempotent; rewrites in place unless `--check` / `--stdout`.
Migrate(MigrateArgs),
/// Canonicalize a config: stable key order, normalized style. Idempotent;
/// rewrites in place unless `--check` / `--stdout`. Comments are not
/// preserved (the config is parsed and re-serialized).
Fmt(FmtArgs),
/// Explain, in plain English, what a pipeline config does — source →
/// transforms → sink, matrix expansion, replication, delivery guarantee,
/// and state store. Read-only and fully offline (no source is touched).
Explain(ExplainArgs),
/// Show recent run history recorded in a config's `catalog:` store —
/// status, duration, throughput, and bookmark. Read-only; requires the
/// `catalog` build feature.
#[cfg(feature = "catalog")]
History(HistoryArgs),
}
/// `faucet migrate` arguments.
#[derive(Debug, Args)]
pub struct MigrateArgs {
/// Config file to migrate. Auto-discovered (`faucet.yaml` → `.yml` →
/// `.json`) when omitted.
#[arg(value_hint = clap::ValueHint::FilePath)]
pub config: Option<PathBuf>,
/// Report whether a migration is needed without writing (exits non-zero if
/// the config is not current). For CI / pre-upgrade checks.
#[arg(long)]
pub check: bool,
/// Write the migrated config to stdout instead of rewriting the file.
#[arg(long, conflicts_with = "check")]
pub stdout: bool,
}
/// `faucet fmt` arguments.
#[derive(Debug, Args)]
pub struct FmtArgs {
/// Config file(s) to format. Auto-discovered (`faucet.yaml` → `.yml` →
/// `.json`) when none are given.
#[arg(value_hint = clap::ValueHint::FilePath)]
pub configs: Vec<PathBuf>,
/// Report whether each file is already canonical without writing (exits
/// non-zero and prints a unified diff for any file that is not). For CI.
#[arg(long)]
pub check: bool,
/// Write the formatted result to stdout instead of rewriting the file(s).
#[arg(long, conflicts_with = "check")]
pub stdout: bool,
}
/// `faucet explain` arguments.
#[derive(Debug, Args)]
pub struct ExplainArgs {
/// Path to a `.yaml`/`.yml`/`.json` config (auto-discovered if omitted).
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Emit the narration as structured JSON instead of prose.
#[arg(long)]
pub json: bool,
/// Narrate every matrix row instead of summarizing a large matrix.
#[arg(long)]
pub rows: bool,
}
/// `faucet history` arguments.
#[cfg(feature = "catalog")]
#[derive(Debug, Args)]
pub struct HistoryArgs {
/// Path to a config carrying a `catalog:` block (auto-discovered if omitted).
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Maximum number of runs to show, newest first.
#[arg(long, default_value_t = 20)]
pub limit: usize,
/// Show only runs that contain an invocation for this matrix row id.
#[arg(long)]
pub row: Option<String>,
/// Emit the history as JSON instead of a table.
#[arg(long)]
pub json: bool,
}
/// `faucet completions` arguments.
#[derive(Debug, Args)]
pub struct CompletionsArgs {
/// Target shell.
pub shell: clap_complete::aot::Shell,
}
/// `faucet catalog` arguments.
#[cfg(feature = "catalog")]
#[derive(Debug, Parser)]
pub struct CatalogArgs {
#[command(subcommand)]
pub command: CatalogCommand,
}
/// `faucet catalog` subcommands.
#[cfg(feature = "catalog")]
#[derive(Debug, Subcommand)]
pub enum CatalogCommand {
/// List every catalogued dataset (newest activity first).
Datasets(CatalogDatasetsArgs),
/// Show one dataset's detail: schema timeline, volume points, edges.
Show(CatalogShowArgs),
/// Print the dataset lineage graph (optionally rooted at a dataset).
Lineage(CatalogLineageArgs),
}
/// Shared config-loading flags for the `faucet catalog` subcommands.
#[cfg(feature = "catalog")]
#[derive(Debug, Parser)]
pub struct CatalogConfigArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a
/// `catalog:` block naming the store. If omitted, auto-discover
/// `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
#[arg(long)]
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
/// Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Emit machine-readable JSON instead of the human summary.
#[arg(long)]
pub json: bool,
}
/// `faucet catalog datasets` arguments.
#[cfg(feature = "catalog")]
#[derive(Debug, Parser)]
pub struct CatalogDatasetsArgs {
#[command(flatten)]
pub common: CatalogConfigArgs,
/// Only datasets of this connector kind (e.g. `postgres`, `csv`).
#[arg(long)]
pub kind: Option<String>,
/// Case-insensitive substring match on the dataset URI.
#[arg(long)]
pub q: Option<String>,
/// Max datasets to list.
#[arg(long, default_value_t = 100)]
pub limit: usize,
}
/// `faucet catalog show <id>` arguments.
#[cfg(feature = "catalog")]
#[derive(Debug, Parser)]
pub struct CatalogShowArgs {
/// Dataset id (from `faucet catalog datasets`), or a unique prefix of one.
pub id: String,
#[command(flatten)]
pub common: CatalogConfigArgs,
}
/// `faucet catalog lineage` arguments.
#[cfg(feature = "catalog")]
#[derive(Debug, Parser)]
pub struct CatalogLineageArgs {
#[command(flatten)]
pub common: CatalogConfigArgs,
/// Dataset id to root the graph at (whole graph when omitted).
#[arg(long)]
pub root: Option<String>,
/// BFS hop bound around --root.
#[arg(long, default_value_t = 5)]
pub depth: u32,
}
/// `faucet template` arguments (#444).
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateArgs {
#[command(subcommand)]
pub command: TemplateCommand,
}
/// `faucet template` subcommands.
#[cfg(feature = "templates")]
#[derive(Debug, Subcommand)]
pub enum TemplateCommand {
/// Validate a config and register it as a new template version.
Register(TemplateRegisterArgs),
/// List registered templates (newest version of each, plus its release state).
List(TemplateListArgs),
/// Show one template: its params, config body, and versions.
Show(TemplateShowArgs),
/// Make a version live — what unpinned runs will use. The one action that
/// moves existing callers; registering a build never does.
Launch(TemplateLaunchArgs),
/// Re-launch the previously launched version.
Rollback(TemplateRollbackArgs),
/// Retire a template (or revive one with `--undo`).
Deprecate(TemplateDeprecateArgs),
/// Point a named environment channel (`prod`, `staging`, …) at a version.
Promote(TemplatePromoteArgs),
/// Delete one version, or every version, of a template.
Delete(TemplateDeleteArgs),
/// Materialize a template with the given params and run it locally.
Run(TemplateRunArgs),
}
/// Where the template registry lives — shared by every `faucet template`
/// subcommand.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateStoreArgs {
/// Registry store URL: `sqlite:<path>`, a `postgres://…` URL, or `memory`
/// (process-lifetime only — useful for a smoke test). Point
/// `faucet serve --history` at the same URL to trigger these templates over
/// HTTP. SQL backends need the matching `serve-history-sqlite` /
/// `serve-history-postgres` build feature.
#[arg(long, env = "FAUCET_TEMPLATE_STORE")]
pub store: String,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Emit machine-readable JSON instead of the human summary.
#[arg(long)]
pub json: bool,
}
/// `faucet template register <config>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateRegisterArgs {
/// Path to the `.yaml`, `.yml`, or `.json` config to register. Stored
/// verbatim, so `${env:…}` / `${vault:…}` stay unresolved and are resolved
/// when a run is triggered.
#[arg(value_hint = clap::ValueHint::FilePath)]
pub config: PathBuf,
/// Registry id. Derived from the config's `name:` when omitted.
#[arg(long)]
pub id: Option<String>,
/// Free-text description shown by `list` / `show`.
#[arg(long)]
pub description: Option<String>,
/// Point a named channel at the newly registered version, e.g.
/// `--tag dev --tag test`. The version number itself always auto-increments;
/// channels come from a fixed set (`dev`, `test`, `staging`, `pre-prod`,
/// `canary`, `stable`, `prod`, `previous`). `latest` is derived and always
/// names the newest version, so it cannot be assigned.
#[arg(long = "tag", value_name = "CHANNEL")]
pub tag: Vec<String>,
/// Launch the new version immediately, making it the one unpinned runs use.
/// Without this the version is registered but inert — a new build never moves
/// existing callers until you launch it.
#[arg(long)]
pub launch: bool,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template promote <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplatePromoteArgs {
/// Template id.
pub id: String,
/// Channel to move: `dev`, `test`, `staging`, `pre-prod`, `canary`, or
/// `prod`. The derived channels (`stable`, `previous`, `newest`) cannot be
/// promoted — `stable` moves with `faucet template launch`.
#[arg(long = "tag", value_name = "CHANNEL")]
pub tag: String,
/// What to point it at: a version number, or another channel whose current
/// target should be copied (`--tag prod --version pre-prod`). Defaults to
/// `stable`, the currently launched version.
#[arg(long, default_value = "stable")]
pub version: String,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template launch <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateLaunchArgs {
/// Template id.
pub id: String,
/// Which version to make live: a number, or a channel whose current target to
/// copy (`--version pre-prod` launches whatever passed pre-prod). Defaults to
/// `newest` — launching what you just registered is the common case.
#[arg(long, default_value = "newest")]
pub version: String,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template rollback <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateRollbackArgs {
/// Template id.
pub id: String,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template deprecate <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateDeprecateArgs {
/// Template id.
pub id: String,
/// Why it is being retired — shown to anyone who triggers it.
#[arg(long)]
pub reason: Option<String>,
/// Revive a deprecated template instead of retiring it.
#[arg(long)]
pub undo: bool,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template list` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateListArgs {
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template show <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateShowArgs {
/// Template id.
pub id: String,
/// Version to show: a number, or a named channel (`stable` — the default,
/// i.e. the launched version — `newest`, `previous`, `prod`, `dev`, …).
#[arg(long, default_value = "stable")]
pub version: String,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template delete <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateDeleteArgs {
/// Template id.
pub id: String,
/// Delete only this version — a number, or a named channel (`latest`,
/// `prod`, …) resolved to the version it points at. Omitted = delete every
/// version of the template.
#[arg(long)]
pub version: Option<String>,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet template run <id>` arguments.
#[cfg(feature = "templates")]
#[derive(Debug, Parser)]
pub struct TemplateRunArgs {
/// Template id.
pub id: String,
/// Version to run: a number, or a named channel. Defaults to `stable` — the
/// launched version — so an unpinned run never picks up a build that has not
/// been launched. Use `newest` to run the most recent build regardless.
#[arg(long, default_value = "stable")]
pub version: String,
/// Supply a declared param: `--param tenant_id=acme`. Repeatable.
#[arg(long = "param", value_name = "NAME=VALUE")]
pub param: Vec<String>,
/// Override an environment variable for this materialization only:
/// `--param-env REGION=eu`, or bare `--param-env TOKEN` to take it from the
/// caller's environment. Repeatable.
#[arg(long = "param-env", value_name = "NAME[=VALUE]")]
pub param_env: Vec<String>,
/// Materialize and validate without running (prints the resolved config).
#[arg(long)]
pub dry_run: bool,
/// Stop after writing this many records to the sink.
#[arg(long)]
pub limit: Option<usize>,
#[command(flatten)]
pub common: TemplateStoreArgs,
}
/// `faucet notify test` arguments.
#[cfg(feature = "notify")]
#[derive(Debug, Parser)]
pub struct NotifyArgs {
#[command(subcommand)]
pub command: NotifyCommand,
}
/// `faucet notify` subcommands.
#[cfg(feature = "notify")]
#[derive(Debug, Subcommand)]
pub enum NotifyCommand {
/// Fire one synthetic event at every matching rule in the config.
Test(NotifyTestArgs),
}
/// `faucet notify test <config>` arguments.
#[cfg(feature = "notify")]
#[derive(Debug, Parser)]
pub struct NotifyTestArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a
/// `notifications:` block. If omitted, auto-discover in cwd.
pub config: Option<PathBuf>,
/// Which event to synthesize (defaults to `run_failure`).
#[arg(long, default_value = "run_failure")]
pub event: String,
/// Path to a `.env` file for `${env:VAR}` interpolation.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Disable `.env` auto-discovery.
#[arg(long)]
pub no_env_file: bool,
}
/// `faucet test` arguments.
#[derive(Debug, Parser)]
pub struct TestArgs {
/// One or more test-spec files (`.yaml`, `.yml`, or `.json`), e.g.
/// `faucet test tests/*.yaml`.
#[arg(required = true)]
pub specs: Vec<PathBuf>,
/// Run only cases whose name contains this substring.
#[arg(long)]
pub filter: Option<String>,
/// Emit a machine-readable JSON report instead of the human checklist.
#[arg(long)]
pub json: bool,
/// Default `${now.*}` clock for cases without their own `clock:` field
/// (RFC3339 like `2026-01-31T00:00:00Z`, or a date `2026-01-31`).
/// Defaults to process start (UTC).
#[arg(long)]
pub clock: Option<String>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation in
/// referenced pipeline configs. Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from each referenced config's `profiles:` block.
/// Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Resolve `${vault:…}` / `${aws-sm:…}` / … secret directives in
/// referenced configs (requires network + credentials). By default tests
/// load configs offline and leave secret directives unresolved — safe
/// because the real source/sink configs holding them are never used.
#[arg(long)]
pub resolve_secrets: bool,
}
/// `faucet dlq` arguments.
#[derive(Debug, Parser)]
pub struct DlqArgs {
#[command(subcommand)]
pub command: DlqCommand,
}
/// `faucet dlq` subcommands.
#[derive(Debug, Subcommand)]
pub enum DlqCommand {
/// Read a DLQ location back and print a per-reason / per-error-kind
/// breakdown plus a sample of quarantined records.
Inspect(DlqInspectArgs),
/// Re-feed quarantined records through a pipeline config (transforms →
/// quality → contract → sink). Rows that fail again land in a *fresh* DLQ.
Replay(DlqReplayArgs),
/// Remove processed envelopes from a DLQ location (archive by default,
/// or `--delete`), filtered by reason and/or age.
Discard(DlqDiscardArgs),
}
/// `faucet dlq inspect <location>` arguments.
#[derive(Debug, Parser)]
pub struct DlqInspectArgs {
/// DLQ location: a `.jsonl` file, a directory of `*.jsonl` files, or a glob.
pub location: String,
/// Only include envelopes with this DLQ reason (`partial` / `dlq_all` /
/// `quality` / `schema_drift` / `contract`).
#[arg(long)]
pub reason: Option<String>,
/// Number of sample records to show. Default: 5.
#[arg(long, default_value_t = 5)]
pub limit: usize,
/// Key for a DLQ sealed at rest by the jsonl sink's `encryption` block.
/// Repeat the flag to also try older (rotated) keys. Requires a build
/// with the `encryption` feature.
#[arg(long = "encryption-key")]
pub encryption_key: Vec<String>,
/// Emit a machine-readable JSON summary instead of the human report.
#[arg(long)]
pub json: bool,
}
/// `faucet dlq replay <config> --from <location>` arguments.
#[derive(Debug, Parser)]
pub struct DlqReplayArgs {
/// Path to the pipeline config whose sink / transforms / quality / contract
/// the replayed records flow through. If omitted, auto-discover in cwd.
pub config: Option<PathBuf>,
/// DLQ location to replay from: a `.jsonl` file, a directory, or a glob.
#[arg(long)]
pub from: String,
/// Only replay envelopes with this DLQ reason.
#[arg(long)]
pub reason: Option<String>,
/// Where replayed rows that fail *again* are quarantined. Defaults to a
/// `replay-failed.jsonl` sibling of the source (never the source itself).
#[arg(long)]
pub failed_dlq: Option<String>,
/// Which root row of the config to replay through. Defaults to the first root.
#[arg(long)]
pub row: Option<String>,
/// Report what would be replayed without writing to the sink.
#[arg(long)]
pub dry_run: bool,
/// Key for a DLQ sealed at rest by the jsonl sink's `encryption` block.
/// Repeat the flag to also try older (rotated) keys. Requires a build
/// with the `encryption` feature.
#[arg(long = "encryption-key")]
pub encryption_key: Vec<String>,
/// (Replay picks up the config's own dlq `encryption` block automatically
/// when no key is passed.)
/// Emit a machine-readable JSON result instead of the human summary.
#[arg(long)]
pub json: bool,
/// Path to a `.env` file for `${env:VAR}` interpolation in the config.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet dlq discard <location>` arguments.
#[derive(Debug, Parser)]
pub struct DlqDiscardArgs {
/// DLQ location: a `.jsonl` file, a directory of `*.jsonl` files, or a glob.
pub location: String,
/// Only discard envelopes with this DLQ reason.
#[arg(long)]
pub reason: Option<String>,
/// Only discard envelopes older than this: an RFC3339 timestamp
/// (`2026-06-01T00:00:00Z`) or a relative age (`7d`, `24h`, `30m`).
#[arg(long)]
pub before: Option<String>,
/// Permanently delete matching envelopes instead of archiving them to a
/// `<file>.archived.jsonl` sibling.
#[arg(long)]
pub delete: bool,
/// Key for a DLQ sealed at rest by the jsonl sink's `encryption` block.
/// Repeat the flag to also try older (rotated) keys. Requires a build
/// with the `encryption` feature.
#[arg(long = "encryption-key")]
pub encryption_key: Vec<String>,
/// Emit a machine-readable JSON result instead of the human summary.
#[arg(long)]
pub json: bool,
}
/// `faucet doctor` arguments.
#[derive(Debug, Parser)]
pub struct DoctorArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config. If omitted,
/// auto-discover `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Per-probe timeout in seconds.
#[arg(long, default_value_t = 10)]
pub timeout_secs: u64,
/// Emit machine-readable JSON instead of the human checklist.
#[arg(long)]
pub json: bool,
/// Run only the offline static config lints (no network probes): dangling /
/// unreferenced `auth:` providers, unused `vars:`, and no-op sink
/// `batch_size: 0`. Fast and credential-free — ideal for CI. Exits non-zero
/// on any lint *error* (warnings don't fail).
#[arg(long)]
pub offline: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet contract` arguments.
#[cfg(feature = "contract")]
#[derive(Debug, Parser)]
pub struct ContractArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a
/// `pipeline.contract:` block. If omitted, auto-discover
/// `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Export the contract in a machine-readable format instead of the
/// human summary: the canonical contract JSON, a standalone JSON Schema,
/// or an OpenLineage schema facet.
#[arg(long, value_enum)]
pub export: Option<ContractExportFormat>,
}
/// Arguments for `faucet masking`.
#[cfg(feature = "masking")]
#[derive(Debug, Parser)]
pub struct MaskingArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a
/// `pipeline.masking:` block. If omitted, auto-discover
/// `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// Export format for `faucet contract --export`.
#[cfg(feature = "contract")]
#[derive(Debug, Clone, Copy, PartialEq, Eq, clap::ValueEnum)]
pub enum ContractExportFormat {
/// The canonical contract document as JSON.
Contract,
/// A standalone JSON Schema (draft 2020-12) for the promised records.
JsonSchema,
/// An OpenLineage `SchemaDatasetFacet` JSON document.
Openlineage,
}
/// `faucet schedule` arguments.
#[cfg(feature = "schedule")]
#[derive(Debug, Parser)]
pub struct ScheduleArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a `schedule:`
/// block. If omitted, auto-discover `faucet.yaml` / `.yml` / `.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Run exactly one pipeline run immediately, then exit (ignores cron timing).
/// Useful for platform-driven invocation (k8s CronJob / systemd OnCalendar).
#[arg(long)]
pub once: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet serve` arguments.
#[cfg(feature = "serve")]
#[derive(Debug, Clone, Parser)]
pub struct ServeArgs {
/// Bind address. Defaults to loopback; set 0.0.0.0:PORT to expose externally.
#[arg(long, env = "FAUCET_SERVE_LISTEN", default_value = "127.0.0.1:8080")]
pub listen: String,
/// Bearer token required on /v1/* requests. Prefer the env var (avoids `ps` leakage).
#[arg(long, env = "FAUCET_SERVE_AUTH_TOKEN", conflicts_with = "no_auth")]
pub auth_token: Option<String>,
/// Explicitly disable authentication. Required if no token is set, so an
/// unauthenticated server is never accidental.
#[arg(long)]
pub no_auth: bool,
/// Path to an RBAC auth config (YAML/JSON) defining principals — each a
/// `{ name, token, role }` where role is `viewer` / `operator` / `admin`.
/// Enables role-based access control + an audit log. Mutually exclusive with
/// `--auth-token` / `--no-auth`.
#[arg(long, conflicts_with_all = ["auth_token", "no_auth"])]
pub auth_config: Option<std::path::PathBuf>,
/// Max pipeline runs executing at once. Default: min(16, cpu count).
#[arg(long)]
pub max_concurrent_runs: Option<usize>,
/// Max queued (not-yet-running) runs before POST /v1/runs returns 429.
/// Default: 8 × max-concurrent-runs.
#[arg(long)]
pub max_queued_runs: Option<usize>,
/// Workspace-default config merged under every submitted run.
#[arg(long)]
pub default_config: Option<std::path::PathBuf>,
/// Run-history backend URL: omitted = in-memory; postgres://… ; sqlite:… .
#[arg(long)]
pub history: Option<String>,
/// CORS allow-list origin (repeatable). Omitted = CORS disabled.
#[arg(long)]
pub cors_origin: Vec<String>,
/// Max POST /v1/runs body size in bytes (413 on exceed).
#[arg(long, default_value_t = 1_048_576)]
pub body_limit_bytes: usize,
/// SIGTERM/SIGINT drain window in seconds.
#[arg(long, default_value_t = 60)]
pub shutdown_grace_secs: u64,
/// Retain terminal run records this long (seconds).
#[arg(long, default_value_t = 604_800)]
pub retain_terminal_runs_secs: u64,
/// Idempotency-key replay window (seconds).
#[arg(long, default_value_t = 86_400)]
pub idempotency_retention_secs: u64,
/// Run-ownership lease TTL in seconds (multi-instance orphan fencing). A run
/// is owned by the instance executing it and its lease is heartbeated at
/// ~⅓ of this interval; only a run whose lease has expired (owner presumed
/// dead) is recovered as failed. Make this comfortably larger than expected
/// GC/IO stalls so a healthy-but-slow instance is never falsely reclaimed.
/// Only relevant with a persistent (postgres/sqlite) history backend.
#[arg(long, default_value_t = 30)]
pub lease_ttl_secs: u64,
/// Per-probe timeout for `doctor_first` preflight (seconds).
#[arg(long, default_value_t = 10)]
pub probe_timeout_secs: u64,
/// Path to a `.env` file loaded for the server's own startup interpolation.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<std::path::PathBuf>,
/// Skip auto-loading `.env` from cwd at startup.
#[arg(long)]
pub no_env_file: bool,
/// Disable serving the embedded web console (only meaningful in a build that
/// includes the `serve-ui` feature; the API is unaffected).
#[arg(long)]
pub no_ui: bool,
/// Enable clustered execution: run a claim loop that pulls Pending runs from
/// the shared history DB so N instances pull-balance and fail over. Requires
/// a postgres/sqlite --history backend.
#[arg(long)]
pub cluster: bool,
/// Claim-loop poll interval (seconds) in cluster mode. Also the
/// cross-instance cancel-propagation lag. Must be > 0.
#[arg(long, default_value_t = 2)]
pub cluster_poll_secs: u64,
/// Max failover re-runs of an orphaned run before it is marked Failed
/// (poison). Must be > 0.
#[arg(long, default_value_t = 3)]
pub cluster_max_attempts: u32,
/// Path to a triggers file (YAML/JSON) defining event-driven pipeline
/// triggers (object-arrival / webhook / queue-depth). Requires a build with
/// the `triggers` feature. See `faucet schema triggers`.
#[arg(long)]
pub triggers: Option<std::path::PathBuf>,
/// Restrict per-run completion callbacks (`callback` on a submit) to these
/// hosts. Repeatable. When unset, any host is permitted **except**
/// link-local / cloud-metadata addresses, which are always refused unless
/// named here. See the HTTP API reference for the egress posture.
#[arg(long = "callback-allow-host")]
pub callback_allow_host: Vec<String>,
/// Mount the MCP (Model Context Protocol) endpoint at `/mcp`, exposing
/// faucet as agent tool calls. Effective only in a build with the `mcp`
/// feature; the endpoint inherits serve's bearer-auth + RBAC + audit.
#[arg(long)]
pub mcp: bool,
/// Allow the MCP endpoint's *mutating* tools (`run_pipeline`). Off by
/// default: only read-only tools are exposed. A caller still needs the
/// `RunWrite` RBAC scope. Only meaningful together with `--mcp`.
#[arg(long)]
pub mcp_allow_mutations: bool,
}
/// `faucet mcp` arguments — run an MCP server over stdio (#420).
#[cfg(feature = "mcp")]
#[derive(Debug, Clone, Parser)]
pub struct McpArgs {
/// Allow mutating tools (`run_pipeline`). Off by default — only read-only
/// tools (list / schema / scaffold / validate / preview) are exposed.
/// stdio is local-trust: there is no bearer/RBAC layer, so enable this only
/// for a trusted local agent.
#[arg(long)]
pub allow_mutations: bool,
/// Optional `.env` file to load before starting (for `${env:…}` in configs
/// passed to `validate`/`preview`/`run_pipeline`).
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<std::path::PathBuf>,
/// Skip auto-loading `.env` from cwd at startup.
#[arg(long)]
pub no_env_file: bool,
/// Pipeline-template registry to expose (#444): `sqlite:<path>`, a
/// `postgres://…` URL, or `memory`. Enables the `list_templates` /
/// `get_template` tools (plus `register_template` / `run_template` with
/// `--allow-mutations`). Omitted = no template tools are advertised.
#[cfg(feature = "templates")]
#[arg(long, env = "FAUCET_TEMPLATE_STORE")]
pub template_store: Option<String>,
}
/// `faucet run` arguments.
///
/// `Default` is derived so callers that execute an already-loaded config through
/// `commands::run::execute` (notably `faucet template run`) can build a
/// plain-run argument set without restating every flag.
#[derive(Debug, Parser, Default)]
pub struct RunArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config.
/// If omitted (and `--from-env` is not set), auto-discover
/// `faucet.yaml` / `faucet.yml` / `faucet.json` in the current directory.
/// Mutually exclusive with `--from-env`.
#[arg(conflicts_with = "from_env")]
pub config: Option<PathBuf>,
/// Build the pipeline entirely from `FAUCET_*` environment variables —
/// no YAML required. See `cli/README.md` for the variable schema.
#[arg(long)]
pub from_env: bool,
/// Path to a `.env` file to load before reading variables. Works in both
/// YAML mode (for `${env:VAR}` interpolation) and `--from-env` mode.
/// When omitted, `.env` in the current directory is auto-loaded if present.
/// Existing process-env values always win over file-supplied ones.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from the current directory.
#[arg(long)]
pub no_env_file: bool,
/// Stop after fetching from the source — write nothing to the sink.
#[arg(long)]
pub dry_run: bool,
/// Stop after writing this many records to the sink. Default: unlimited.
#[arg(long)]
pub limit: Option<usize>,
/// Override the state-store directory (file backend only).
#[arg(long)]
pub state_path: Option<PathBuf>,
/// Override the `${now.*}` interpolation clock (RFC3339 like
/// `2026-01-31T00:00:00Z`, or a date `2026-01-31`). Default: process start (UTC).
/// Use for backfills.
#[arg(long)]
pub clock: Option<String>,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
/// Not applicable in `--from-env` mode (no config file to compose).
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Show a live full-screen terminal UI (per-invocation throughput, errors,
/// DLQ counts, bookmark age) while the pipeline runs. Requires a binary
/// built with the `cli-tui` feature and a real terminal on stdout —
/// on a non-TTY (CI, pipes) the run proceeds normally with a notice.
/// Press `q` to cancel cooperatively (in-flight work flushes at the next
/// page boundary).
#[arg(long)]
pub tui: bool,
/// Suppress the inline live progress line (records in/out, rows/s, pages,
/// elapsed) that `faucet run` shows on an interactive terminal. The
/// progress line is already auto-disabled on a non-TTY stdout (CI, pipes)
/// and when `--tui` is used; `--quiet` turns it off explicitly, keeping
/// only the periodic log output.
#[arg(long)]
pub quiet: bool,
/// Format for the end-of-run summary: `text` (default, human — written to
/// **stderr** so stdout stays clean for the sink), `json` (a single
/// machine-readable document on **stdout**), or `ndjson` (one JSON object
/// per matrix row on **stdout**). With `json`/`ndjson`, stdout carries only
/// the summary — logs stay on stderr — so `faucet run` is scriptable.
#[arg(long, value_enum, default_value_t = RunOutput::Text)]
pub output: RunOutput,
/// Supply a value for a `params:` entry declared by the config (#444):
/// `--param tenant_id=acme`. Repeatable. Values are coerced to the declared
/// type, so `--param page=50` satisfies a `type: int` param. A param with a
/// `default` needs no flag; a `required` one errors when unsupplied.
#[arg(long = "param", value_name = "NAME=VALUE")]
pub param: Vec<String>,
/// Override an environment variable for this run's `${env:VAR}` resolution
/// only (#444): `--param-env REGION=eu` sets it, bare `--param-env TOKEN`
/// takes the value from the caller's environment. Repeatable. The process
/// environment is not modified.
#[arg(long = "param-env", value_name = "NAME[=VALUE]")]
pub param_env: Vec<String>,
/// Runtime matrix-row selection (`--select`/`--only`/`--skip`/`--status`/
/// `--tag`/`--include-parents`).
#[command(flatten)]
pub selection: SelectionArgs,
}
/// Format for `faucet run`'s end-of-run summary.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, clap::ValueEnum)]
pub enum RunOutput {
/// Human-readable one-line summary (default).
#[default]
Text,
/// A single machine-readable JSON document with per-row + total stats.
Json,
/// One JSON object per matrix row (newline-delimited) for streaming consumers.
Ndjson,
}
/// `faucet backfill` arguments.
#[derive(Debug, Parser)]
pub struct BackfillArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config. If omitted,
/// auto-discover `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Window start (inclusive): RFC3339 (`2026-06-01T00:00:00Z`) or a date
/// (`2026-06-01`, midnight in --timezone). Requires --to.
#[arg(long, requires = "to", conflicts_with = "from_bookmark")]
pub from: Option<String>,
/// Window end (exclusive): RFC3339 or a date.
#[arg(long, requires = "from", conflicts_with = "from_bookmark")]
pub to: Option<String>,
/// Chunk the range into windows of this duration (`45s`, `30m`, `6h`,
/// `1d`, `1w`) so each chunk is an independent, resumable unit. Defaults
/// to the config's `backfill.window`; omitted = one unit for the whole
/// range.
#[arg(long)]
pub window: Option<String>,
/// Replay from this explicit bookmark value instead of a wall-clock
/// range (seeded into the backfill's scoped state key; the source's own
/// incremental logic reads forward from it). JSON or a bare string.
#[arg(long)]
pub from_bookmark: Option<String>,
/// Upper bookmark bound: records whose --bookmark-field orders after
/// this value are dropped before the sink.
#[arg(long, requires_all = ["from_bookmark", "bookmark_field"])]
pub to_bookmark: Option<String>,
/// Record field the --to-bookmark bound applies to.
#[arg(long)]
pub bookmark_field: Option<String>,
/// Max concurrently-running window units. Defaults to the config's
/// `backfill.concurrency`, else 1 (sequential).
#[arg(long)]
pub concurrency: Option<usize>,
/// IANA timezone for date boundaries and `${now.*}` rendering. Defaults
/// to the config's `backfill.timezone`, else UTC.
#[arg(long)]
pub timezone: Option<String>,
/// Root row of the config to backfill. Defaults to the only root.
#[arg(long)]
pub row: Option<String>,
/// Redirect writes to this named sink template under `pipeline.sinks`
/// (backfill into a staging table first).
#[arg(long)]
pub into: Option<String>,
/// Print the planned units without running anything.
#[arg(long)]
pub dry_run: bool,
/// Continue a previously-interrupted backfill of the same range: skip
/// units already done, re-run failed and pending ones.
#[arg(long, conflicts_with = "restart")]
pub resume: bool,
/// Discard a previous progress marker for this range and start over.
#[arg(long)]
pub restart: bool,
/// Emit a machine-readable JSON report instead of the human summary.
#[arg(long)]
pub json: bool,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
/// Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet replicate` arguments.
#[derive(Debug, Parser)]
pub struct ReplicateArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config with a
/// `replication:` block. If omitted, auto-discover
/// `faucet.yaml` / `.yml` / `.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet discover` arguments.
#[derive(Debug, Parser)]
pub struct DiscoverArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config whose source
/// points at the system to introspect. If omitted, auto-discover
/// `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Which source template to introspect (an entry under `pipeline.sources`).
/// Defaults to `default` (the legacy singular `pipeline.source`).
#[arg(long)]
pub source: Option<String>,
/// Only include datasets whose name matches this `*`-wildcard pattern
/// (repeatable; no patterns = include everything).
#[arg(long)]
pub include: Vec<String>,
/// Exclude datasets whose name matches this `*`-wildcard pattern
/// (repeatable; applied after --include).
#[arg(long)]
pub exclude: Vec<String>,
/// Write the generated config to this file instead of stdout.
#[arg(long, short = 'o')]
pub output: Option<PathBuf>,
/// Overwrite the --output file if it already exists.
#[arg(long)]
pub force: bool,
/// Emit the discovered datasets as machine-readable JSON instead of a
/// generated config.
#[arg(long)]
pub json: bool,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block.
/// Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet validate` arguments.
#[derive(Debug, Parser)]
pub struct ValidateArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config. If omitted,
/// auto-discover `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Validate grammar and structure only — skip fetching from secrets
/// managers (no network / credentials needed).
#[arg(long)]
pub no_secrets: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Print the fully-composed config (after extends/!include/profile, before
/// `${...}` interpolation) and exit. For debugging composition precedence.
/// `--no-secrets` is redundant here (no interpolation or secret fetch occurs).
#[arg(long)]
pub show_composed: bool,
/// Supply a value for a declared `params:` entry (#444), e.g.
/// `--param tenant_id=acme`. Repeatable. Without any `--param`, a `required`
/// param is validated against a type-shaped placeholder — so a
/// parameterized config validates in CI without inventing real values.
/// Passing at least one `--param` switches to strict binding, checking that
/// every required param is supplied and every value has the declared type.
#[arg(long = "param", value_name = "NAME=VALUE")]
pub param: Vec<String>,
/// Override an environment variable for this validation only:
/// `--param-env REGION=eu`, or bare `--param-env TOKEN` to take it from the
/// caller's environment. Repeatable.
#[arg(long = "param-env", value_name = "NAME[=VALUE]")]
pub param_env: Vec<String>,
/// Runtime matrix-row selection — `validate` reports each row's resolved
/// status/tags and whether the selection would run or skip it.
#[command(flatten)]
pub selection: SelectionArgs,
}
/// `faucet schema` arguments.
#[derive(Debug, Parser)]
pub struct SchemaArgs {
#[command(subcommand)]
pub target: SchemaTarget,
}
/// Schema subcommand target — which connector or system component to describe.
#[derive(Debug, Subcommand)]
pub enum SchemaTarget {
/// Composed JSON Schema for the **entire** `faucet.yaml` / `faucet.json`
/// config document (top-level grammar + per-connector `type` discrimination).
/// Point an editor at it with a `# yaml-language-server: $schema=…` header.
Config,
/// JSON Schema for a source connector config.
Source {
/// Connector name (e.g. `rest`, `graphql`, `postgres`).
#[arg(add = ArgValueCandidates::new(completions::source_kind_candidates))]
name: String,
},
/// JSON Schema for a sink connector config.
Sink {
/// Connector name (e.g. `jsonl`, `bigquery`, `postgres`).
#[arg(add = ArgValueCandidates::new(completions::sink_kind_candidates))]
name: String,
},
/// JSON Schema for a transform's inline config.
Transform {
/// Transform name (e.g. `flatten`, `keys_case`, `cast`).
/// Run `faucet list` to see what is compiled in.
#[arg(add = ArgValueCandidates::new(completions::transform_candidates))]
name: String,
},
/// JSON Schema for the DLQ (Dead Letter Queue) specification.
Dlq,
/// JSON Schema for the `replication:` (snapshot→CDC) block.
Replication,
/// JSON Schema for the `backfill:` (window replay defaults) block.
Backfill,
/// JSON Schema for the `partition:` (range partitioning) block.
Partition,
/// JSON Schema for the top-level `execution:` block.
Execution,
/// JSON Schema for the top-level `resilience:` block.
Resilience,
/// JSON Schema for the top-level `sla:` (freshness/volume SLA) block.
Sla,
/// JSON Schema for the `quality:` block.
#[cfg(feature = "quality")]
Quality,
/// JSON Schema for the `contract:` block.
#[cfg(feature = "contract")]
Contract,
/// JSON Schema for the `masking:` (PII masking) block.
#[cfg(feature = "masking")]
Masking,
/// JSON Schema for the `faucet test` spec file.
Test,
/// Grammar reference for secrets-manager interpolation directives.
Secrets,
/// JSON Schema for the `schedule:` block.
#[cfg(feature = "schedule")]
Schedule,
/// JSON Schema for the `lineage:` (OpenLineage) block.
#[cfg(feature = "lineage")]
Lineage,
/// JSON Schema for the `--triggers` file (event-driven pipeline triggers).
#[cfg(feature = "triggers")]
Triggers,
/// JSON Schema for the `notifications:` (incident-routing) block.
#[cfg(feature = "notify")]
Notifications,
/// JSON Schema for the `catalog:` (Data Movement Catalog store) block.
#[cfg(feature = "catalog")]
Catalog,
/// JSON Schema for one entry of the `params:` (typed run parameters) block.
/// A config's `params:` maps names to entries of this shape; values are
/// supplied per run via `--param` or a template trigger.
Params,
}
/// `faucet preview` arguments.
#[derive(Debug, Parser)]
pub struct PreviewArgs {
/// Path to a `.yaml`, `.yml`, or `.json` pipeline config. If omitted,
/// auto-discover `faucet.yaml` / `faucet.yml` / `faucet.json` in cwd.
pub config: Option<PathBuf>,
/// Stop after this many records. Default: 10.
#[arg(long, default_value_t = 10)]
pub limit: usize,
/// Path to a `.env` file to load for `${env:VAR}` interpolation.
/// Defaults to `.env` in cwd if present.
#[arg(long, conflicts_with = "no_env_file")]
pub env_file: Option<PathBuf>,
/// Skip auto-loading `.env` from cwd.
#[arg(long)]
pub no_env_file: bool,
/// Select a named overlay from the config's `profiles:` block and deep-merge
/// it over the composed base. Overrides the `FAUCET_PROFILE` env var.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
/// Runtime matrix-row selection — `preview` previews the first root row of
/// the selected run set.
#[command(flatten)]
pub selection: SelectionArgs,
}
/// `faucet init` arguments.
#[derive(Debug, Parser)]
pub struct InitArgs {
/// Name written into the generated file's `name:` field. Defaults to
/// `my-pipeline` when omitted.
pub name: Option<String>,
/// Source connector kind to scaffold (e.g. `rest`, `postgres`, `s3`).
/// Defaults to `rest`. Run `faucet list` to see what is compiled in.
#[arg(long)]
pub source: Option<String>,
/// Sink connector kind to scaffold (e.g. `jsonl`, `bigquery`).
/// Defaults to `jsonl`. Run `faucet list` to see what is compiled in.
#[arg(long)]
pub sink: Option<String>,
/// Output file path. Defaults to `pipeline.yaml`.
#[arg(long, short = 'o', default_value = "pipeline.yaml")]
pub output: PathBuf,
/// Overwrite the output file if it already exists.
#[arg(long)]
pub force: bool,
/// Prompt for the source and sink kinds interactively instead of using
/// `--source` / `--sink`. Requires the `cli-interactive` build feature
/// and a TTY on stdin; falls back to the arg-driven path otherwise.
#[arg(long)]
pub interactive: bool,
/// Name of the template under which to register the scaffolded source
/// and sink. The generated config uses `pipeline.sources.<TEMPLATE>` and
/// `pipeline.sinks.<TEMPLATE>`. Defaults to `default` so a matrix row
/// without a `ref:` field still resolves through the new schema.
#[arg(long, default_value = "default")]
pub template: String,
/// (singer only) Run `<executable> --discover` to fetch the tap's catalog,
/// write it next to the output, and scaffold the config with the discovered
/// streams listed. Requires `--source singer` and `--executable`.
#[arg(long)]
pub discover: bool,
/// (singer only) The Singer tap executable to discover with (used by
/// `--discover`), e.g. `tap-github` or `/opt/taps/tap-csv`.
#[arg(long)]
pub executable: Option<String>,
/// (singer only) The target stream to emit. When given with `--discover`,
/// the written catalog marks this stream — and any inferable parent
/// streams (e.g. a parent-keyed tap's parent) — `selected`, and the
/// scaffolded config's `stream:` is set to it. Most DB / SDK taps sync
/// nothing unless a stream is selected in the catalog.
#[arg(long)]
pub stream: Option<String>,
}
/// `faucet plan` arguments.
#[derive(Debug, Parser)]
pub struct PlanArgs {
/// Path to a `.yaml`/`.yml`/`.json` config (auto-discovered if omitted).
pub config: Option<PathBuf>,
/// Which row to plan (default: the first root row).
#[arg(long)]
pub row: Option<String>,
/// Offline sample of input records (`.jsonl` or a `.json` array) to preview
/// the output schema, volume, and sink delta through — no source is touched.
#[arg(long)]
pub sample: Option<PathBuf>,
/// Pull a capped, read-only sample from the real source instead of a
/// fixture (bounded by `--limit`; no bookmark is advanced).
#[arg(long)]
pub live: bool,
/// Cap for `--live` sampling.
#[arg(long, default_value_t = 10)]
pub limit: usize,
/// Emit the plan as JSON.
#[arg(long)]
pub json: bool,
/// Show a `terraform plan`-style diff of the current config against the last
/// recorded run, instead of the resolved-pipeline preview (#374). Requires a
/// `catalog:` block. Resolves secrets so the diff matches what `run` records.
#[arg(long)]
pub diff: bool,
/// Resolve secrets-manager directives (needs network/credentials). Off by
/// default so `plan` works offline like `faucet test`. Implied by `--diff`.
#[arg(long)]
pub resolve_secrets: bool,
/// Select a `profiles:` overlay.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet dev` arguments.
#[derive(Debug, Parser)]
pub struct DevArgs {
/// Path to the `.yaml`/`.yml`/`.json` config to watch.
pub config: PathBuf,
/// Which row to run (default: the first root row).
#[arg(long)]
pub row: Option<String>,
/// Offline sample of input records (`.jsonl` or `.json` array). Required
/// for the offline loop.
#[arg(long)]
pub sample: Option<PathBuf>,
/// (reserved) pull a capped read-only sample from the real source.
#[arg(long)]
pub live: bool,
/// Cap for `--live` sampling.
#[arg(long, default_value_t = 10)]
pub limit: usize,
/// Run once and exit instead of watching (also the non-TTY fallback).
#[arg(long)]
pub once: bool,
/// Debounce window between re-runs, in milliseconds.
#[arg(long, default_value_t = 300)]
pub debounce_ms: u64,
/// Select a `profiles:` overlay.
#[arg(long, env = "FAUCET_PROFILE")]
pub profile: Option<String>,
}
/// `faucet list` arguments.
#[derive(Debug, Parser)]
pub struct ListArgs {
/// List every connector in the registry index (not just the compiled-in
/// ones), marking which are already in this binary.
#[arg(long)]
pub available: bool,
/// Read a custom registry index instead of the built-in one.
#[arg(long)]
pub index: Option<PathBuf>,
}
/// `faucet conformance` arguments.
#[derive(Debug, Parser)]
pub struct ConformanceArgs {
/// Only score the connector with this system name (e.g. `postgres`); prints
/// a detailed scorecard. Omit to score every compiled-in connector.
pub name: Option<String>,
/// Restrict to `source` or `sink`.
#[arg(long)]
pub kind: Option<String>,
/// Score every compiled-in connector (the default when no NAME is given;
/// accepted explicitly for clarity in CI).
#[arg(long)]
pub all: bool,
/// Emit the full scorecards as JSON.
#[arg(long)]
pub json: bool,
/// Fail (exit non-zero) if any scored connector is below this maturity tier
/// — an opt-in CI gate. One of `stable` / `experimental` / `beta` / `draft`.
#[arg(long, value_name = "TIER")]
pub min_tier: Option<String>,
/// Print the connector capability matrix (Markdown) derived from the
/// registry allowlists and exit — the generated source for the docs-site
/// capability matrix. Ignores the scoring flags.
#[arg(long)]
pub matrix: bool,
}
/// `faucet search` arguments.
#[derive(Debug, Parser)]
pub struct SearchArgs {
/// Term to match against connector name / description / keywords / crate.
pub term: String,
/// Read a custom registry index instead of the built-in one.
#[arg(long)]
pub index: Option<PathBuf>,
/// Emit matches as JSON.
#[arg(long)]
pub json: bool,
}
/// `faucet install` arguments.
#[derive(Debug, Parser)]
pub struct InstallArgs {
/// Connector system name (e.g. `kafka`).
pub name: String,
/// Disambiguate when a name exists as both a source and a sink.
#[arg(long)]
pub kind: Option<String>,
/// Read a custom registry index instead of the built-in one.
#[arg(long)]
pub index: Option<PathBuf>,
}
/// `faucet new` arguments.
#[derive(Debug, Parser)]
pub struct NewArgs {
#[command(subcommand)]
pub target: NewTarget,
}
/// What `faucet new` scaffolds.
#[derive(Debug, Subcommand)]
pub enum NewTarget {
/// Scaffold a ready-to-build `faucet-source-<name>` / `faucet-sink-<name>`
/// connector crate following every repo convention.
Connector(NewConnectorArgs),
}
/// `faucet new connector` arguments.
#[derive(Debug, Parser)]
pub struct NewConnectorArgs {
/// Connector system name (lowercase, e.g. `acme` or `acme-widgets`). Becomes
/// the crate name `faucet-<kind>-<name>` and the YAML `type:` value.
pub name: String,
/// Whether to scaffold a `source` or a `sink`.
#[arg(long)]
pub kind: String,
/// Also scaffold a `faucet-common-<name>` crate for config shared between a
/// source/sink pair.
#[arg(long)]
pub common: bool,
/// Directory to write the new crate(s) into. Defaults to the current dir.
#[arg(long, short = 'o', default_value = ".")]
pub output: PathBuf,
/// Overwrite any existing files.
#[arg(long)]
pub force: bool,
}