MCPcopy Create free account
hub / github.com/cursor/plugins / MeasurementCheck

Interface MeasurementCheck

orchestrate/skills/orchestrate/scripts/measurements.ts:98–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98export interface MeasurementCheck {
99 name: string;
100 command: string;
101 measured: string;
102 /** Numeric form of `measured`, when it parses as a finite number. */
103 measuredNumeric: number | null;
104 claim: MeasurementClaim | null;
105 outcome:
106 | "match"
107 | "claim-missing"
108 | "value-mismatch"
109 | "command-failed"
110 | "parse-failed";
111 driftFraction: number | null;
112 detail: string;
113}
114
115export interface MeasurementComparisonInput {
116 spec: MeasurementSpec;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected