veks-completion 1.6.1

Dynamic shell completion engine for CLI tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
// Copyright (c) Jonathan Shook
// SPDX-License-Identifier: Apache-2.0

//! The veks-completion CLI framework: argument parsing, help, and a command
//! definition model — the in-tree replacement for clap.
//!
//! This is the runtime half. A command's CLI is described by a [`CommandSpec`]
//! (subcommands, options, positionals); [`parse`] turns an `argv` slice into a
//! [`ParsedArgs`]; [`render_help`] renders `--help`. The derive macro
//! (`veks-completion-derive`) generates the [`CommandSpec`] and the typed
//! extraction from this same model, so one declaration drives parsing, help,
//! **and** completion (the completion [`CommandTree`](crate::CommandTree) is
//! built from the very same [`CommandSpec`]).
//!
//! The option's *parse-defining shape* is the existing [`OptionDef`] — shared
//! and consistency-checked across commands. Per-command facets that may
//! legitimately vary (required-ness, default value) live on [`OptionSpec`],
//! deliberately outside the shape that the consistency audit compares.

use std::collections::{BTreeMap, HashSet};

use crate::OptionDef;

/// One option as it appears on a specific command: the shared [`OptionDef`]
/// shape plus this command's required-ness, default, and value completer.
#[derive(Clone)]
pub struct OptionSpec {
    /// The shared, parse-defining shape (flag, short, arity, value name, help).
    pub def: OptionDef,
    /// Whether this command requires the option. May differ per command.
    pub required: bool,
    /// Default value applied when the option is absent (value options only).
    pub default: Option<String>,
    /// Per-command value completer (closed set, path, dynamic). The completion
    /// bridge attaches it to this command's node. It is *not* part of the parse
    /// shape or the consistency audit, so it may legitimately differ between
    /// commands that share the same `def`.
    pub value_completion: Option<crate::ValueProvider>,
}

impl std::fmt::Debug for OptionSpec {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("OptionSpec")
            .field("def", &self.def)
            .field("required", &self.required)
            .field("default", &self.default)
            .field("value_completion", &self.value_completion.as_ref().map(|_| "<provider>"))
            .finish()
    }
}

impl OptionSpec {
    pub fn new(def: OptionDef) -> Self {
        OptionSpec { def, required: false, default: None, value_completion: None }
    }
    pub fn required(mut self, yes: bool) -> Self {
        self.required = yes;
        self
    }
    pub fn default(mut self, v: impl Into<String>) -> Self {
        self.default = Some(v.into());
        self
    }
    /// Attach a value completer for this option on this command.
    pub fn value_completion(mut self, provider: crate::ValueProvider) -> Self {
        self.value_completion = Some(provider);
        self
    }
    /// The canonical long token, e.g. `"--at"`.
    pub fn flag(&self) -> &str {
        &self.def.name
    }
}

/// A positional argument.
#[derive(Clone, Debug)]
pub struct PositionalSpec {
    /// Display name, e.g. `"DATASET"`.
    pub name: String,
    pub required: bool,
    /// Greedy trailing positional (collects the rest).
    pub multiple: bool,
    pub help: Option<String>,
}

impl PositionalSpec {
    pub fn new(name: impl Into<String>) -> Self {
        PositionalSpec { name: name.into(), required: false, multiple: false, help: None }
    }
    pub fn required(mut self, yes: bool) -> Self {
        self.required = yes;
        self
    }
    pub fn multiple(mut self, yes: bool) -> Self {
        self.multiple = yes;
        self
    }
    pub fn help(mut self, h: impl Into<String>) -> Self {
        self.help = Some(h.into());
        self
    }
}

/// A command and (recursively) its subcommands. The single source consumed by
/// the parser, the help renderer, and the completion-tree builder.
#[derive(Clone, Debug, Default)]
pub struct CommandSpec {
    pub name: String,
    pub about: Option<String>,
    pub aliases: Vec<String>,
    pub options: Vec<OptionSpec>,
    pub positionals: Vec<PositionalSpec>,
    pub subcommands: Vec<CommandSpec>,
    /// When true, a subcommand must be given (a group command).
    pub subcommand_required: bool,
    /// Free-form text appended after the options block in `--help` (examples,
    /// notes). From `#[command(after_help/after_long_help = …)]`.
    pub after_help: Option<String>,
    /// Maturity tier (see [`crate::Stability`]) — governs whether this command is
    /// offered during completion. From `#[command(stability = "…")]`. Defaults
    /// to `Stable`.
    pub stability: crate::Stability,
}

impl CommandSpec {
    pub fn new(name: impl Into<String>) -> Self {
        CommandSpec { name: name.into(), ..Default::default() }
    }
    pub fn about(mut self, a: impl Into<String>) -> Self {
        self.about = Some(a.into());
        self
    }
    /// Add an alternate name this command also answers to (e.g. `ls` for `list`).
    pub fn alias(mut self, a: impl Into<String>) -> Self {
        self.aliases.push(a.into());
        self
    }
    pub fn after_help(mut self, a: impl Into<String>) -> Self {
        self.after_help = Some(a.into());
        self
    }
    /// Declare this command's maturity tier (see [`crate::Stability`]).
    pub fn stability(mut self, s: crate::Stability) -> Self {
        self.stability = s;
        self
    }
    pub fn option(mut self, o: OptionSpec) -> Self {
        self.options.push(o);
        self
    }
    pub fn positional(mut self, p: PositionalSpec) -> Self {
        self.positionals.push(p);
        self
    }
    pub fn subcommand(mut self, c: CommandSpec) -> Self {
        self.subcommands.push(c);
        self
    }

