nighthawk 0.2.0

AI terminal autocomplete — zero config, zero login, zero telemetry
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
pub mod fig;
pub mod helpparse;

use parking_lot::RwLock;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

// --- Spec data structures ---

/// A parsed CLI completion spec.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CliSpec {
    pub name: String,
    #[serde(default)]
    pub description: Option<String>,
    #[serde(default)]
    pub subcommands: Vec<SubcommandSpec>,
    #[serde(default)]
    pub options: Vec<OptionSpec>,
    #[serde(default)]
    pub args: Vec<ArgSpec>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SubcommandSpec {
    pub name: String,
    #[serde(default)]
    pub aliases: Vec<String>,
    #[serde(default)]
    pub description: Option<String>,
    #[serde(default)]
    pub subcommands: Vec<SubcommandSpec>,
    #[serde(default)]
    pub options: Vec<OptionSpec>,
    #[serde(default)]
    pub args: Vec<ArgSpec>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptionSpec {
    pub names: Vec<String>,
    #[serde(default)]
    pub description: Option<String>,
    #[serde(default)]
    pub takes_arg: bool,
    #[serde(default)]
    pub is_required: bool,
    #[serde(default)]
    pub arg: Option<ArgSpec>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArgSpec {
    #[serde(default)]
    pub name: Option<String>,
    #[serde(default)]
    pub description: Option<String>,
    #[serde(default)]
    pub is_variadic: bool,
    #[serde(default)]
    pub suggestions: Vec<String>,
    #[serde(default)]
    pub template: Option<ArgTemplate>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ArgTemplate {
    Filepaths,
    Folders,
}

// --- SpecProvider trait ---

/// A source of CLI completion specs.
pub trait SpecProvider: Send + Sync {
    /// Load a spec for the given command name. Returns None if unknown.
    fn get_spec(&self, command: &str) -> Option<CliSpec>;

    /// List all known command names.
    fn known_commands(&self) -> Vec<String>;

    /// If true, SpecRegistry will NOT cache None results from this provider.
    /// Used by providers that populate asynchronously (e.g., --help parser).
    fn is_fallback(&self) -> bool {
        false
    }
}

// --- SpecRegistry ---

/// Chains multiple SpecProviders with an in-memory cache.
/// Providers are queried in order; first match wins and gets cached.
/// Fallback providers (is_fallback() == true) should be registered last.
pub struct SpecRegistry {
    providers: Vec<Box<dyn SpecProvider>>,
    cache: RwLock<HashMap<String, Option<CliSpec>>>,
    /// Cached list of all known command names across providers.
    /// Populated lazily on first `fuzzy_lookup` call to avoid repeated
    /// filesystem scans (FigSpecProvider::known_commands does read_dir).
    /// TODO: invalidate when HelpParseProvider discovers new commands.
    known_commands_cache: RwLock<Option<Vec<String>>>,
}

impl SpecRegistry {
    pub fn new(providers: Vec<Box<dyn SpecProvider>>) -> Self {
        Self {
            providers,
            cache: RwLock::new(HashMap::new()),
            known_commands_cache: RwLock::new(None),
        }
    }

    /// Look up a spec by command name. Cached after first lookup.
    ///
    /// When all providers return None and the last queried provider is a
    /// fallback (may populate asynchronously), the None is NOT cached so
    /// the next request can retry.
    pub fn lookup(&self, command: &str) -> Option<CliSpec> {
        // Check cache first
        if let Some(cached) = self.cache.read().get(command) {
            return cached.clone();
        }

        // Query providers in order
        let mut result = None;
        let mut last_was_fallback = false;
        for provider in &self.providers {
            if let Some(spec) = provider.get_spec(command) {
                result = Some(spec);
                last_was_fallback = false;
                break;
            }
            last_was_fallback = provider.is_fallback();
        }

        // Cache the result — but NOT if it's None and the last queried
        // provider is a fallback (it may populate asynchronously)
        if result.is_some() || !last_was_fallback {
            self.cache
                .write()
                .insert(command.to_string(), result.clone());
        }

        result
    }

    /// Try fuzzy matching the command name against all known commands.
    ///
    /// Returns the best match (lowest edit distance) and its spec if one
    /// exists within the allowed distance threshold. Uses a lazily-cached
    /// command list to avoid repeated filesystem scans.
    ///
    /// Deterministic tiebreaking: alphabetically first among equidistant.
    pub fn fuzzy_lookup(&self, command: &str) -> Option<(CliSpec, usize)> {
        let commands = {
            let cache = self.known_commands_cache.read();
            if let Some(ref cached) = *cache {
                cached.clone()
            } else {
                drop(cache);
                let commands: Vec<String> = self
                    .providers
                    .iter()
                    .flat_map(|p| p.known_commands())
                    .collect();
                *self.known_commands_cache.write() = Some(commands.clone());
                commands
            }
        };

        let matches =
            crate::daemon::fuzzy::fuzzy_matches(command, commands.iter().map(|s| s.as_str()));

        let best = matches.first()?;
        let spec = self.lookup(&best.text)?;
        Some((spec, best.distance))
    }
}

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

    struct TestProvider {
        specs: HashMap<String, CliSpec>,
    }

    impl SpecProvider for TestProvider {
        fn get_spec(&self, command: &str) -> Option<CliSpec> {
            self.specs.get(command).cloned()
        }
        fn known_commands(&self) -> Vec<String> {
            self.specs.keys().cloned().collect()
        }
    }

    #[test]
    fn registry_lookup_and_cache() {
        let mut specs = HashMap::new();
        specs.insert(
            "git".into(),
            CliSpec {
                name: "git".into(),
                description: Some("Version control".into()),
                subcommands: vec![SubcommandSpec {
                    name: "checkout".into(),
                    aliases: vec!["co".into()],
                    description: Some("Switch branches".into()),
                    subcommands: vec![],
                    options: vec![],
                    args: vec![],
                }],
                options: vec![],
                args: vec![],
            },
        );

        let registry = SpecRegistry::new(vec![Box::new(TestProvider { specs })]);

        let spec = registry.lookup("git").unwrap();
        assert_eq!(spec.name, "git");
        assert_eq!(spec.subcommands[0].name, "checkout");

        // Second lookup should hit cache
        let spec2 = registry.lookup("git").unwrap();
        assert_eq!(spec2.name, "git");

        // Unknown command returns None
        assert!(registry.lookup("unknown").is_none());
    }

    #[test]
    fn registry_retries_when_fallback_returns_none() {
        use std::sync::atomic::{AtomicBool, Ordering};
        use std::sync::Arc;

        struct Inner {
            ready: AtomicBool,
        }
        struct DelayedFallback {
            inner: Arc<Inner>,
        }

        impl SpecProvider for DelayedFallback {
            fn get_spec(&self, command: &str) -> Option<CliSpec> {
                if self.inner.ready.load(Ordering::SeqCst) {
                    Some(CliSpec {
                        name: command.into(),
                        description: None,
                        subcommands: vec![],
                        options: vec![],
                        args: vec![],
                    })
                } else {
                    None
                }
            }
            fn known_commands(&self) -> Vec<String> {
                vec![]
            }
            fn is_fallback(&self) -> bool {
                true
            }
        }

        let inner = Arc::new(Inner {
            ready: AtomicBool::new(false),
        });
        let provider = DelayedFallback {
            inner: Arc::clone(&inner),
        };
        let registry = SpecRegistry::new(vec![Box::new(provider)]);

        // First lookup: fallback returns None, NOT cached
        assert!(registry.lookup("mycmd").is_none());

        // Simulate background task completing
        inner.ready.store(true, Ordering::SeqCst);

        // Second lookup: provider queried again (not cached), returns Some
        assert!(registry.lookup("mycmd").is_some());
    }

    #[test]
    fn registry_caches_none_from_non_fallback() {
        use std::sync::atomic::{AtomicUsize, Ordering};
        use std::sync::Arc;

        struct Inner {
            call_count: AtomicUsize,
        }
        struct CountingProvider {
            inner: Arc<Inner>,
        }

        impl SpecProvider for CountingProvider {
            fn get_spec(&self, _command: &str) -> Option<CliSpec> {
                self.inner.call_count.fetch_add(1, Ordering::SeqCst);
                None
            }
            fn known_commands(&self) -> Vec<String> {
                vec![]
            }
            // is_fallback() defaults to false
        }

        let inner = Arc::new(Inner {
            call_count: AtomicUsize::new(0),
        });
        let provider = CountingProvider {
            inner: Arc::clone(&inner),
        };
        let registry = SpecRegistry::new(vec![Box::new(provider)]);

        // First lookup queries the provider
        assert!(registry.lookup("unknown").is_none());
        assert_eq!(inner.call_count.load(Ordering::SeqCst), 1);

        // Second lookup hits cache, does NOT query provider again
        assert!(registry.lookup("unknown").is_none());
        assert_eq!(inner.call_count.load(Ordering::SeqCst), 1);
    }

    #[test]
    fn two_providers_normal_miss_fallback_miss_not_cached() {
        use std::sync::atomic::{AtomicBool, Ordering};
        use std::sync::Arc;

        // Simulates real provider chain: FigSpecProvider (normal) + HelpParseProvider (fallback)
        struct NormalProvider;
        impl SpecProvider for NormalProvider {
            fn get_spec(&self, _command: &str) -> Option<CliSpec> {
                None
            }
            fn known_commands(&self) -> Vec<String> {
                vec![]
            }
        }

        struct Inner {
            ready: AtomicBool,
        }
        struct DelayedFallback {
            inner: Arc<Inner>,
        }
        impl SpecProvider for DelayedFallback {
            fn get_spec(&self, command: &str) -> Option<CliSpec> {
                if self.inner.ready.load(Ordering::SeqCst) {
                    Some(CliSpec {
                        name: command.into(),
                        description: None,
                        subcommands: vec![],
                        options: vec![],
                        args: vec![],
                    })
                } else {
                    None
                }
            }
            fn known_commands(&self) -> Vec<String> {
                vec![]
            }
            fn is_fallback(&self) -> bool {
                true
            }
        }

        let inner = Arc::new(Inner {
            ready: AtomicBool::new(false),
        });
        let registry = SpecRegistry::new(vec![
            Box::new(NormalProvider),
            Box::new(DelayedFallback {
                inner: Arc::clone(&inner),
            }),
        ]);

        // Both miss → None NOT cached (fallback is last queried)
        assert!(registry.lookup("rg").is_none());

        // Fallback populates asynchronously
        inner.ready.store(true, Ordering::SeqCst);

        // Next lookup retries and finds the result
        assert!(registry.lookup("rg").is_some());
    }

    #[test]
    fn fuzzy_lookup_finds_close_command() {
        let mut specs = HashMap::new();
        specs.insert(
            "git".into(),
            CliSpec {
                name: "git".into(),
                description: None,
                subcommands: vec![],
                options: vec![],
                args: vec![],
            },
        );
        specs.insert(
            "curl".into(),
            CliSpec {
                name: "curl".into(),
                description: None,
                subcommands: vec![],
                options: vec![],
                args: vec![],
            },
        );

        let registry = SpecRegistry::new(vec![Box::new(TestProvider { specs })]);

        let (spec, dist) = registry.fuzzy_lookup("gti").unwrap();
        assert_eq!(spec.name, "git");
        assert_eq!(dist, 1);
    }

    #[test]
    fn fuzzy_lookup_returns_none_for_distant() {
        let mut specs = HashMap::new();
        specs.insert(
            "git".into(),
            CliSpec {
                name: "git".into(),
                description: None,
                subcommands: vec![],
                options: vec![],
                args: vec![],
            },
        );

        let registry = SpecRegistry::new(vec![Box::new(TestProvider { specs })]);
        assert!(registry.fuzzy_lookup("xyz").is_none());
    }

    #[test]
    fn fuzzy_lookup_caches_command_list() {
        use std::sync::atomic::{AtomicUsize, Ordering};
        use std::sync::Arc;

        struct Inner {
            call_count: AtomicUsize,
        }
        struct CountingProvider {
            inner: Arc<Inner>,
        }

        impl SpecProvider for CountingProvider {
            fn get_spec(&self, command: &str) -> Option<CliSpec> {
                if command == "git" {
                    Some(CliSpec {
                        name: "git".into(),
                        description: None,
                        subcommands: vec![],
                        options: vec![],
                        args: vec![],
                    })
                } else {
                    None
                }
            }
            fn known_commands(&self) -> Vec<String> {
                self.inner.call_count.fetch_add(1, Ordering::SeqCst);
                vec!["git".into()]
            }
        }

        let inner = Arc::new(Inner {
            call_count: AtomicUsize::new(0),
        });
        let registry = SpecRegistry::new(vec![Box::new(CountingProvider {
            inner: Arc::clone(&inner),
        })]);

        // First fuzzy_lookup populates the cache
        let _ = registry.fuzzy_lookup("gti");
        assert_eq!(inner.call_count.load(Ordering::SeqCst), 1);

        // Second call reuses cached list — known_commands NOT called again
        let _ = registry.fuzzy_lookup("gti");
        assert_eq!(inner.call_count.load(Ordering::SeqCst), 1);
    }
}