foxguard 0.12.0

A security scanner as fast as a linter, written in Rust. 200+ built-in rules across 12 source languages.
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
use crate::git::ChangeSelection;
use clap::{Args, Parser, Subcommand};
use serde::Deserialize;

#[derive(Debug, Clone, Copy, clap::ValueEnum, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub enum OutputFormat {
    Terminal,
    Json,
    Sarif,
    Cbom,
    /// Semgrep CLI-compatible JSON (`results[]` with `check_id`/`extra`),
    /// for pipelines that consume `semgrep --json`.
    #[value(name = "semgrep-json")]
    SemgrepJson,
}

#[derive(Debug, Clone, Copy, clap::ValueEnum, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum SeverityFilter {
    Low,
    Medium,
    High,
    Critical,
}

#[derive(Args, Debug, Clone, Default)]
pub struct ChangeModeArgs {
    /// Scan changed files only (legacy: staged first, then unstaged/untracked)
    #[arg(long, default_value_t = false, conflicts_with_all = ["staged", "unstaged", "all_changes"])]
    pub changed: bool,

    /// Scan staged changes only
    #[arg(long, default_value_t = false, conflicts_with_all = ["changed", "unstaged", "all_changes"])]
    pub staged: bool,

    /// Scan unstaged tracked changes and untracked files only
    #[arg(long, default_value_t = false, conflicts_with_all = ["changed", "staged", "all_changes"])]
    pub unstaged: bool,

    /// Scan staged, unstaged tracked, and untracked changes
    #[arg(long = "all-changes", default_value_t = false, conflicts_with_all = ["changed", "staged", "unstaged"])]
    pub all_changes: bool,
}

impl ChangeModeArgs {
    pub fn selection(&self) -> Option<ChangeSelection> {
        if self.changed {
            Some(ChangeSelection::Legacy)
        } else if self.staged {
            Some(ChangeSelection::Staged)
        } else if self.unstaged {
            Some(ChangeSelection::Unstaged)
        } else if self.all_changes {
            Some(ChangeSelection::All)
        } else {
            None
        }
    }
}

#[derive(Args, Debug, Clone)]
pub struct ScanArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    /// Path to external YAML rule file or directory
    #[arg(short, long)]
    pub rules: Option<String>,

    /// Pre-built CodeQL database for external `engine: codeql` rules.
    /// When omitted, foxguard auto-builds an ephemeral database against the
    /// scan target if the `codeql` CLI is on PATH.
    #[arg(long = "codeql-db")]
    pub codeql_db: Option<String>,

    /// Disable built-in rules and run only external rules loaded via --rules
    #[arg(long, default_value_t = false)]
    pub no_builtins: bool,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Scan only the newline-delimited, repo-root-relative paths listed in
    /// this file, using the scan path as the analysis root so cross-file
    /// taint context is preserved. Missing (e.g. deleted) files are skipped;
    /// an empty list produces zero findings without falling back to a
    /// full-tree scan. Takes precedence over the change-mode flags.
    #[arg(long = "changed-files-from")]
    pub changed_files_from: Option<String>,

    /// Exclude scan-relative paths by glob or prefix (repeatable)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Write the current findings to a baseline file
    #[arg(long)]
    pub write_baseline: Option<String>,

    /// Show source-to-sink dataflow traces on taint findings
    #[arg(long, default_value_t = false)]
    pub explain: bool,

    /// Auto-fix supported taint findings (writes changes to disk)
    #[arg(long, default_value_t = false)]
    pub fix: bool,

    /// Post findings as inline review comments on a GitHub PR
    #[arg(long)]
    pub github_pr: Option<u64>,

    /// Suppress terminal output (exit code still reflects findings)
    #[arg(short, long)]
    pub quiet: bool,

    /// Write machine-readable output to a file instead of stdout
    #[arg(long)]
    pub output: Option<String>,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,

    /// Show per-finding confidence scores in terminal output
    #[arg(long, default_value_t = false)]
    pub show_confidence: bool,

    /// Minimum confidence (0.0–1.0) to report. Findings below this
    /// threshold are suppressed. Defaults to 0.0 (report all).
    #[arg(long)]
    pub min_confidence: Option<f32>,

    /// Internal: set by the `pqc` subcommand to filter to PQ rules only.
    #[arg(hide = true, long, default_value_t = false)]
    pub pq_mode: bool,

    /// Query OSV for dependency vulnerabilities in supported lockfiles.
    #[arg(long, default_value_t = false)]
    pub sca: bool,

    /// Do not query OSV over the network; use --sca-db or --sca-cache only.
    #[arg(long, default_value_t = false)]
    pub sca_offline: bool,

    /// Local OSV advisory JSON/JSONL file or directory for offline SCA runs.
    #[arg(long)]
    pub sca_db: Option<String>,

    /// Read/write an OSV query cache for dependency vulnerability scanning.
    #[arg(long)]
    pub sca_cache: Option<String>,

    /// Emit CNSA 2.0 compliance annotations on crypto-related findings and
    /// a migration-readiness summary block in terminal output (issue #241).
    ///
    /// When disabled (the default), the scan pipeline still exposes the
    /// `cnsa2Deadline` field on every applicable finding in SARIF
    /// `properties` for downstream tooling, but the terminal reporter
    /// stays silent and no summary block is printed. Also settable via
    /// `scan.cnsa2 = true` in `.foxguard.yml`.
    #[arg(long, default_value_t = false)]
    pub cnsa2: bool,
}