    /// Find an option by long token (with or without leading dashes) or short.
    fn find_long(&self, token: &str) -> Option<&OptionSpec> {
        let want = token.trim_start_matches('-');
        self.options.iter().find(|o| o.def.name.trim_start_matches('-') == want)
    }
    fn find_short(&self, c: char) -> Option<&OptionSpec> {
        self.options.iter().find(|o| o.def.short == Some(c))
    }
    fn find_subcommand(&self, name: &str) -> Option<&CommandSpec> {
        self.subcommands
            .iter()
            .find(|s| s.name == name || s.aliases.iter().any(|a| a == name))
    }
}

/// The result of parsing one command level. Values are kept as strings (the
/// derive macro performs typed conversion); repeatable options accumulate.
#[derive(Clone, Debug, Default)]
pub struct ParsedArgs {
    /// Boolean flags that were present (canonical long token, no dashes).
    flags: HashSet<String>,
    /// Value options: canonical long token (no dashes) → values in order.
    values: BTreeMap<String, Vec<String>>,
    /// Positional arguments in order.
    positionals: Vec<String>,
    /// The chosen subcommand and its own parsed args, if any.
    subcommand: Option<(String, Box<ParsedArgs>)>,
}

impl ParsedArgs {
    pub fn has_flag(&self, name: &str) -> bool {
        self.flags.contains(name.trim_start_matches('-'))
    }
    /// First value for an option, if present.
    pub fn value(&self, name: &str) -> Option<&str> {
        self.values.get(name.trim_start_matches('-')).and_then(|v| v.first()).map(|s| s.as_str())
    }
    /// All values for a (repeatable) option.
    pub fn values(&self, name: &str) -> &[String] {
        const EMPTY: &[String] = &[];
        self.values.get(name.trim_start_matches('-')).map(|v| v.as_slice()).unwrap_or(EMPTY)
    }
    pub fn positionals(&self) -> &[String] {
        &self.positionals
    }
    pub fn subcommand(&self) -> Option<(&str, &ParsedArgs)> {
        self.subcommand.as_ref().map(|(n, p)| (n.as_str(), p.as_ref()))
    }
}

/// A parse failure, with enough context to render a useful message.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum ParseError {
    UnknownFlag { command: String, flag: String },
    MissingValue { command: String, flag: String },
    MissingRequiredOption { command: String, flag: String },
    MissingRequiredPositional { command: String, name: String },
    UnexpectedPositional { command: String, value: String },
    UnknownSubcommand { command: String, name: String },
    MissingSubcommand { command: String },
    /// A value failed to convert to the field's type (e.g. `--count abc` for a
    /// `usize`). Produced during typed extraction by the derive macro.
    InvalidValue { flag: String, value: String, message: String },
    /// Two mutually exclusive options were both supplied (see
    /// [`OptionDef::conflicts_with`]).
    ConflictingOptions { command: String, flag: String, other: String },
}

/// Implemented by `#[derive(VeksCli)]` types: a command/args struct or a
/// subcommand enum. Provides the [`CommandSpec`] (drives parse + help +
/// completion) and the typed extraction from a [`ParsedArgs`].
pub trait VeksCli: Sized {
    /// The full spec for this type used as a command named `name`.
    fn veks_command_spec(name: &str) -> CommandSpec;
    /// Add this type's options/positionals/subcommands to an existing spec
    /// (used by `#[command(flatten)]` and subcommand fields).
    fn veks_augment_spec(spec: CommandSpec) -> CommandSpec;
    /// Build `Self` from already-parsed args.
    fn veks_from_parsed(parsed: &ParsedArgs) -> Result<Self, ParseError>;
}

impl std::fmt::Display for ParseError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ParseError::UnknownFlag { command, flag } =>
                write!(f, "{command}: unexpected option '{flag}'"),
            ParseError::MissingValue { command, flag } =>
                write!(f, "{command}: option '{flag}' requires a value"),
            ParseError::MissingRequiredOption { command, flag } =>
                write!(f, "{command}: required option '{flag}' not provided"),
            ParseError::MissingRequiredPositional { command, name } =>
                write!(f, "{command}: required argument <{name}> not provided"),
            ParseError::UnexpectedPositional { command, value } =>
                write!(f, "{command}: unexpected argument '{value}'"),
            ParseError::UnknownSubcommand { command, name } =>
                write!(f, "{command}: unknown subcommand '{name}'"),
            ParseError::MissingSubcommand { command } =>
                write!(f, "{command}: a subcommand is required"),
            ParseError::InvalidValue { flag, value, message } =>
                write!(f, "invalid value '{value}' for '{flag}': {message}"),
            ParseError::ConflictingOptions { command, flag, other } =>
                write!(f, "'{flag}' cannot be combined with '{other}' (in '{command}')"),
        }
    }
}

impl std::error::Error for ParseError {}

