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 /// Exports marked `@deprecated` that are still referenced.
116 pub deprecated_exports_in_use: usize,
117 /// Combined count of unused entries across `dependencies`,
118 /// `devDependencies`, and `optionalDependencies`. The per-section
119 /// breakdown lives in the individual issue arrays on `CheckOutput`.
120 pub unused_dependencies: usize,
121 /// Unused enum members.
122 pub unused_enum_members: usize,
123 /// Unused class members.
124 pub unused_class_members: usize,
125 /// Unused store members.
126 #[serde(default)]
127 pub unused_store_members: usize,
128 /// Vue/Svelte injects whose key is provided nowhere in the project.
129 #[serde(default)]
130 pub unprovided_injects: usize,
131 /// Vue/Svelte components reachable but rendered nowhere in the project.
132 #[serde(default)]
133 pub unrendered_components: usize,
134 /// Vue, Svelte, or React props referenced nowhere inside their own component.
135 #[serde(default)]
136 pub unused_component_props: usize,
137 /// Vue `<script setup>` emits emitted nowhere inside their own SFC.
138 #[serde(default)]
139 pub unused_component_emits: usize,
140 /// Angular `@Input()` bindings referenced nowhere inside their own component.
141 #[serde(default)]
142 pub unused_component_inputs: usize,
143 /// Angular `@Output()` bindings emitted nowhere inside their own component.
144 #[serde(default)]
145 pub unused_component_outputs: usize,
146 /// Svelte components dispatching a custom event via `createEventDispatcher`
147 /// whose name is listened to nowhere in the project.
148 #[serde(default)]
149 pub unused_svelte_events: usize,
150 /// Next.js Server Actions (exports of `"use server"` files) referenced by no
151 /// code in the project.
152 #[serde(default)]
153 pub unused_server_actions: usize,
154 /// SvelteKit `load()` return-object keys read by no consumer.
155 #[serde(default)]
156 pub unused_load_data_keys: usize,
157 /// Imports that could not be resolved against the project's module graph.
158 pub unresolved_imports: usize,
159 /// Dependencies imported but absent from `package.json`.
160 pub unlisted_dependencies: usize,
161 /// Same-named exports declared in more than one module.
162 pub duplicate_exports: usize,
163 /// Production dependencies only used via type-only imports (could be
164 /// devDependencies). Only populated in production mode.
165 pub type_only_dependencies: usize,
166 /// Production dependencies only imported by test files (could be
167 /// devDependencies).
168 pub test_only_dependencies: usize,
169 /// devDependencies imported by production source code with a runtime/value
170 /// import (should be promoted to dependencies).
171 pub dev_dependencies_in_production: usize,
172 /// Cycles detected in the import graph.
173 pub circular_dependencies: usize,
174 /// Cycles or self-loops in the re-export edge subgraph (barrel files
175 /// re-exporting from each other in a loop).
176 #[serde(default)]
177 pub re_export_cycles: usize,
178 /// Imports that cross architecture boundary rules.
179 pub boundary_violations: usize,
180 /// Files that match no architecture boundary zone.
181 #[serde(default)]
182 pub boundary_coverage_violations: usize,
183 /// Calls from zoned files to callees forbidden for that zone.
184 #[serde(default)]
185 pub boundary_call_violations: usize,
186 /// Banned calls, imports, and catalogue-derived effects matched by
187 /// declarative rule packs.
188 #[serde(default)]
189 pub policy_violations: usize,
190 /// Suppression comments that no longer match a finding.
191 pub stale_suppressions: usize,
192 /// Unused pnpm-workspace catalog entries.
193 pub unused_catalog_entries: usize,
194 /// Empty named catalog groups.
195 pub empty_catalog_groups: usize,
196 /// Workspace package.json catalog references the workspace catalogs
197 /// do not declare.
198 pub unresolved_catalog_references: usize,
199 /// Package-manager overrides whose target package is not declared by any
200 /// workspace package and not present in the active readable lockfile.
201 pub unused_dependency_overrides: usize,
202 /// Package-manager overrides whose key or value cannot be parsed.
203 pub misconfigured_dependency_overrides: usize,
204 /// `"use client"` files that export a Next.js server-only / route-config name.
205 #[serde(default)]
206 pub invalid_client_exports: usize,
207 /// Barrel files that re-export both a `"use client"` origin and a
208 /// server-only origin.
209 #[serde(default)]
210 pub mixed_client_server_barrels: usize,
211 /// Misplaced `"use client"` / `"use server"` directives written as
212 /// expression statements after a non-directive statement.
213 #[serde(default)]
214 pub misplaced_directives: usize,
215 /// Next.js App Router route files that resolve to the same URL within one
216 /// app-root.
217 #[serde(default)]
218 pub route_collisions: usize,
219 /// Sibling Next.js dynamic route segments at one position using different
220 /// param spellings.
221 #[serde(default)]
222 pub dynamic_segment_name_conflicts: usize,
223}
224
225/// Per-category delta comparison against a saved baseline. Only present in
226/// `CheckOutput` when `--baseline` is used.
227#[derive(Debug, Clone, Default, Serialize)]
228#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
229pub struct BaselineDeltas {
230 /// Net change in total issues vs baseline (positive = more issues).
231 pub total_delta: i64,
232 /// Per-category breakdown of current, baseline, and delta counts.
233 pub per_category: BTreeMap<String, BaselineCategoryDelta>,
234}
235
236/// Single-category baseline delta entry inside [`BaselineDeltas::per_category`].
237#[derive(Debug, Clone, Copy, Default, Serialize)]
238#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
239pub struct BaselineCategoryDelta {
240 /// Current issue count for this category.
241 pub current: usize,
242 /// Baseline issue count for this category.
243 pub baseline: usize,
244 /// Change from baseline (current - baseline).
245 pub delta: i64,
246}
247
248/// Baseline match statistics. Shows how many baseline entries existed and how
249/// many matched current issues. Useful for detecting stale baselines
250/// programmatically. Only present in `CheckOutput` when `--baseline` is used.
251#[derive(Debug, Clone, Copy, Default, Serialize)]
252#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
253pub struct BaselineMatch {
254 /// Total number of entries in the loaded baseline file.
255 pub entries: usize,
256 /// Number of baseline entries that matched current issues and were
257 /// filtered.
258 pub matched: usize,
259}
260
261/// Result of regression detection (`--fail-on-regression`). Compares current
262/// issue counts against a baseline from config or an explicit file.
263#[derive(Debug, Clone, Serialize)]
264#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
265pub struct RegressionResult {
266 /// Outcome of the regression check.
267 pub status: RegressionStatus,
268 /// Baseline total before the change. Absent when status is `skipped`.
269 #[serde(default, skip_serializing_if = "Option::is_none")]
270 pub baseline_total: Option<i64>,
271 /// Current total after the change. Absent when status is `skipped`.
272 #[serde(default, skip_serializing_if = "Option::is_none")]
273 pub current_total: Option<i64>,
274 /// Difference current - baseline. Absent when status is `skipped`.
275 #[serde(default, skip_serializing_if = "Option::is_none")]
276 pub delta: Option<i64>,
277 /// Configured tolerance, interpreted per [`RegressionToleranceKind`].
278 /// Absent when status is `skipped`.
279 #[serde(default, skip_serializing_if = "Option::is_none")]
280 pub tolerance: Option<f64>,
281 /// Interpretation of the tolerance value.
282 #[serde(default, skip_serializing_if = "Option::is_none")]
283 pub tolerance_kind: Option<RegressionToleranceKind>,
284 /// Whether the regression exceeded the tolerance.
285 pub exceeded: bool,
286 /// Only present when status is `skipped`.
287 #[serde(default, skip_serializing_if = "Option::is_none")]
288 pub reason: Option<String>,
289}
290
291/// Status of a regression-check pass.
292#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
293#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
294#[serde(rename_all = "lowercase")]
295pub enum RegressionStatus {
296 /// Issue count within tolerance.
297 Pass,
298 /// Issue count exceeded tolerance.
299 Exceeded,
300 /// Regression check did not run (missing baseline, etc.).
301 Skipped,
302}
303
304/// Interpretation of [`RegressionResult::tolerance`].
305#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize)]
306#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
307#[serde(rename_all = "lowercase")]
308pub enum RegressionToleranceKind {
309 /// Tolerance is interpreted as an absolute issue-count delta.
310 Absolute,
311 /// Tolerance is interpreted as a percentage of the baseline total.
312 Percentage,
313}
314
315/// Metric and rule definitions emitted under `_meta` when `--explain` is
316/// passed (always present in MCP responses). Helps AI agents and CI systems
317/// interpret metric values without re-reading the docs site.
318#[derive(Debug, Clone, Default, Serialize)]
319#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
320pub struct Meta {
321 /// URL to the documentation page for this command.
322 #[serde(default, skip_serializing_if = "Option::is_none")]
323 pub docs: Option<String>,
324 /// Local telemetry correlation metadata for agent follow-up runs.
325 #[serde(default, skip_serializing_if = "Option::is_none")]
326 pub telemetry: Option<TelemetryMeta>,
327 /// Provenance for the opt-in TypeScript semantic analysis pass.
328 #[serde(default, skip_serializing_if = "Option::is_none")]
329 pub type_aware: Option<TypeAwareMeta>,
330 /// Per-field definitions for envelope fields and action payload fields.
331 #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
332 pub field_definitions: BTreeMap<String, String>,
333 /// Per-metric definitions: name, description, range, interpretation.
334 #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
335 pub metrics: BTreeMap<String, MetaMetric>,
336 /// Per-rule definitions for check command output.
337 #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
338 pub rules: BTreeMap<String, MetaRule>,
339}
340
341/// Bounded provenance emitted when the opt-in type-aware pass runs.
342#[derive(Debug, Clone, Default, Deserialize, Serialize)]
343#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
344pub struct TypeAwareMeta {
345 /// Compatibility identity used by audit, baselines, snapshots, and stores.
346 #[serde(default, skip_serializing_if = "Option::is_none")]
347 pub identity: Option<SemanticAnalysisIdentity>,
348 /// Effective CLI or repository policy for incomplete semantic evidence.
349 #[serde(default, skip_serializing_if = "Option::is_none")]
350 pub required_completeness: Option<crate::semantic::SemanticCompletenessRequirement>,
351 /// Compact status for every requested semantic query.
352 #[serde(default, skip_serializing_if = "Vec::is_empty")]
353 pub queries: Vec<SemanticQuerySummary>,
354 /// Bounded decision and evidence for each semantic dead-code candidate.
355 #[serde(default, skip_serializing_if = "Vec::is_empty")]
356 pub candidate_decisions: Vec<SemanticCandidateDecision>,
357 /// Checker-backed trace evidence requested by focused symbol queries.
358 #[serde(default, skip_serializing_if = "Vec::is_empty")]
359 pub symbol_traces: Vec<SemanticSymbolTrace>,
360 /// Package-public surface and confirmed private type leaks.
361 #[serde(default, skip_serializing_if = "Option::is_none")]
362 pub api_surface: Option<ApiSurfaceResult>,
363 /// Exact-symbol blast radius and targeted-test recommendations.
364 #[serde(default, skip_serializing_if = "Vec::is_empty")]
365 pub symbol_impacts: Vec<SemanticSymbolImpact>,
366 /// Advisory project-local public-signature coupling.
367 #[serde(default, skip_serializing_if = "Option::is_none")]
368 pub type_coupling: Option<TypeCouplingReport>,
369 /// Whether the semantic companion executed at least one query.
370 pub executed: bool,
371 /// Version of Fallow's backend-neutral sidecar protocol.
372 pub protocol_version: u32,
373 /// Version of the sidecar package that executed the query.
374 #[serde(default, skip_serializing_if = "Option::is_none")]
375 pub sidecar_version: Option<String>,
376 /// Semantic backend capability identifier.
377 pub backend: String,
378 /// Backend compiler or engine version that executed the query.
379 #[serde(default, skip_serializing_if = "Option::is_none")]
380 pub backend_version: Option<String>,
381 /// TypeScript project configs selected for candidate files.
382 pub selected_tsconfigs: Vec<String>,
383 /// Number of candidate findings sent to the sidecar.
384 pub candidate_count: usize,
385 /// Number of candidates confirmed as used and removed.
386 pub confirmed_used_count: usize,
387 /// Number of candidates preserved because they implement or override a contract.
388 pub contract_preserved_count: usize,
389 /// Number of candidates with complete, closed-world no-static-reference evidence.
390 pub no_static_references_count: usize,
391 /// Number of retained class members eligible for a guarded type-aware fix.
392 pub fix_eligible_count: usize,
393 /// Number of candidates retained because semantic use was unresolved.
394 pub unresolved_count: usize,
395 /// Number of candidates retained because semantic analysis abstained.
396 pub abstained_count: usize,
397 /// Stable abstention reason counts for automation and diagnostics.
398 pub abstention_reasons: TypeAwareAbstentionCounts,
399 /// Per-project semantic refinement status and evidence.
400 pub projects: Vec<TypeAwareProjectMeta>,
401 /// Number of bounded warnings returned by the sidecar.
402 pub warning_count: usize,
403 /// Bounded semantic warnings. Findings mentioned here were retained.
404 pub warnings: Vec<String>,
405 /// Semantic pass duration as reported by the sidecar.
406 pub elapsed_ms: u64,
407 /// Bounded semantic phase timings reported by the sidecar.
408 pub phase_timings_ms: TypeAwarePhaseTimings,
409}
410
411/// Closed set of reasons for retaining a candidate without semantic scanning.
412#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
413#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
414#[serde(rename_all = "kebab-case")]
415pub enum TypeAwareAbstentionReason {
416 /// No selected TypeScript project contains the candidate file.
417 #[default]
418 NoProject,
419 /// Multiple explicit TypeScript projects contain the candidate file.
420 AmbiguousProject,
421 /// Structural TypeScript diagnostics make exact matching unsafe.
422 BlockingDiagnostics,
423}
424
425/// Closed abstention reason counts for stable machine consumption.
426#[derive(Debug, Clone, Default, Deserialize, Serialize)]
427#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
428pub struct TypeAwareAbstentionCounts {
429 /// Candidates not contained by a selected TypeScript project.
430 pub no_project: usize,
431 /// Candidates contained by more than one explicit TypeScript project.
432 pub ambiguous_project: usize,
433 /// Candidates retained because structural diagnostics block scanning.
434 pub blocking_diagnostics: usize,
435 /// Candidates retained because the raw TypeScript-Go host cannot expose
436 /// named exports from Svelte virtual modules.
437 pub svelte_virtual_module_exports: usize,
438 /// Candidates whose exact declaration identity could not be resolved.
439 pub unknown_symbol: usize,
440 /// Candidates using declaration syntax unsupported by the semantic backend.
441 pub unsupported_syntax: usize,
442 /// Candidates retained because the bounded semantic request reached capacity.
443 pub capacity: usize,
444}
445
446/// How a TypeScript project was selected for semantic refinement.
447#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
448#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
449#[serde(rename_all = "kebab-case")]
450pub enum TypeAwareProjectSource {
451 /// Fallow selected the nearest discovered project automatically.
452 #[default]
453 Auto,
454 /// The project was supplied with `--type-aware-project`.
455 Explicit,
456}
457
458/// Outcome of semantic refinement for one TypeScript project.
459#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Deserialize, Serialize)]
460#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
461#[serde(rename_all = "kebab-case")]
462pub enum TypeAwareProjectStatus {
463 /// The project was structurally safe and its candidates were scanned.
464 #[default]
465 Refined,
466 /// Structural diagnostics prevented candidate scanning.
467 Abstained,
468 /// All semantic queries assigned to this Program completed.
469 Complete,
470 /// The Program could not answer its assigned semantic queries safely.
471 Unavailable,
472}
473
474/// How a persistent semantic snapshot was refreshed.
475#[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize, Serialize)]
476#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
477#[serde(rename_all = "kebab-case")]
478pub enum TypeAwareInvalidationKind {
479 /// The backend rebuilt project state from a clean snapshot.
480 Full,
481 /// The backend applied an explicit source-file change set.
482 Incremental,
483 /// No filesystem change was reported between compatible requests.
484 None,
485}
486
487/// Semantic sidecar timings, separated from Fallow's syntactic pipeline.
488#[derive(Debug, Clone, Default, Deserialize, Serialize)]
489#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
490pub struct TypeAwarePhaseTimings {
491 /// TypeScript API construction and project snapshot selection.
492 pub project_setup: u64,
493 /// TypeScript diagnostics collected before any candidate refinement.
494 pub diagnostics: u64,
495 /// Batched symbol lookup and exact declaration matching.
496 pub symbol_scan: u64,
497}
498
499/// Bounded provenance for one TypeScript project handled by the sidecar.
500#[derive(Debug, Clone, Default, Deserialize, Serialize)]
501#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
502pub struct TypeAwareProjectMeta {
503 /// Project config relative to the analysis root, or `<inferred>`.
504 pub config: String,
505 /// How the project was selected: `auto` or `explicit`.
506 pub source: TypeAwareProjectSource,
507 /// Project result: `refined`, `abstained`, `complete`, or `unavailable`.
508 pub status: TypeAwareProjectStatus,
509 /// Candidates assigned to this project.
510 pub candidate_count: usize,
511 /// Candidates confirmed as used and removed.
512 pub confirmed_used_count: usize,
513 /// Candidates retained because they implement or override a contract.
514 pub contract_preserved_count: usize,
515 /// Candidates with complete no-static-reference evidence.
516 pub no_static_references_count: usize,
517 /// Candidates eligible for a guarded class-member fix.
518 pub fix_eligible_count: usize,
519 /// Candidates whose exact semantic outcome remained unresolved.
520 pub unresolved_count: usize,
521 /// Candidates retained without scanning because the project was unsafe.
522 pub abstained_count: usize,
523 /// Config, program, syntactic, and bind diagnostics that block scanning.
524 pub blocking_diagnostic_count: usize,
525 /// Source files loaded into this TypeScript program.
526 pub source_file_count: usize,
527 /// Whether this Program served more than one semantic query in the batch.
528 #[serde(default, skip_serializing_if = "Option::is_none")]
529 pub program_reused: Option<bool>,
530 /// Whether this Program served more than one query in the current batch.
531 #[serde(default, skip_serializing_if = "Option::is_none")]
532 pub program_shared_across_queries: Option<bool>,
533 /// Whether the root-bound semantic session reused the prior snapshot.
534 #[serde(default, skip_serializing_if = "Option::is_none")]
535 pub program_reused_from_previous_snapshot: Option<bool>,
536 /// Monotonic revision within the root-bound semantic session.
537 #[serde(default, skip_serializing_if = "Option::is_none")]
538 pub snapshot_revision: Option<u64>,
539 /// Full, incremental, or no invalidation before this query.
540 #[serde(default, skip_serializing_if = "Option::is_none")]
541 pub invalidation_kind: Option<TypeAwareInvalidationKind>,
542 /// Stable project-level gap reason.
543 #[serde(default, skip_serializing_if = "Option::is_none")]
544 pub reason_code: Option<SemanticGapReason>,
545 /// Stable reason code when `status` is `abstained`.
546 #[serde(default, skip_serializing_if = "Option::is_none")]
547 #[cfg_attr(feature = "schema", schemars(with = "TypeAwareAbstentionReason"))]
548 pub abstain_reason: Option<TypeAwareAbstentionReason>,
549}
550
551/// Privacy-safe local run metadata emitted for JSON consumers.
552#[derive(Debug, Clone, Default, Serialize)]
553#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
554pub struct TelemetryMeta {
555 /// Ephemeral local token that may be passed to the hidden `--parent-run`
556 /// flag on a later command. It is not derived from repository, path, user,
557 /// machine, project, or cloud data.
558 #[serde(default, skip_serializing_if = "Option::is_none")]
559 pub analysis_run_id: Option<String>,
560}
561
562/// Single-metric definition inside [`Meta::metrics`].
563#[derive(Debug, Clone, Default, Serialize)]
564#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
565pub struct MetaMetric {
566 /// Human-readable metric name.
567 #[serde(default, skip_serializing_if = "Option::is_none")]
568 pub name: Option<String>,
569 /// What this metric measures and how it is computed.
570 #[serde(default, skip_serializing_if = "Option::is_none")]
571 pub description: Option<String>,
572 /// Valid value range (e.g., `"[0, 100]"`).
573 #[serde(default, skip_serializing_if = "Option::is_none")]
574 pub range: Option<String>,
575 /// How to read the value (e.g., `"lower is better"`).
576 #[serde(default, skip_serializing_if = "Option::is_none")]
577 pub interpretation: Option<String>,
578}
579
580/// Single-rule definition inside [`Meta::rules`].
581#[derive(Debug, Clone, Default, Serialize)]
582#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
583pub struct MetaRule {
584 /// Human-readable rule name.
585 #[serde(default, skip_serializing_if = "Option::is_none")]
586 pub name: Option<String>,
587 /// What this rule detects.
588 #[serde(default, skip_serializing_if = "Option::is_none")]
589 pub description: Option<String>,
590 /// URL to the rule documentation.
591 #[serde(default, skip_serializing_if = "Option::is_none")]
592 pub docs: Option<String>,
593}