#[derive(Args, Debug, Clone)]
pub struct InitArgs {
    /// Repository path where the hook should be installed
    #[arg(long, default_value = ".")]
    pub path: String,

    /// Config file path relative to the repo
    #[arg(long, default_value = ".foxguard.yml")]
    pub config_path: String,

    /// Hook file path relative to the repo
    #[arg(long, default_value = ".git/hooks/pre-commit")]
    pub hook_path: String,

    /// Baseline path relative to the repo
    #[arg(long, default_value = ".foxguard/baseline.json")]
    pub baseline: String,

    /// Secrets baseline path relative to the repo
    #[arg(long, default_value = ".foxguard/secrets-baseline.json")]
    pub secrets_baseline: String,

    /// Do not create an initial baseline file
    #[arg(long, default_value_t = false)]
    pub no_baseline: bool,

    /// Overwrite an existing hook file
    #[arg(long, default_value_t = false)]
    pub force: bool,
}

#[derive(Args, Debug, Clone)]
pub struct BaselineArgs {
    #[command(flatten)]
    pub scan: BaselineScanArgs,

    /// Output path for the baseline file
    #[arg(long, default_value = ".foxguard/baseline.json")]
    pub output: String,
}

#[derive(Args, Debug, Clone)]
pub struct BaselineScanArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    /// Path to Semgrep YAML rule file or directory
    #[arg(short, long)]
    pub rules: Option<String>,

    /// Pre-built CodeQL database for external `engine: codeql` rules.
    /// When omitted, foxguard auto-builds an ephemeral database against the
    /// scan target if the `codeql` CLI is on PATH.
    #[arg(long = "codeql-db")]
    pub codeql_db: Option<String>,

    /// Disable built-in rules and run only external rules loaded via --rules
    #[arg(long, default_value_t = false)]
    pub no_builtins: bool,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Exclude scan-relative paths by glob or prefix (repeatable)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Write the current findings to a baseline file
    #[arg(long)]
    pub write_baseline: Option<String>,

    /// Show source-to-sink dataflow traces on taint findings
    #[arg(long, default_value_t = false)]
    pub explain: bool,

    /// Auto-fix supported taint findings (writes changes to disk)
    #[arg(long, default_value_t = false)]
    pub fix: bool,

    /// Post findings as inline review comments on a GitHub PR
    #[arg(long)]
    pub github_pr: Option<u64>,

    /// Suppress terminal output (exit code still reflects findings)
    #[arg(short, long)]
    pub quiet: bool,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,

    /// Show per-finding confidence scores in terminal output
    #[arg(long, default_value_t = false)]
    pub show_confidence: bool,

    /// Minimum confidence (0.0–1.0) to report. Findings below this
    /// threshold are suppressed. Defaults to 0.0 (report all).
    #[arg(long)]
    pub min_confidence: Option<f32>,

    /// Internal: set by the `pqc` subcommand to filter to PQ rules only.
    #[arg(hide = true, long, default_value_t = false)]
    pub pq_mode: bool,

    /// Query OSV for dependency vulnerabilities in supported lockfiles.
    #[arg(long, default_value_t = false)]
    pub sca: bool,

    /// Do not query OSV over the network; use --sca-db or --sca-cache only.
    #[arg(long, default_value_t = false)]
    pub sca_offline: bool,

    /// Local OSV advisory JSON/JSONL file or directory for offline SCA runs.
    #[arg(long)]
    pub sca_db: Option<String>,

    /// Read/write an OSV query cache for dependency vulnerability scanning.
    #[arg(long)]
    pub sca_cache: Option<String>,

    /// Emit CNSA 2.0 compliance annotations on crypto-related findings and
    /// a migration-readiness summary block in terminal output (issue #241).
    #[arg(long, default_value_t = false)]
    pub cnsa2: bool,
}