/// Parse `argv` (the words *after* the program name) against `spec`.
///
/// Grammar handled: `--long`, `--long=value`, `--long value`, `-s`, `-s value`,
/// `-s=value`, `--` (end-of-options), positionals, and nested subcommands.
/// Boolean options take no value; value options consume the next word (or the
/// `=`-suffix). Repeatable options accumulate. Defaults fill absent value
/// options; required options/positionals are checked after parsing.
pub fn parse(spec: &CommandSpec, argv: &[String]) -> Result<ParsedArgs, ParseError> {
    let mut out = ParsedArgs::default();
    let mut i = 0;
    let mut options_ended = false;

    while i < argv.len() {
        let arg = &argv[i];

        if !options_ended && arg == "--" {
            options_ended = true;
            i += 1;
            continue;
        }

        // Triple-dash tokens are reserved engine meta (e.g. `---experimental`
        // steers tab-completion; `---dump-tree` is a diagnostic). They are never
        // real `--` flags, so skip them — a line the user completed with one
        // (`veks ---experimental datasets list`) still parses and runs.
        if !options_ended && arg.starts_with("---") {
            i += 1;
            continue;
        }

        if !options_ended && arg.starts_with("--") {
            // --long or --long=value
            let body = &arg[2..];
            let (name, inline) = match body.split_once('=') {
                Some((n, v)) => (n, Some(v.to_string())),
                None => (body, None),
            };
            let opt = spec
                .find_long(name)
                .ok_or_else(|| ParseError::UnknownFlag { command: spec.name.clone(), flag: arg.clone() })?;
            let canon = opt.def.name.trim_start_matches('-').to_string();
            if !opt.def.takes_value {
                out.flags.insert(canon);
            } else {
                let value = match inline {
                    Some(v) => v,
                    None => {
                        i += 1;
                        argv.get(i)
                            .cloned()
                            .ok_or_else(|| ParseError::MissingValue { command: spec.name.clone(), flag: arg.clone() })?
                    }
                };
                out.values.entry(canon).or_default().push(value);
            }
            i += 1;
            continue;
        }

        if !options_ended && arg.starts_with('-') && arg.len() > 1 {
            // -s or -s=value or -sVALUE (single short; bundling not supported)
            let body = &arg[1..];
            let mut chars = body.chars();
            let short = chars.next().unwrap();
            let rest: String = chars.collect();
            let opt = spec
                .find_short(short)
                .ok_or_else(|| ParseError::UnknownFlag { command: spec.name.clone(), flag: arg.clone() })?;
            let canon = opt.def.name.trim_start_matches('-').to_string();
            if !opt.def.takes_value {
                out.flags.insert(canon);
            } else {
                let value = if let Some(stripped) = rest.strip_prefix('=') {
                    stripped.to_string()
                } else if !rest.is_empty() {
                    rest
                } else {
                    i += 1;
                    argv.get(i)
                        .cloned()
                        .ok_or_else(|| ParseError::MissingValue { command: spec.name.clone(), flag: arg.clone() })?
                };
                out.values.entry(canon).or_default().push(value);
            }
            i += 1;
            continue;
        }

        // A bare word. If this command has subcommands and no positional has
        // been consumed yet, treat it as a subcommand selector; otherwise it's
        // a positional.
        if !spec.subcommands.is_empty() && out.positionals.is_empty() {
            let sub = spec.find_subcommand(arg).ok_or_else(|| ParseError::UnknownSubcommand {
                command: spec.name.clone(),
                name: arg.clone(),
            })?;
            let sub_parsed = parse(sub, &argv[i + 1..])?;
            out.subcommand = Some((sub.name.clone(), Box::new(sub_parsed)));
            // A subcommand consumes the remainder.
            finalize(spec, &mut out)?;
            return Ok(out);
        }

        out.positionals.push(arg.clone());
        i += 1;
    }

    finalize(spec, &mut out)?;
    Ok(out)
}

/// Apply defaults, then validate required options/positionals and subcommand
/// presence.
fn finalize(spec: &CommandSpec, out: &mut ParsedArgs) -> Result<(), ParseError> {
    // Mutual exclusions first — before defaults are injected, so
    // only options the user actually supplied count as present.
    for opt in &spec.options {
        let canon = opt.def.name.trim_start_matches('-');
        if !out.flags.contains(canon) && !out.values.contains_key(canon) {
            continue;
        }
        for conflict in &opt.def.conflicts_with {
            let other = conflict.trim_start_matches('-');
            if out.flags.contains(other) || out.values.contains_key(other) {
                return Err(ParseError::ConflictingOptions {
                    command: spec.name.clone(),
                    flag: opt.def.name.clone(),
                    other: conflict.clone(),
                });
            }
        }
    }

    for opt in &spec.options {
        let canon = opt.def.name.trim_start_matches('-').to_string();
        let present = out.flags.contains(&canon) || out.values.contains_key(&canon);
        if !present {
            if let Some(def) = &opt.default {
                out.values.entry(canon.clone()).or_default().push(def.clone());
            } else if opt.required {
                return Err(ParseError::MissingRequiredOption {
                    command: spec.name.clone(),
                    flag: opt.def.name.clone(),
                });
            }
        }
    }

    // Positional arity: count required positionals satisfied.
    let required_positionals = spec.positionals.iter().filter(|p| p.required).count();
    if out.positionals.len() < required_positionals {
        let missing = &spec.positionals[out.positionals.len()];
        return Err(ParseError::MissingRequiredPositional {
            command: spec.name.clone(),
            name: missing.name.clone(),
        });
    }

    if spec.subcommand_required && out.subcommand.is_none() {
        return Err(ParseError::MissingSubcommand { command: spec.name.clone() });
    }

    Ok(())
}

/// Render `--help` text for a command spec.
/// Target line width for help text (clap's default for a non-tty).
const HELP_WIDTH: usize = 100;

/// Word-wrap `text` to `width`, honoring existing newlines as hard breaks.
fn wrap_text(text: &str, width: usize) -> Vec<String> {
    let mut lines = Vec::new();
    for para in text.split('\n') {
        if para.trim().is_empty() {
            lines.push(String::new());
            continue;
        }
        let mut cur = String::new();
        for word in para.split_whitespace() {
            if cur.is_empty() {
                cur.push_str(word);
            } else if width == 0 || cur.len() + 1 + word.len() <= width {
                cur.push(' ');
                cur.push_str(word);
            } else {
                lines.push(std::mem::take(&mut cur));
                cur.push_str(word);
            }
        }
        lines.push(cur);
    }
    if lines.is_empty() {
        lines.push(String::new());
    }
    lines
}

