Skip to main content

fallow_types/
envelope.rs

1//! Typed envelope and utility-shape structs for the JSON output contract.
2//!
3//! Today the JSON serialization layer (`crates/cli/src/report/json.rs`) builds
4//! its envelopes (`CheckOutput`, `HealthOutput`, ...) via `serde_json::json!`
5//! macros and ad-hoc map merging. The types in this module are the schema-side
6//! counterpart of those envelopes plus a small set of utility shapes
7//! (`SchemaVersion`, `Meta`, `BaselineDeltas`, ...) that the envelopes
8//! reference.
9//!
10//! Gated on the `schema` cargo feature so consumers that do not need the
11//! `schemars::JsonSchema` derive (every crate except `fallow-cli` with
12//! `--features schema-emit`) skip the schemars compile cost.
13
14use std::collections::BTreeMap;
15
16use serde::{Deserialize, Serialize};
17
18use crate::semantic::{
19    ApiSurfaceResult, SemanticAnalysisIdentity, SemanticCandidateDecision, SemanticGapReason,
20    SemanticQuerySummary, SemanticSymbolImpact, SemanticSymbolTrace, TypeCouplingReport,
21};
22
23/// Schema version for this output format (independent of tool version). Bump
24/// policy: ADDITIVE changes (new optional top-level fields, new optional struct
25/// fields, new array entries, new MCP tools, new CLI flags that map to new
26/// optional fields) do NOT bump the version; consumers receive new fields
27/// without breaking. BREAKING changes (renamed fields, removed fields, type
28/// changes, enum-variant removals, semantic changes to existing fields) DO
29/// bump. Additions to existing enum-valued required fields bump the affected
30/// envelope version so strict JSON Schema consumers can migrate.
31/// `ComplexityContributionKind` is non-exhaustive so Rust consumers retain a
32/// wildcard. To
33/// detect newly-added fields without a bump, check field presence via
34/// JSON-key existence rather than gating on the version. v4 was introduced
35/// alongside fallow-cov-protocol 0.2 (per-finding verdict, stable IDs, evidence
36/// block, renamed summary fields); v5 introduced health_score formula_version 2
37/// with scale-invariant scoring semantics; v6 widened `AddToConfigAction.value`
38/// from a scalar string to `oneOf: [string, array]` so the new `ignoreExports`
39/// action can carry a paste-ready array of `{ file, exports }` rule objects
40/// (the legacy `ignoreDependencies` etc. variants still emit strings, so
41/// consumers that switch on `config_key` keep working unchanged). v8 added the
42/// required duplication `spread` field and changed `duplicated_tokens` to count
43/// redundant copies, excluding the retained copy in each group. Envelopes
44/// embedding health use their own version marker, so health-only contract
45/// changes do not advance dead-code or unrelated sibling envelopes. The
46/// runtime-coverage block is extended additively as the protocol evolves
47/// (currently 0.3, which adds an optional capture_quality summary field). Other
48/// additive examples: dupes --group-by adds optional grouped_by, total_issues,
49/// groups fields without bumping.
50#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
51#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
52#[serde(transparent)]
53pub struct SchemaVersion(pub u32);
54
55/// Fallow CLI version that produced this envelope. Renders to the JSON wire as
56/// a bare string (e.g. `"2.74.0"`).
57#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
58#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
59#[serde(transparent)]
60pub struct ToolVersion(pub String);
61
62/// Analysis duration in milliseconds. Renders to the JSON wire as a bare
63/// integer.
64#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
65#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
66#[serde(transparent)]
67pub struct ElapsedMs(pub u64);
68
69/// Audit-mode marker emitted on each finding when `fallow audit --format json`
70/// runs with a base ref. `true` means the finding's structural key was not
71/// present at the base ref (introduced by the current changeset); `false`
72/// means it was inherited. Duplication findings carry one carve-out: a clone
73/// group whose structural key is new but whose instances contain no added line
74/// from the diff (a group re-shaped by removing duplication elsewhere) is
75/// demoted to inherited and serializes `false` (issue #2164). Such demoted
76/// groups additionally carry a `demotion_reason` field naming the rule, and
77/// are counted in `attribution.duplication_demoted` (issue #2220).
78///
79/// Outside of audit sub-results the field is omitted, so call sites typically
80/// hold `Option<AuditIntroduced>`. Renders to the JSON wire as a bare boolean.
81#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize)]
82#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
83#[serde(transparent)]
84pub struct AuditIntroduced(pub bool);
85
86/// Entry-point detection summary embedded in `CheckOutput` and the combined
87/// envelope.
88#[derive(Debug, Clone, Default, Serialize)]
89#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
90pub struct EntryPoints {
91    /// Total number of detected entry points.
92    pub total: usize,
93    /// Breakdown of entry points by detection source (e.g., `"package.json"`,
94    /// `"next.js"`, `"config entry"`). Underscored keys so dashboards can
95    /// drill into individual sources.
96    pub sources: BTreeMap<String, usize>,
97}
98
99/// Per-category issue counts for dead-code analysis. Always present in
100/// `CheckOutput`; when `--summary` is used the individual issue arrays are
101/// omitted but this object stays populated.
102#[derive(Debug, Clone, Default, Serialize)]
103#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
104pub struct CheckSummary {
105    /// Total number of issues across all categories.
106    pub total_issues: usize,
107    /// Unused source files.
108    pub unused_files: usize,
109    /// Unused value exports.
110    pub unused_exports: usize,
111    /// Unused type exports.
112    pub unused_types: usize,
113    /// Public exports whose signature references same-file private types.
114    pub private_type_leaks: usize,
115    /// Combined count of unused entries across `dependencies`,
116    /// `devDependencies`, and `optionalDependencies`. The per-section
117    /// breakdown lives in the individual issue arrays on `CheckOutput`.
118    pub unused_dependencies: usize,
119    /// Unused enum members.
120    pub unused_enum_members: usize,
121    /// Unused class members.
122    pub unused_class_members: usize,
123    /// Unused store members.
124    #[serde(default)]
125    pub unused_store_members: usize,
126    /// Vue/Svelte injects whose key is provided nowhere in the project.
127    #[serde(default)]
128    pub unprovided_injects: usize,
129    /// Vue/Svelte components reachable but rendered nowhere in the project.
130    #[serde(default)]
131    pub unrendered_components: usize,
132    /// Vue, Svelte, or React props referenced nowhere inside their own component.
133    #[serde(default)]
134    pub unused_component_props: usize,
135    /// Vue `<script setup>` emits emitted nowhere inside their own SFC.
136    #[serde(default)]
137    pub unused_component_emits: usize,
138    /// Angular `@Input()` bindings referenced nowhere inside their own component.
139    #[serde(default)]
140    pub unused_component_inputs: usize,
141    /// Angular `@Output()` bindings emitted nowhere inside their own component.
142    #[serde(default)]
143    pub unused_component_outputs: usize,
144    /// Svelte components dispatching a custom event via `createEventDispatcher`
145    /// whose name is listened to nowhere in the project.
146    #[serde(default)]
147    pub unused_svelte_events: usize,
148    /// Next.js Server Actions (exports of `"use server"` files) referenced by no
149    /// code in the project.
150    #[serde(default)]
151    pub unused_server_actions: usize,
152    /// SvelteKit `load()` return-object keys read by no consumer.
153    #[serde(default)]
154    pub unused_load_data_keys: usize,
155    /// Imports that could not be resolved against the project's module graph.
156    pub unresolved_imports: usize,
157    /// Dependencies imported but absent from `package.json`.
158    pub unlisted_dependencies: usize,
159    /// Same-named exports declared in more than one module.
160    pub duplicate_exports: usize,
161    /// Production dependencies only used via type-only imports (could be
162    /// devDependencies). Only populated in production mode.
163    pub type_only_dependencies: usize,
164    /// Production dependencies only imported by test files (could be
165    /// devDependencies).
166    pub test_only_dependencies: usize,
167    /// devDependencies imported by production source code with a runtime/value
168    /// import (should be promoted to dependencies).
169    pub dev_dependencies_in_production: usize,
170    /// Cycles detected in the import graph.
171    pub circular_dependencies: usize,
172    /// Cycles or self-loops in the re-export edge subgraph (barrel files
173    /// re-exporting from each other in a loop).
174    #[serde(default)]
175    pub re_export_cycles: usize,
176    /// Imports that cross architecture boundary rules.
177    pub boundary_violations: usize,
178    /// Files that match no architecture boundary zone.
179    #[serde(default)]
180    pub boundary_coverage_violations: usize,
181    /// Calls from zoned files to callees forbidden for that zone.
182    #[serde(default)]
183    pub boundary_call_violations: usize,
184    /// Banned calls, imports, and catalogue-derived effects matched by
185    /// declarative rule packs.
186    #[serde(default)]
187    pub policy_violations: usize,
188    /// Suppression comments that no longer match a finding.
189    pub stale_suppressions: usize,
190    /// Unused pnpm-workspace catalog entries.
191    pub unused_catalog_entries: usize,
192    /// Empty named catalog groups.
193    pub empty_catalog_groups: usize,
194    /// Workspace package.json catalog references the workspace catalogs
195    /// do not declare.
196    pub unresolved_catalog_references: usize,
197    /// Package-manager overrides whose target package is not declared by any
198    /// workspace package and not present in the active readable lockfile.
199    pub unused_dependency_overrides: usize,
200    /// Package-manager overrides whose key or value cannot be parsed.
201    pub misconfigured_dependency_overrides: usize,
202    /// `"use client"` files that export a Next.js server-only / route-config name.
203    #[serde(default)]
204    pub invalid_client_exports: usize,
205    /// Barrel files that re-export both a `"use client"` origin and a
206    /// server-only origin.
207    #[serde(default)]
208    pub mixed_client_server_barrels: usize,
209    /// Misplaced `"use client"` / `"use server"` directives written as
210    /// expression statements after a non-directive statement.
211    #[serde(default)]
212    pub misplaced_directives: usize,
213    /// Next.js App Router route files that resolve to the same URL within one
214    /// app-root.
215    #[serde(default)]
216    pub route_collisions: usize,
217    /// Sibling Next.js dynamic route segments at one position using different
218    /// param spellings.
219    #[serde(default)]
220    pub dynamic_segment_name_conflicts: usize,
221}
222
223/// Per-category delta comparison against a saved baseline. Only present in
224/// `CheckOutput` when `--baseline` is used.
225#[derive(Debug, Clone, Default, Serialize)]
226#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
227pub struct BaselineDeltas {
228    /// Net change in total issues vs baseline (positive = more issues).
229    pub total_delta: i64,
230    /// Per-category breakdown of current, baseline, and delta counts.
231    pub per_category: BTreeMap<String, BaselineCategoryDelta>,
232}
233
234/// Single-category baseline delta entry inside [`BaselineDeltas::per_category`].
235#[derive(Debug, Clone, Copy, Default, Serialize)]
236#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
237pub struct BaselineCategoryDelta {
238    /// Current issue count for this category.
239    pub current: usize,
240    /// Baseline issue count for this category.
241    pub baseline: usize,
242    /// Change from baseline (current - baseline).
243    pub delta: i64,
244}
245
246/// Baseline match statistics. Shows how many baseline entries existed and how
247/// many matched current issues. Useful for detecting stale baselines
248/// programmatically. Only present in `CheckOutput` when `--baseline` is used.
249#[derive(Debug, Clone, Copy, Default, Serialize)]
250#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
251pub struct BaselineMatch {
252    /// Total number of entries in the loaded baseline file.
253    pub entries: usize,
254    /// Number of baseline entries that matched current issues and were
255    /// filtered.
256    pub matched: usize,
257}
258
259/// Result of regression detection (`--fail-on-regression`). Compares current
260/// issue counts against a baseline from config or an explicit file.
261#[derive(Debug, Clone, Serialize)]
262#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
263pub struct RegressionResult {
264    /// Outcome of the regression check.
265    pub status: RegressionStatus,
266    /// Baseline total before the change. Absent when status is `skipped`.
267    #[serde(default, skip_serializing_if = "Option::is_none")]
268    pub baseline_total: Option<i64>,
269    /// Current total after the change. Absent when status is `skipped`.
270    #[serde(default, skip_serializing_if = "Option::is_none")]
271    pub current_total: Option<i64>,
272    /// Difference current - baseline. Absent when status is `skipped`.
273    #[serde(default, skip_serializing_if = "Option::is_none")]
274    pub delta: Option<i64>,
275    /// Configured tolerance, interpreted per [`RegressionToleranceKind`].
276    /// Absent when status is `skipped`.
277    #[serde(default, skip_serializing_if = "Option::is_none")]
278    pub tolerance: Option<f64>,
279    /// Interpretation of the tolerance value.
280    #[serde(default, skip_serializing_if = "Option::is_none")]
281    pub tolerance_kind: Option<RegressionToleranceKind>,
282    /// Whether the regression exceeded the tolerance.
283    pub exceeded: bool,
284    /// Only present when status is `skipped`.
285    #[serde(default, skip_serializing_if = "Option::is_none")]
286    pub reason: Option<String>,
287}
288
289/// Status of a regression-check pass.
290#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
291#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
292#[serde(rename_all = "lowercase")]
293pub enum RegressionStatus {
294    /// Issue count within tolerance.
295    Pass,
296    /// Issue count exceeded tolerance.
297    Exceeded,
298    /// Regression check did not run (missing baseline, etc.).
299    Skipped,
300}
301
302/// Interpretation of [`RegressionResult::tolerance`].
303#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
304#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
305#[serde(rename_all = "lowercase")]
306pub enum RegressionToleranceKind {
307    /// Tolerance is interpreted as an absolute issue-count delta.
308    Absolute,
309    /// Tolerance is interpreted as a percentage of the baseline total.
310    Percentage,
311}
312
313/// Metric and rule definitions emitted under `_meta` when `--explain` is
314/// passed (always present in MCP responses). Helps AI agents and CI systems
315/// interpret metric values without re-reading the docs site.
316#[derive(Debug, Clone, Default, Serialize)]
317#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
318pub struct Meta {
319    /// URL to the documentation page for this command.
320    #[serde(default, skip_serializing_if = "Option::is_none")]
321    pub docs: Option<String>,
322    /// Local telemetry correlation metadata for agent follow-up runs.
323    #[serde(default, skip_serializing_if = "Option::is_none")]
324    pub telemetry: Option<TelemetryMeta>,
325    /// Provenance for the opt-in TypeScript semantic analysis pass.
326    #[serde(default, skip_serializing_if = "Option::is_none")]
327    pub type_aware: Option<TypeAwareMeta>,
328    /// Per-field definitions for envelope fields and action payload fields.
329    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
330    pub field_definitions: BTreeMap<String, String>,
331    /// Per-metric definitions: name, description, range, interpretation.
332    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
333    pub metrics: BTreeMap<String, MetaMetric>,
334    /// Per-rule definitions for check command output.
335    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
336    pub rules: BTreeMap<String, MetaRule>,
337}
338
339/// Bounded provenance emitted when the opt-in type-aware pass runs.
340#[derive(Debug, Clone, Default, Deserialize, Serialize)]
341#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
342pub struct TypeAwareMeta {
343    /// Compatibility identity used by audit, baselines, snapshots, and stores.
344    #[serde(default, skip_serializing_if = "Option::is_none")]
345    pub identity: Option<SemanticAnalysisIdentity>,
346    /// Effective CLI or repository policy for incomplete semantic evidence.
347    #[serde(default, skip_serializing_if = "Option::is_none")]
348    pub required_completeness: Option<crate::semantic::SemanticCompletenessRequirement>,
349    /// Compact status for every requested semantic query.
350    #[serde(default, skip_serializing_if = "Vec::is_empty")]
351    pub queries: Vec<SemanticQuerySummary>,
352    /// Bounded decision and evidence for each semantic dead-code candidate.
353    #[serde(default, skip_serializing_if = "Vec::is_empty")]
354    pub candidate_decisions: Vec<SemanticCandidateDecision>,
355    /// Checker-backed trace evidence requested by focused symbol queries.
356    #[serde(default, skip_serializing_if = "Vec::is_empty")]
357    pub symbol_traces: Vec<SemanticSymbolTrace>,
358    /// Package-public surface and confirmed private type leaks.
359    #[serde(default, skip_serializing_if = "Option::is_none")]
360    pub api_surface: Option<ApiSurfaceResult>,
361    /// Exact-symbol blast radius and targeted-test recommendations.
362    #[serde(default, skip_serializing_if = "Vec::is_empty")]
363    pub symbol_impacts: Vec<SemanticSymbolImpact>,
364    /// Advisory project-local public-signature coupling.
365    #[serde(default, skip_serializing_if = "Option::is_none")]
366    pub type_coupling: Option<TypeCouplingReport>,
367    /// Whether the semantic companion executed at least one query.
368    pub executed: bool,
369    /// Version of Fallow's backend-neutral sidecar protocol.
370    pub protocol_version: u32,
371    /// Version of the sidecar package that executed the query.
372    #[serde(default, skip_serializing_if = "Option::is_none")]
373    pub sidecar_version: Option<String>,
374    /// Semantic backend capability identifier.
375    pub backend: String,
376    /// Backend compiler or engine version that executed the query.
377    #[serde(default, skip_serializing_if = "Option::is_none")]
378    pub backend_version: Option<String>,
379    /// TypeScript project configs selected for candidate files.
380    pub selected_tsconfigs: Vec<String>,
381    /// Number of candidate findings sent to the sidecar.
382    pub candidate_count: usize,
383    /// Number of candidates confirmed as used and removed.
384    pub confirmed_used_count: usize,
385    /// Number of candidates preserved because they implement or override a contract.
386    pub contract_preserved_count: usize,
387    /// Number of candidates with complete, closed-world no-static-reference evidence.
388    pub no_static_references_count: usize,
389    /// Number of retained class members eligible for a guarded type-aware fix.
390    pub fix_eligible_count: usize,
391    /// Number of candidates retained because semantic use was unresolved.
392    pub unresolved_count: usize,
393    /// Number of candidates retained because semantic analysis abstained.
394    pub abstained_count: usize,
395    /// Stable abstention reason counts for automation and diagnostics.
396    pub abstention_reasons: TypeAwareAbstentionCounts,
397    /// Per-project semantic refinement status and evidence.
398    pub projects: Vec<TypeAwareProjectMeta>,
399    /// Number of bounded warnings returned by the sidecar.
400    pub warning_count: usize,
401    /// Bounded semantic warnings. Findings mentioned here were retained.
402    pub warnings: Vec<String>,
403    /// Semantic pass duration as reported by the sidecar.
404    pub elapsed_ms: u64,
405    /// Bounded semantic phase timings reported by the sidecar.
406    pub phase_timings_ms: TypeAwarePhaseTimings,
407}
408
409/// Closed set of reasons for retaining a candidate without semantic scanning.
410#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
411#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
412#[serde(rename_all = "kebab-case")]
413pub enum TypeAwareAbstentionReason {
414    /// No selected TypeScript project contains the candidate file.
415    #[default]
416    NoProject,
417    /// Multiple explicit TypeScript projects contain the candidate file.
418    AmbiguousProject,
419    /// Structural TypeScript diagnostics make exact matching unsafe.
420    BlockingDiagnostics,
421}
422
423/// Closed abstention reason counts for stable machine consumption.
424#[derive(Debug, Clone, Default, Deserialize, Serialize)]
425#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
426pub struct TypeAwareAbstentionCounts {
427    /// Candidates not contained by a selected TypeScript project.
428    pub no_project: usize,
429    /// Candidates contained by more than one explicit TypeScript project.
430    pub ambiguous_project: usize,
431    /// Candidates retained because structural diagnostics block scanning.
432    pub blocking_diagnostics: usize,
433    /// Candidates retained because the raw TypeScript-Go host cannot expose
434    /// named exports from Svelte virtual modules.
435    pub svelte_virtual_module_exports: usize,
436    /// Candidates whose exact declaration identity could not be resolved.
437    pub unknown_symbol: usize,
438    /// Candidates using declaration syntax unsupported by the semantic backend.
439    pub unsupported_syntax: usize,
440    /// Candidates retained because the bounded semantic request reached capacity.
441    pub capacity: usize,
442}
443
444/// How a TypeScript project was selected for semantic refinement.
445#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
446#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
447#[serde(rename_all = "kebab-case")]
448pub enum TypeAwareProjectSource {
449    /// Fallow selected the nearest discovered project automatically.
450    #[default]
451    Auto,
452    /// The project was supplied with `--type-aware-project`.
453    Explicit,
454}
455
456/// Outcome of semantic refinement for one TypeScript project.
457#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
458#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
459#[serde(rename_all = "kebab-case")]
460pub enum TypeAwareProjectStatus {
461    /// The project was structurally safe and its candidates were scanned.
462    #[default]
463    Refined,
464    /// Structural diagnostics prevented candidate scanning.
465    Abstained,
466    /// All semantic queries assigned to this Program completed.
467    Complete,
468    /// The Program could not answer its assigned semantic queries safely.
469    Unavailable,
470}
471
472/// How a persistent semantic snapshot was refreshed.
473#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize)]
474#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
475#[serde(rename_all = "kebab-case")]
476pub enum TypeAwareInvalidationKind {
477    /// The backend rebuilt project state from a clean snapshot.
478    Full,
479    /// The backend applied an explicit source-file change set.
480    Incremental,
481    /// No filesystem change was reported between compatible requests.
482    None,
483}
484
485/// Semantic sidecar timings, separated from Fallow's syntactic pipeline.
486#[derive(Debug, Clone, Default, Deserialize, Serialize)]
487#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
488pub struct TypeAwarePhaseTimings {
489    /// TypeScript API construction and project snapshot selection.
490    pub project_setup: u64,
491    /// TypeScript diagnostics collected before any candidate refinement.
492    pub diagnostics: u64,
493    /// Batched symbol lookup and exact declaration matching.
494    pub symbol_scan: u64,
495}
496
497/// Bounded provenance for one TypeScript project handled by the sidecar.
498#[derive(Debug, Clone, Default, Deserialize, Serialize)]
499#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
500pub struct TypeAwareProjectMeta {
501    /// Project config relative to the analysis root, or `<inferred>`.
502    pub config: String,
503    /// How the project was selected: `auto` or `explicit`.
504    pub source: TypeAwareProjectSource,
505    /// Project result: `refined`, `abstained`, `complete`, or `unavailable`.
506    pub status: TypeAwareProjectStatus,
507    /// Candidates assigned to this project.
508    pub candidate_count: usize,
509    /// Candidates confirmed as used and removed.
510    pub confirmed_used_count: usize,
511    /// Candidates retained because they implement or override a contract.
512    pub contract_preserved_count: usize,
513    /// Candidates with complete no-static-reference evidence.
514    pub no_static_references_count: usize,
515    /// Candidates eligible for a guarded class-member fix.
516    pub fix_eligible_count: usize,
517    /// Candidates whose exact semantic outcome remained unresolved.
518    pub unresolved_count: usize,
519    /// Candidates retained without scanning because the project was unsafe.
520    pub abstained_count: usize,
521    /// Config, program, syntactic, and bind diagnostics that block scanning.
522    pub blocking_diagnostic_count: usize,
523    /// Source files loaded into this TypeScript program.
524    pub source_file_count: usize,
525    /// Whether this Program served more than one semantic query in the batch.
526    #[serde(default, skip_serializing_if = "Option::is_none")]
527    pub program_reused: Option<bool>,
528    /// Whether this Program served more than one query in the current batch.
529    #[serde(default, skip_serializing_if = "Option::is_none")]
530    pub program_shared_across_queries: Option<bool>,
531    /// Whether the root-bound semantic session reused the prior snapshot.
532    #[serde(default, skip_serializing_if = "Option::is_none")]
533    pub program_reused_from_previous_snapshot: Option<bool>,
534    /// Monotonic revision within the root-bound semantic session.
535    #[serde(default, skip_serializing_if = "Option::is_none")]
536    pub snapshot_revision: Option<u64>,
537    /// Full, incremental, or no invalidation before this query.
538    #[serde(default, skip_serializing_if = "Option::is_none")]
539    pub invalidation_kind: Option<TypeAwareInvalidationKind>,
540    /// Stable project-level gap reason.
541    #[serde(default, skip_serializing_if = "Option::is_none")]
542    pub reason_code: Option<SemanticGapReason>,
543    /// Stable reason code when `status` is `abstained`.
544    #[serde(default, skip_serializing_if = "Option::is_none")]
545    #[cfg_attr(feature = "schema", schemars(with = "TypeAwareAbstentionReason"))]
546    pub abstain_reason: Option<TypeAwareAbstentionReason>,
547}
548
549/// Privacy-safe local run metadata emitted for JSON consumers.
550#[derive(Debug, Clone, Default, Serialize)]
551#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
552pub struct TelemetryMeta {
553    /// Ephemeral local token that may be passed to the hidden `--parent-run`
554    /// flag on a later command. It is not derived from repository, path, user,
555    /// machine, project, or cloud data.
556    #[serde(default, skip_serializing_if = "Option::is_none")]
557    pub analysis_run_id: Option<String>,
558}
559
560/// Single-metric definition inside [`Meta::metrics`].
561#[derive(Debug, Clone, Default, Serialize)]
562#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
563pub struct MetaMetric {
564    /// Human-readable metric name.
565    #[serde(default, skip_serializing_if = "Option::is_none")]
566    pub name: Option<String>,
567    /// What this metric measures and how it is computed.
568    #[serde(default, skip_serializing_if = "Option::is_none")]
569    pub description: Option<String>,
570    /// Valid value range (e.g., `"[0, 100]"`).
571    #[serde(default, skip_serializing_if = "Option::is_none")]
572    pub range: Option<String>,
573    /// How to read the value (e.g., `"lower is better"`).
574    #[serde(default, skip_serializing_if = "Option::is_none")]
575    pub interpretation: Option<String>,
576}
577
578/// Single-rule definition inside [`Meta::rules`].
579#[derive(Debug, Clone, Default, Serialize)]
580#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
581pub struct MetaRule {
582    /// Human-readable rule name.
583    #[serde(default, skip_serializing_if = "Option::is_none")]
584    pub name: Option<String>,
585    /// What this rule detects.
586    #[serde(default, skip_serializing_if = "Option::is_none")]
587    pub description: Option<String>,
588    /// URL to the rule documentation.
589    #[serde(default, skip_serializing_if = "Option::is_none")]
590    pub docs: Option<String>,
591}