#[derive(Args, Debug, Clone)]
pub struct SecretsArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Write the current findings to a baseline file
    #[arg(long)]
    pub write_baseline: Option<String>,

    /// Write machine-readable output to a file instead of stdout
    #[arg(long)]
    pub output: Option<String>,

    /// Exclude a file or directory prefix from secrets scanning (repeatable)
    #[arg(long = "exclude-path")]
    pub exclude_paths: Vec<String>,

    /// Load excluded file or directory prefixes from a newline-delimited file
    #[arg(long)]
    pub exclude_path_file: Option<String>,

    /// Ignore a specific built-in secrets rule ID (repeatable)
    #[arg(long = "ignore-rule")]
    pub ignored_rules: Vec<String>,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,
}

#[derive(Args, Debug, Clone)]
pub struct DiffArgs {
    /// Target branch to compare against (e.g., "main", "origin/main")
    #[arg()]
    pub target: String,

    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    /// Path to external YAML rule file or directory
    #[arg(short, long)]
    pub rules: Option<String>,

    /// Disable built-in rules and run only external rules loaded via --rules
    #[arg(long, default_value_t = false)]
    pub no_builtins: bool,

    /// Write machine-readable output to a file instead of stdout
    #[arg(long)]
    pub output: Option<String>,

    /// Post findings as inline review comments on a GitHub PR
    #[arg(long)]
    pub github_pr: Option<u64>,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,
}

#[derive(Args, Debug, Clone)]
pub struct TuiArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    /// Path to external YAML rule file or directory
    #[arg(short, long)]
    pub rules: Option<String>,

    /// Disable built-in rules and run only external rules loaded via --rules
    #[arg(long, default_value_t = false)]
    pub no_builtins: bool,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Exclude scan-relative paths by glob or prefix (repeatable)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Show only new findings compared to a target branch
    #[arg(long, value_name = "TARGET", conflicts_with = "secrets")]
    pub diff: Option<String>,

    /// Scan repositories and changed files for common secrets
    #[arg(long, default_value_t = false, conflicts_with = "diff")]
    pub secrets: bool,

    /// Show source-to-sink dataflow traces in the detail pane when available
    #[arg(long, default_value_t = false)]
    pub explain: bool,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,

    /// Start the launcher focused on the post-quantum crypto audit mode.
    /// Not exposed via clap — set programmatically when invoking the TUI
    /// from the `pqc` subcommand or other PQ-specific entry points.
    #[arg(skip)]
    pub pq_mode: bool,
}