/// Two-column (term, description) renderer with a capped left column and a
/// wrapped, hanging-indented right column — the shape clap uses for its
/// Commands/Arguments/Options blocks.
fn render_two_col(out: &mut String, rows: &[(String, String)]) {
    if rows.is_empty() {
        return;
    }
    let col = rows.iter().map(|(l, _)| l.len()).max().unwrap_or(0).min(28);
    let help_width = HELP_WIDTH.saturating_sub(col + 4).max(20);
    for (left, help) in rows {
        let wrapped = wrap_text(help, help_width);
        let mut iter = wrapped.iter();
        let first = iter.next().map(|s| s.as_str()).unwrap_or("");
        if left.len() <= col {
            out.push_str(&format!("  {:<col$}  {}\n", left, first, col = col));
        } else {
            // Left entry overflows the column — put it on its own line.
            out.push_str(&format!("  {}\n", left));
            out.push_str(&format!("  {:<col$}  {}\n", "", first, col = col));
        }
        for cont in iter {
            out.push_str(&format!("  {:<col$}  {}\n", "", cont, col = col));
        }
    }
}

/// Render `--help` for the deepest subcommand named by the leading words of
/// `argv`, so `app group leaf --help` shows the leaf's options rather than the
/// group overview. Stops descending at the first flag (or unknown word) and
/// renders whatever level was reached (the root when `argv` names none).
pub fn render_help_for<S: AsRef<str>>(root: &CommandSpec, argv: &[S]) -> String {
    let mut spec = root;
    for word in argv {
        let word = word.as_ref();
        if word.starts_with('-') {
            break;
        }
        match spec.find_subcommand(word) {
            Some(sub) => spec = sub,
            None => break,
        }
    }
    render_help(spec)
}

/// Render `--help` text for a command spec, formatted comparably to clap:
/// about, usage, aliases, commands, arguments, options (with an auto
/// `-h, --help`), and any `after_help`.
pub fn render_help(spec: &CommandSpec) -> String {
    let mut s = String::new();

    if let Some(about) = &spec.about {
        for line in wrap_text(about, HELP_WIDTH) {
            s.push_str(&line);
            s.push('\n');
        }
        s.push('\n');
    }

    // Usage line.
    s.push_str(&format!("Usage: {}", spec.name));
    if !spec.options.is_empty() {
        s.push_str(" [OPTIONS]");
    }
    for p in &spec.positionals {
        let token = if p.multiple {
            format!("[{}]...", p.name)
        } else if p.required {
            format!("<{}>", p.name)
        } else {
            format!("[{}]", p.name)
        };
        s.push(' ');
        s.push_str(&token);
    }
    if !spec.subcommands.is_empty() {
        s.push_str(" <COMMAND>");
    }
    s.push('\n');

    if !spec.aliases.is_empty() {
        s.push_str(&format!("\nAliases: {}\n", spec.aliases.join(", ")));
    }

    if !spec.subcommands.is_empty() {
        s.push_str("\nCommands:\n");
        let rows: Vec<(String, String)> = spec
            .subcommands
            .iter()
            .map(|c| {
                let name = if c.aliases.is_empty() {
                    c.name.clone()
                } else {
                    format!("{}, {}", c.name, c.aliases.join(", "))
                };
                (name, c.about.clone().unwrap_or_default())
            })
            .collect();
        render_two_col(&mut s, &rows);
    }

    if !spec.positionals.is_empty() {
        s.push_str("\nArguments:\n");
        let rows: Vec<(String, String)> = spec
            .positionals
            .iter()
            .map(|p| (format!("<{}>", p.name), p.help.clone().unwrap_or_default()))
            .collect();
        render_two_col(&mut s, &rows);
    }

    {
        s.push_str("\nOptions:\n");
        let mut rows: Vec<(String, String)> = spec
            .options
            .iter()
            .map(|o| {
                // Align long flags whether or not a short exists ("-x, " is 4 wide).
                let mut f = match o.def.short {
                    Some(sh) => format!("-{}, ", sh),
                    None => "    ".to_string(),
                };
                f.push_str(&o.def.name);
                if o.def.takes_value {
                    f.push_str(&format!(" <{}>", o.def.value_name.as_deref().unwrap_or("VALUE")));
                }
                (f, o.def.help.clone().unwrap_or_default())
            })
            .collect();
        rows.push(("-h, --help".to_string(), "Print help".to_string()));
        render_two_col(&mut s, &rows);
    }

    if let Some(after) = &spec.after_help {
        s.push('\n');
        s.push_str(after.trim_end());
        s.push('\n');
    }

    s
}

// ---------------------------------------------------------------------------
// Completion bridge: CommandSpec -> CommandTree
// ---------------------------------------------------------------------------

/// Build a completion [`CommandTree`](crate::CommandTree) from a
/// [`CommandSpec`] — the same spec that drives parsing and help. This replaces
/// walking a `clap::Command`: one definition now feeds parse + help + complete.
///
/// `resolvers` maps a flag's canonical long token (e.g. `"--at"`) to the value
/// completer to attach **per command** — only flags a command actually declares
/// receive one, so nothing leaks (the same property the option registry gives).
pub fn build_completion_tree(
    spec: &CommandSpec,
    resolvers: &std::collections::BTreeMap<String, crate::ValueProvider>,
) -> crate::CommandTree {
    let mut tree = crate::CommandTree::new(&spec.name);
    tree.root = spec_to_node(spec, resolvers, "");
    tree
}

/// `path` is the space-joined subcommand path to this spec, excluding the binary
/// name (e.g. `"backends remove"`). Positional providers are keyed by that path
/// in `resolvers`; space-separated keys never collide with `--flag` keys.
fn spec_to_node(
    spec: &CommandSpec,
    resolvers: &std::collections::BTreeMap<String, crate::ValueProvider>,
    path: &str,
) -> crate::Node {
    if spec.subcommands.is_empty() {
        let value_flags: Vec<&str> =
            spec.options.iter().filter(|o| o.def.takes_value).map(|o| o.def.name.as_str()).collect();
        let boolean_flags: Vec<&str> =
            spec.options.iter().filter(|o| !o.def.takes_value).map(|o| o.def.name.as_str()).collect();
        let mut node = crate::Node::leaf_with_flags(&value_flags, &boolean_flags);
        for o in &spec.options {
            if let Some(h) = &o.def.help {
                node = node.with_flag_help(&o.def.name, h);
            }
            // Short aliases participate in value-position detection
            // and value completion exactly like the long form —
            // `attach -c <TAB>` must complete the same values as
            // `attach --config <TAB>`.
            if let Some(c) = o.def.short {
                node = node.with_short_alias(&format!("-{c}"), &o.def.name);
            }
            if o.def.takes_value {
                // The option's own completer wins; otherwise fall back to a
                // shared resolver registered for that flag name.
                let provider = o
                    .value_completion
                    .clone()
                    .or_else(|| resolvers.get(&o.def.name).cloned());
                if let Some(p) = provider {
                    node = node.with_value_provider(&o.def.name, p);
                }
            }
        }
        // Mutual exclusions, symmetrized: declaring `--with-dim`
        // conflicts_with `--with-min-dim` on either side hides each
        // from completion once the other is on the line.
        for o in &spec.options {
            for c in &o.def.conflicts_with {
                node = node
                    .with_flag_conflict(&o.def.name, c)
                    .with_flag_conflict(c, &o.def.name);
            }
        }
        // First-positional completion: a resolver registered under this command's
        // full path (e.g. "backends remove"), applied only when the command
        // actually takes a positional.
        if !spec.positionals.is_empty()
            && let Some(p) = resolvers.get(path).cloned() {
                node = node
                    .with_positional_provider(p)
                    .with_positional_slots(spec.positionals.len());
            }
        node.with_stability(spec.stability)
    } else {
        let mut node = crate::Node::empty_group();
        for sub in &spec.subcommands {
            let child_path =
                if path.is_empty() { sub.name.clone() } else { format!("{path} {}", sub.name) };
            node = node.with_child(&sub.name, spec_to_node(sub, resolvers, &child_path));
        }
        node.with_stability(spec.stability)
    }
}

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

    fn vopt(name: &str) -> OptionSpec {
        OptionSpec::new(OptionDef::value(name))
    }
    fn fopt(name: &str) -> OptionSpec {
        OptionSpec::new(OptionDef::flag(name))
    }

    fn datasets_ping() -> CommandSpec {
        CommandSpec::new("ping")
            .about("Ping a remote dataset")
            .option(vopt("--at").def_multiple())
            .option(OptionSpec::new(OptionDef::value("--dataset")).required(true))
            .option(OptionSpec::new(OptionDef::value("--profile")).default("default"))
    }

    // small helper so tests can flip the OptionDef.multiple bit inline
    impl OptionSpec {
        fn def_multiple(mut self) -> Self {
            self.def = self.def.multiple(true);
            self
        }
    }

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

    /// An exact/min/max filter family: the exact flag declares the
    /// conflicts; symmetry is the bridge's job.
    fn dim_family() -> CommandSpec {
        CommandSpec::new("list")
            .option(OptionSpec::new(
                OptionDef::value("--with-dim")
                    .conflicts_with(&["--with-min-dim", "--with-max-dim"]),
            ))
            .option(vopt("--with-min-dim"))
            .option(vopt("--with-max-dim"))
    }

    #[test]
    fn conflicting_flags_withheld_from_completion_both_directions() {
        let spec = dim_family();
        let tree = build_completion_tree(&spec, &std::collections::BTreeMap::new());

        // Exact on the line → neither range flag is offered.
        let cands = crate::complete(&tree, &["list", "--with-dim", "5", "--with-"]);
        assert!(!cands.iter().any(|c| c == "--with-min-dim"), "{cands:?}");
        assert!(!cands.iter().any(|c| c == "--with-max-dim"), "{cands:?}");

        // A range flag on the line → the exact flag is not offered,
        // but the other end of the range still is.
        let cands = crate::complete(&tree, &["list", "--with-min-dim", "4", "--with-"]);
        assert!(!cands.iter().any(|c| c == "--with-dim"), "{cands:?}");
        assert!(cands.iter().any(|c| c == "--with-max-dim"), "{cands:?}");
    }

    #[test]
    fn conflicting_options_rejected_at_parse_in_either_order() {
        let spec = dim_family();
        for words in [
            ["--with-dim", "5", "--with-min-dim", "4"],
            ["--with-min-dim", "4", "--with-dim", "5"],
        ] {
            let err = parse(&spec, &argv(&words)).unwrap_err();
            assert!(
                matches!(err, ParseError::ConflictingOptions { .. }),
                "expected conflict error, got {err:?}"
            );
        }
        // The range pair itself is NOT a conflict.
        assert!(parse(&spec, &argv(&["--with-min-dim", "4", "--with-max-dim", "9"])).is_ok());
    }

    #[test]
    fn parses_value_space_and_equals_forms() {
        let spec = datasets_ping();
        let p = parse(&spec, &argv(&["--dataset", "glove", "--at", "1"])).unwrap();
        assert_eq!(p.value("--dataset"), Some("glove"));
        assert_eq!(p.values("--at"), &["1".to_string()]);
        let p2 = parse(&spec, &argv(&["--dataset=glove"])).unwrap();
        assert_eq!(p2.value("--dataset"), Some("glove"));
    }

    #[test]
    fn repeatable_option_accumulates() {
        let spec = datasets_ping();
        let p = parse(&spec, &argv(&["--dataset", "d", "--at", "1", "--at", "2"])).unwrap();
        assert_eq!(p.values("--at"), &["1".to_string(), "2".to_string()]);
    }

    #[test]
    fn default_applies_when_absent() {
        let spec = datasets_ping();
        let p = parse(&spec, &argv(&["--dataset", "d"])).unwrap();
        assert_eq!(p.value("--profile"), Some("default"));
    }

    #[test]
    fn required_option_missing_errors() {
        let spec = datasets_ping();
        let err = parse(&spec, &argv(&["--at", "1"])).unwrap_err();
        assert_eq!(err, ParseError::MissingRequiredOption { command: "ping".into(), flag: "--dataset".into() });
    }

    #[test]
    fn unknown_flag_errors() {
        let spec = datasets_ping();
        let err = parse(&spec, &argv(&["--dataset", "d", "--nope"])).unwrap_err();
        assert!(matches!(err, ParseError::UnknownFlag { .. }));
    }

    #[test]
    fn boolean_flag_takes_no_value() {
        let spec = CommandSpec::new("list").option(fopt("--verbose"));
        let p = parse(&spec, &argv(&["--verbose"])).unwrap();
        assert!(p.has_flag("--verbose"));
        // The following word is a positional, not the flag's value.
        let p2 = parse(&spec, &argv(&["--verbose", "x"])).unwrap();
        assert_eq!(p2.positionals(), &["x".to_string()]);
    }

    #[test]
    fn double_dash_ends_options() {
        let spec = CommandSpec::new("run").option(fopt("--flag"));
        let p = parse(&spec, &argv(&["--", "--flag"])).unwrap();
        assert!(!p.has_flag("--flag"));
        assert_eq!(p.positionals(), &["--flag".to_string()]);
    }

    #[test]
    fn subcommand_dispatch_and_short_value() {
        let spec = CommandSpec::new("datasets")
            .subcommand(datasets_ping())
            .subcommand(
                CommandSpec::new("derive")
                    .option(OptionSpec::new(OptionDef::value("--output").short('o')).required(true)),
            );
        let p = parse(&spec, &argv(&["derive", "-o", "/tmp/out"])).unwrap();
        let (name, sub) = p.subcommand().unwrap();
        assert_eq!(name, "derive");
        assert_eq!(sub.value("--output"), Some("/tmp/out"));
    }

    #[test]
    fn unknown_subcommand_errors() {
        let spec = CommandSpec::new("datasets").subcommand(datasets_ping());
        let err = parse(&spec, &argv(&["frobnicate"])).unwrap_err();
        assert!(matches!(err, ParseError::UnknownSubcommand { .. }));
    }

    #[test]
    fn completion_tree_built_from_spec() {
        let spec = CommandSpec::new("veks").subcommand(
            CommandSpec::new("datasets")
                .subcommand(
                    CommandSpec::new("ping")
                        .option(vopt("--at").def_multiple())
                        .option(vopt("--dataset")),
                )
                .subcommand(CommandSpec::new("list").option(fopt("--verbose"))),
        );
        let mut resolvers: std::collections::BTreeMap<String, crate::ValueProvider> =
            std::collections::BTreeMap::new();
        resolvers.insert(
            "--at".to_string(),
            crate::fn_provider(|_p, _c| vec!["1".to_string(), "2".to_string()]),
        );
        let tree = build_completion_tree(&spec, &resolvers);

        // Per-command flags: ping has --at/--dataset, list has --verbose only.
        let ping_flags = crate::complete(&tree, &["veks", "datasets", "ping", "--"]);
        assert!(ping_flags.contains(&"--at".to_string()));
        assert!(ping_flags.contains(&"--dataset".to_string()));
        let list_flags = crate::complete(&tree, &["veks", "datasets", "list", "--"]);
        assert!(list_flags.contains(&"--verbose".to_string()));
        assert!(!list_flags.contains(&"--at".to_string()), "--at must not leak onto list");

        // Value completion: the --at resolver fires on ping.
        let at_vals = crate::complete(&tree, &["veks", "datasets", "ping", "--at", ""]);
        assert_eq!(at_vals, vec!["1".to_string(), "2".to_string()]);
    }

    /// A command with two positional slots (`config set <key>
    /// <value>`) completes the first slot, then the second — the
    /// provider sees the entered positionals and decides. The engine
    /// previously hard-gated providers to the first slot only.
    #[test]
    fn two_slot_positional_completion() {
        let spec = CommandSpec::new("vectordata").subcommand(
            CommandSpec::new("config").subcommand(
                CommandSpec::new("set")
                    .positional(PositionalSpec::new("key"))
                    .positional(PositionalSpec::new("value"))
                    .option(OptionSpec::new(OptionDef::flag("--force"))),
            ),
        );
        let mut resolvers: std::collections::BTreeMap<String, crate::ValueProvider> =
            std::collections::BTreeMap::new();
        resolvers.insert(
            "config set".to_string(),
            crate::fn_provider(|p, ctx| {
                let positionals: Vec<&&str> =
                    ctx.iter().filter(|w| !w.starts_with('-')).collect();
                let cands: Vec<&str> = match positionals.first() {
                    None => vec!["cache"],
                    Some(&&"cache") => vec!["auto", "/data/vectordata-cache"],
                    Some(_) => vec![],
                };
                cands.iter()
                    .filter(|c| p.is_empty() || c.starts_with(p))
                    .map(|c| c.to_string())
                    .collect()
            }),
        );
        let tree = build_completion_tree(&spec, &resolvers);

        // Slot 0: keys.
        let keys = crate::complete(&tree, &["vectordata", "config", "set", ""]);
        assert!(keys.contains(&"cache".to_string()), "{keys:?}");
        // Slot 1: values for the entered key.
        let vals = crate::complete(&tree, &["vectordata", "config", "set", "cache", ""]);
        assert!(vals.contains(&"auto".to_string()), "{vals:?}");
        assert!(vals.contains(&"/data/vectordata-cache".to_string()), "{vals:?}");
        // Slot 2 doesn't exist: no positional candidates.
        let done = crate::complete(&tree, &["vectordata", "config", "set", "cache", "auto", ""]);
        assert!(!done.contains(&"auto".to_string()), "{done:?}");
        // A flag between positionals doesn't shift slot counting.
        let vals2 = crate::complete(&tree, &["vectordata", "config", "set", "--force", "cache", ""]);
        assert!(vals2.contains(&"auto".to_string()), "{vals2:?}");
    }

    /// A short flag at the previous-word position must value-complete
    /// exactly like its long form. The value-position branch used to
    /// require a `--` prefix on the previous word, so `attach -c
    /// <TAB>` silently fell through to flag/subcommand candidates.
    #[test]
    fn short_flag_value_completes_like_long_form() {
        let spec = CommandSpec::new("veks").subcommand(
            CommandSpec::new("attach")
                .option(OptionSpec::new(OptionDef::value("--config").short('c')))
                .option(OptionSpec::new(OptionDef::flag("--verbose").short('v'))),
        );
        let mut resolvers: std::collections::BTreeMap<String, crate::ValueProvider> =
            std::collections::BTreeMap::new();
        resolvers.insert(
            "--config".to_string(),
            crate::fn_provider(|p, _c| {
                ["dev.yaml", "prod.yaml"].iter()
                    .filter(|v| v.starts_with(p))
                    .map(|v| v.to_string())
                    .collect()
            }),
        );
        let tree = build_completion_tree(&spec, &resolvers);

        // Long and short forms produce identical value candidates.
        let long_vals = crate::complete(&tree, &["veks", "attach", "--config", ""]);
        let short_vals = crate::complete(&tree, &["veks", "attach", "-c", ""]);
        assert_eq!(long_vals, vec!["dev.yaml".to_string(), "prod.yaml".to_string()]);
        assert_eq!(short_vals, long_vals,
            "short flag must value-complete like its long form");

        // Prefix filtering flows through the short form too.
        let filtered = crate::complete(&tree, &["veks", "attach", "-c", "pro"]);
        assert_eq!(filtered, vec!["prod.yaml".to_string()]);

        // A short BOOLEAN flag is not a value position — candidates
        // are the node's flags, not values.
        let after_bool = crate::complete(&tree, &["veks", "attach", "-v", "--"]);
        assert!(after_bool.contains(&"--config".to_string()),
            "boolean short must not open a value position: {after_bool:?}");

        // An unregistered single-dash word (negative number value)
        // is not mistaken for a flag.
        let after_number = crate::complete(&tree, &["veks", "attach", "-5", "--"]);
        assert!(after_number.contains(&"--config".to_string()),
            "unregistered -word must not open a value position: {after_number:?}");
    }
}