#[derive(Args, Debug, Clone)]
pub struct PqcArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Exclude scan-relative paths by glob or prefix (repeatable)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Show source-to-sink dataflow traces on taint findings
    #[arg(long, default_value_t = false)]
    pub explain: bool,

    /// Suppress terminal output (exit code still reflects findings)
    #[arg(short, long)]
    pub quiet: bool,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,

    /// Post findings as inline review comments on a GitHub PR
    #[arg(long)]
    pub github_pr: Option<u64>,

    /// Write machine-readable output to a file instead of stdout
    #[arg(long)]
    pub output: Option<String>,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Show per-finding confidence scores in terminal output
    #[arg(long, default_value_t = false)]
    pub show_confidence: bool,
}

#[derive(Args, Debug, Clone)]
pub struct ScaArgs {
    /// Path to scan
    #[arg(default_value = ".")]
    pub path: String,

    /// Path to foxguard config file
    #[arg(long)]
    pub config: Option<String>,

    /// Output format
    #[arg(short, long, value_enum, default_value = "terminal")]
    pub format: OutputFormat,

    /// Minimum severity to report
    #[arg(short, long, value_enum)]
    pub severity: Option<SeverityFilter>,

    #[command(flatten)]
    pub changes: ChangeModeArgs,

    /// Exclude scan-relative paths by glob or prefix (repeatable)
    #[arg(long)]
    pub exclude: Vec<String>,

    /// Apply a baseline file to suppress known findings
    #[arg(long)]
    pub baseline: Option<String>,

    /// Suppress terminal output (exit code still reflects findings)
    #[arg(short, long)]
    pub quiet: bool,

    /// Maximum file size in bytes to scan (default: 1 MB)
    #[arg(long, default_value_t = 1_048_576)]
    pub max_file_size: u64,

    /// Post findings as inline review comments on a GitHub PR
    #[arg(long)]
    pub github_pr: Option<u64>,

    /// Write machine-readable output to a file instead of stdout
    #[arg(long)]
    pub output: Option<String>,

    /// Show per-finding confidence scores in terminal output
    #[arg(long, default_value_t = false)]
    pub show_confidence: bool,

    /// Minimum confidence (0.0–1.0) to report. Findings below this
    /// threshold are suppressed. Defaults to 0.0 (report all).
    #[arg(long)]
    pub min_confidence: Option<f32>,

    /// Do not query OSV over the network; use --sca-db or --sca-cache only.
    #[arg(long, default_value_t = false)]
    pub sca_offline: bool,

    /// Local OSV advisory JSON/JSONL file or directory for offline SCA runs.
    #[arg(long)]
    pub sca_db: Option<String>,

    /// Read/write an OSV query cache for dependency vulnerability scanning.
    #[arg(long)]
    pub sca_cache: Option<String>,
}

#[derive(Args, Debug, Clone)]
pub struct InternalAddScanIgnoreRuleArgs {
    /// Scan root used to resolve relative finding paths.
    #[arg(long)]
    pub scan_path: String,

    /// Explicit config path to edit.
    #[arg(long)]
    pub config: Option<String>,

    /// Repository-relative file path for the finding to suppress.
    #[arg(long)]
    pub file: String,

    /// Rule ID to add under scan.ignore_rules.
    #[arg(long)]
    pub rule_id: String,
}

#[derive(Subcommand, Debug, Clone)]
pub enum InternalCommand {
    /// Internal helper: add a scan.ignore_rules entry using the Rust config editor.
    #[command(hide = true, name = "add-scan-ignore-rule")]
    AddScanIgnoreRule(InternalAddScanIgnoreRuleArgs),
}

#[derive(Args, Debug, Clone)]
pub struct InternalArgs {
    #[command(subcommand)]
    pub command: InternalCommand,
}