#[cfg(test)]
mod derive_tests {
    use crate::VeksCli;
    use veks_completion_derive::VeksCli;

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

    #[derive(VeksCli, Debug, PartialEq)]
    #[command(about = "Ping a remote dataset")]
    struct Ping {
        /// Catalog locations
        #[arg(long = "at")]
        at: Vec<String>,
        #[arg(long)]
        dataset: String,
        #[arg(long, default = "default")]
        profile: String,
        #[arg(long)]
        verbose: bool,
    }

    #[test]
    fn derive_struct_spec_and_extract() {
        let spec = Ping::veks_command_spec("ping");
        // spec carries the right shapes
        assert_eq!(spec.about.as_deref(), Some("Ping a remote dataset"));
        let p = crate::cli::parse(
            &spec,
            &argv(&["--dataset", "glove", "--at", "1", "--at", "2", "--verbose"]),
        )
        .unwrap();
        let ping = Ping::veks_from_parsed(&p).unwrap();
        assert_eq!(
            ping,
            Ping {
                at: vec!["1".into(), "2".into()],
                dataset: "glove".into(),
                profile: "default".into(),
                verbose: true,
            }
        );
    }

    #[test]
    fn derive_typed_conversion_and_default() {
        #[derive(VeksCli, Debug, PartialEq)]
        struct Run {
            #[arg(long, default = "4")]
            threads: usize,
            #[arg(long)]
            tag: Option<String>,
        }
        let spec = Run::veks_command_spec("run");
        let p = crate::cli::parse(&spec, &argv(&["--threads", "8"])).unwrap();
        let run = Run::veks_from_parsed(&p).unwrap();
        assert_eq!(run, Run { threads: 8, tag: None });
        // default applies
        let p2 = crate::cli::parse(&spec, &argv(&[])).unwrap();
        assert_eq!(Run::veks_from_parsed(&p2).unwrap().threads, 4);
        // bad value → InvalidValue
        let p3 = crate::cli::parse(&spec, &argv(&["--threads", "abc"])).unwrap();
        assert!(matches!(
            Run::veks_from_parsed(&p3),
            Err(crate::cli::ParseError::InvalidValue { .. })
        ));
    }

    #[derive(VeksCli, Debug, PartialEq)]
    enum Cmd {
        Ping(Ping),
        /// List datasets
        List {
            #[arg(long)]
            verbose: bool,
        },
    }

    // Derive-macro fixtures: the fields exist to shape the generated
    // completion spec (field name → flag name); nothing reads their
    // values at runtime.
    #[derive(VeksCli)]
    #[command(stability = "preview")]
    struct PreviewArgs {
        #[arg(long)]
        #[allow(dead_code)]
        x: bool,
    }

    #[derive(VeksCli)]
    enum StabilityCmd {
        /// Stable by default (no attribute).
        Steady {
            #[arg(long)]
            #[allow(dead_code)]
            a: bool,
        },
        #[command(stability = "experimental")]
        Risky {
            #[arg(long)]
            #[allow(dead_code)]
            b: bool,
        },
    }

    #[test]
    fn derive_reads_command_stability() {
        use crate::Stability;
        // Type-level `#[command(stability = "preview")]`.
        assert_eq!(
            PreviewArgs::veks_command_spec("preview-args").stability,
            Stability::Preview
        );
        // Variant-level: explicit on one, default (Stable) on the other.
        let spec = StabilityCmd::veks_command_spec("app");
        let steady = spec.subcommands.iter().find(|c| c.name == "steady").unwrap();
        let risky = spec.subcommands.iter().find(|c| c.name == "risky").unwrap();
        assert_eq!(steady.stability, Stability::Stable);
        assert_eq!(risky.stability, Stability::Experimental);
    }