impl PqcArgs {
    /// Convert to `ScanArgs` with `pq_mode` enabled.
    pub fn to_scan_args(&self) -> ScanArgs {
        ScanArgs {
            path: self.path.clone(),
            config: self.config.clone(),
            format: self.format,
            severity: self.severity,
            rules: None,
            codeql_db: None,
            no_builtins: false,
            changes: self.changes.clone(),
            changed_files_from: None,
            exclude: self.exclude.clone(),
            baseline: self.baseline.clone(),
            write_baseline: None,
            explain: self.explain,
            fix: false,
            github_pr: self.github_pr,
            quiet: self.quiet,
            output: self.output.clone(),
            max_file_size: self.max_file_size,
            show_confidence: self.show_confidence,
            min_confidence: None,
            pq_mode: true,
            sca: false,
            sca_offline: false,
            sca_db: None,
            sca_cache: None,
            // `pqc` subcommand always shows CNSA 2.0 context — that's
            // exactly the audience for that command.
            cnsa2: true,
        }
    }
}

impl ScaArgs {
    /// Convert to `ScanArgs` with dependency vulnerability scanning enabled.
    pub fn to_scan_args(&self) -> ScanArgs {
        ScanArgs {
            path: self.path.clone(),
            config: self.config.clone(),
            format: self.format,
            severity: self.severity,
            rules: None,
            codeql_db: None,
            no_builtins: true,
            changes: self.changes.clone(),
            changed_files_from: None,
            exclude: self.exclude.clone(),
            baseline: self.baseline.clone(),
            write_baseline: None,
            explain: false,
            fix: false,
            github_pr: self.github_pr,
            quiet: self.quiet,
            output: self.output.clone(),
            max_file_size: self.max_file_size,
            show_confidence: self.show_confidence,
            min_confidence: self.min_confidence,
            pq_mode: false,
            sca: true,
            sca_offline: self.sca_offline,
            sca_db: self.sca_db.clone(),
            sca_cache: self.sca_cache.clone(),
            cnsa2: false,
        }
    }
}

impl BaselineScanArgs {
    pub fn to_scan_args(&self) -> ScanArgs {
        ScanArgs {
            path: self.path.clone(),
            config: self.config.clone(),
            format: self.format,
            severity: self.severity,
            rules: self.rules.clone(),
            codeql_db: self.codeql_db.clone(),
            no_builtins: self.no_builtins,
            changes: self.changes.clone(),
            changed_files_from: None,
            exclude: self.exclude.clone(),
            baseline: self.baseline.clone(),
            write_baseline: self.write_baseline.clone(),
            explain: self.explain,
            fix: self.fix,
            github_pr: self.github_pr,
            quiet: self.quiet,
            output: None,
            max_file_size: self.max_file_size,
            show_confidence: self.show_confidence,
            min_confidence: self.min_confidence,
            pq_mode: self.pq_mode,
            sca: self.sca,
            sca_offline: self.sca_offline,
            sca_db: self.sca_db.clone(),
            sca_cache: self.sca_cache.clone(),
            cnsa2: self.cnsa2,
        }
    }
}

#[derive(Subcommand, Debug, Clone)]
pub enum Command {
    /// Install a pre-commit hook for local foxguard runs
    Init(InitArgs),
    /// Generate a baseline file from current findings
    Baseline(BaselineArgs),
    /// Scan repositories and changed files for common secrets
    Secrets(SecretsArgs),
    /// Show only new findings compared to a target branch
    Diff(DiffArgs),
    /// Explore scan findings in the interactive terminal TUI
    Tui(TuiArgs),
    /// Post-quantum cryptography audit — scan for quantum-vulnerable algorithms
    Pqc(PqcArgs),
    /// Dependency vulnerability audit using OSV
    Sca(ScaArgs),
    /// Internal machine-facing helpers used by editor integrations.
    #[command(hide = true, name = "internal")]
    Internal(InternalArgs),
}

#[derive(Parser, Debug)]
#[command(
    name = "foxguard",
    about = "Fast local security guard for changed files, built-in rules, and external YAML",
    version
)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Option<Command>,

    #[command(flatten)]
    pub scan: ScanArgs,
}

impl SeverityFilter {
    pub fn to_severity(&self) -> crate::Severity {
        match self {
            SeverityFilter::Low => crate::Severity::Low,
            SeverityFilter::Medium => crate::Severity::Medium,
            SeverityFilter::High => crate::Severity::High,
            SeverityFilter::Critical => crate::Severity::Critical,
        }
    }
}