    #[test]
    fn derive_enum_subcommand_dispatch() {
        let spec = Cmd::veks_command_spec("veks");
        assert!(spec.subcommand_required);
        // tuple variant delegating to a struct
        let p = crate::cli::parse(&spec, &argv(&["ping", "--dataset", "d"])).unwrap();
        match Cmd::veks_from_parsed(&p).unwrap() {
            Cmd::Ping(ping) => assert_eq!(ping.dataset, "d"),
            _ => panic!("expected Ping"),
        }
        // named-field variant
        let p2 = crate::cli::parse(&spec, &argv(&["list", "--verbose"])).unwrap();
        assert_eq!(Cmd::veks_from_parsed(&p2).unwrap(), Cmd::List { verbose: true });
    }

    #[test]
    fn completion_hides_commands_below_stability_threshold() {
        use crate::{CommandSpec, Stability};
        let spec = CommandSpec::new("app")
            .subcommand(CommandSpec::new("stable-cmd"))
            .subcommand(CommandSpec::new("preview-cmd").stability(Stability::Preview))
            .subcommand(CommandSpec::new("exp-cmd").stability(Stability::Experimental));
        let resolvers = std::collections::BTreeMap::new();
        let mut tree = crate::cli::build_completion_tree(&spec, &resolvers);

        let has = |t: &crate::CommandTree, name: &str| {
            crate::complete_at_tap_with_raw(t, &["app", ""], 1, "app ", 4)
                .iter()
                .any(|c| c.split('\t').next() == Some(name))
        };

        // Default threshold (Preview): stable + preview shown, experimental hidden.
        tree.min_stability = Stability::Preview;
        assert!(has(&tree, "stable-cmd"));
        assert!(has(&tree, "preview-cmd"));
        assert!(!has(&tree, "exp-cmd"), "experimental hidden at the default threshold");

        // Experimental threshold: everything, including experimental.
        tree.min_stability = Stability::Experimental;
        assert!(has(&tree, "exp-cmd"), "experimental shown when threshold is lowered");

        // Stable threshold: only stable.
        tree.min_stability = Stability::Stable;
        assert!(has(&tree, "stable-cmd"));
        assert!(!has(&tree, "preview-cmd"), "preview hidden at the stable threshold");
    }

    #[test]
    fn positional_provider_completes_by_command_path() {
        use crate::{CommandSpec, PositionalSpec, ValueProvider};
        // app -> backends -> {remove <name>, list}
        let spec = CommandSpec::new("app").subcommand(
            CommandSpec::new("backends")
                .subcommand(CommandSpec::new("remove").positional(PositionalSpec::new("name")))
                .subcommand(CommandSpec::new("list")),
        );
        let provider: ValueProvider = std::sync::Arc::new(|partial: &str, _: &[&str]| {
            ["store", "archive"]
                .iter()
                .filter(|s| s.starts_with(partial))
                .map(|s| s.to_string())
                .collect()
        });
        // Positional resolver keyed by the FULL command path.
        let mut resolvers = std::collections::BTreeMap::new();
        resolvers.insert("backends remove".to_string(), provider);
        let tree = crate::cli::build_completion_tree(&spec, &resolvers);

        // `app backends remove <TAB>` → the positional's candidates.
        let all = crate::complete(&tree, &["app", "backends", "remove", ""]);
        assert!(all.contains(&"store".to_string()) && all.contains(&"archive".to_string()), "{all:?}");

        // Prefix filter applies at the positional slot.
        let pref = crate::complete(&tree, &["app", "backends", "remove", "st"]);
        assert!(pref.contains(&"store".to_string()) && !pref.contains(&"archive".to_string()), "{pref:?}");

        // Keyed by full path: a sibling command does NOT inherit the provider.
        let other = crate::complete(&tree, &["app", "backends", "list", ""]);
        assert!(!other.contains(&"store".to_string()), "sibling must not complete: {other:?}");
    }

    #[test]
    fn parse_skips_triple_dash_engine_tokens() {
        use crate::{CommandSpec, OptionDef, OptionSpec};
        // A `---experimental` left on the line by tab-completion must not break
        // execution — `cli::parse` skips all `---…` tokens.
        let spec = CommandSpec::new("app").subcommand(
            CommandSpec::new("go").option(OptionSpec::new(OptionDef::flag("--verbose"))),
        );
        let p = crate::cli::parse(&spec, &argv(&["---experimental", "go", "--verbose"])).unwrap();
        let (sub, sp) = p.subcommand().unwrap();
        assert_eq!(sub, "go");
        assert!(sp.has_flag("--verbose"));
    }

    #[test]
    fn stability_prefix_sets_threshold_and_strips_meta() {
        use crate::Stability;
        let (t, words) = crate::split_stability_prefix(
            vec!["---experimental".into(), "datasets".into()],
            Stability::Preview,
        );
        assert_eq!(t, Stability::Experimental);
        assert_eq!(words, vec!["datasets".to_string()]);

        // No threshold token → the default is kept, non-meta words untouched.
        let (t2, w2) = crate::split_stability_prefix(vec!["x".into()], Stability::Preview);
        assert_eq!(t2, Stability::Preview);
        assert_eq!(w2, vec!["x".to_string()]);
    }
}