@tangle-network/agent-eval 0.33.1 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/dist/index.d.ts +261 -1
- package/dist/index.js +477 -88
- package/dist/index.js.map +1 -1
- package/dist/openapi.json +1 -1
- package/package.json +12 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.34.0 — 2026-05-23
|
|
4
|
+
|
|
5
|
+
### Eval evolution-tracking — first-class `AgentProfile` + per-cell scorecard
|
|
6
|
+
|
|
7
|
+
The headline shift: a feature PR's eval can now answer the question a single
|
|
8
|
+
run cannot — *did this change regress persona P on profile F, even while the
|
|
9
|
+
aggregate improved?*
|
|
10
|
+
|
|
11
|
+
- **`AgentProfile` + `agentProfileHash`** — the harness's unit of variation.
|
|
12
|
+
Model lives inside the profile (skill/tool order doesn't matter; the `id`
|
|
13
|
+
label is excluded from identity), so "same model, different skills" is two
|
|
14
|
+
profiles. (#78)
|
|
15
|
+
- **Append-only JSONL scorecard** keyed `(scenarioId, profileHash)` —
|
|
16
|
+
`recordRuns` / `recordRunsToScorecard` / `loadScorecard`. Idempotent
|
|
17
|
+
appends on `eventId` so concurrent campaign runs cannot clobber. (#78)
|
|
18
|
+
- **`diffScorecard`** — per-cell verdict (`improved` / `regressed` / `flat` /
|
|
19
|
+
`new`) using Cohen's d + Welch's t-test; the keystone CI guard is
|
|
20
|
+
`diff.cells.filter(c => c.verdict === 'regressed')`. `formatScorecardDiff`
|
|
21
|
+
renders the PR-facing report. (#78)
|
|
22
|
+
- **Agent profile cells** — `src/agent-profile-cell.ts` extends the profile
|
|
23
|
+
contract into `RunRecord` rows and `runEvalCampaign` so every campaign row
|
|
24
|
+
is keyed by `(profile, scenario, seed)` end-to-end. (#79)
|
|
25
|
+
- **Stats consolidation** — `pairedBootstrap`, power analysis, and the
|
|
26
|
+
paired/Welch primitives now all live in `src/statistics.ts`. (#73)
|
|
27
|
+
- **LLM retry classifier unified** across `llm-client` and `judge-retry`
|
|
28
|
+
via `isTransientLlmError`. (#74)
|
|
29
|
+
- **`pr-review-benchmark` source committed** — the module was exported from
|
|
30
|
+
`index.ts` since the run-record refactor but the source files were never
|
|
31
|
+
committed; CI on `main` has been red on #78/#79/#81 as a result. (#83)
|
|
32
|
+
- **Examples**: `scorecard/`, `held-out-gate/`, `user-simulation-driver/`. (#81)
|
|
33
|
+
|
|
34
|
+
No breaking changes — additive across the board.
|
|
35
|
+
|
|
3
36
|
## 0.33.0 — 2026-05-21
|
|
4
37
|
|
|
5
38
|
### Release — `decideNextUserTurn` in the published tarball
|
package/dist/index.d.ts
CHANGED
|
@@ -1800,6 +1800,94 @@ declare class MetricsCollector {
|
|
|
1800
1800
|
getConvergenceCurve(): number[];
|
|
1801
1801
|
}
|
|
1802
1802
|
|
|
1803
|
+
type PrReviewSource = 'drew' | 'donovan' | 'shady' | 'codex' | 'claude-code' | 'gpt-5.5-high' | 'claude-opus-4.7-high' | 'kimi' | 'opencode' | (string & {});
|
|
1804
|
+
type PrReviewSeverity = 'critical' | 'high' | 'medium' | 'low' | 'nit';
|
|
1805
|
+
type PrReviewOutcome = 'accepted' | 'fixed' | 'rejected' | 'duplicate' | 'noise' | 'unknown';
|
|
1806
|
+
interface PrReviewComment {
|
|
1807
|
+
id: string;
|
|
1808
|
+
source: PrReviewSource;
|
|
1809
|
+
body: string;
|
|
1810
|
+
model?: string;
|
|
1811
|
+
author?: string;
|
|
1812
|
+
path?: string;
|
|
1813
|
+
line?: number;
|
|
1814
|
+
severity?: PrReviewSeverity;
|
|
1815
|
+
outcome?: PrReviewOutcome;
|
|
1816
|
+
createdAt?: string;
|
|
1817
|
+
metadata?: Record<string, unknown>;
|
|
1818
|
+
}
|
|
1819
|
+
interface PrReviewReferenceFinding {
|
|
1820
|
+
id: string;
|
|
1821
|
+
title: string;
|
|
1822
|
+
severity: PrReviewSeverity;
|
|
1823
|
+
path?: string;
|
|
1824
|
+
line?: number;
|
|
1825
|
+
/**
|
|
1826
|
+
* Stable terms that should appear in a useful finding. Keep these
|
|
1827
|
+
* factual: API names, invariant names, table names, error classes.
|
|
1828
|
+
*/
|
|
1829
|
+
keywords?: string[];
|
|
1830
|
+
fixedByCommit?: string;
|
|
1831
|
+
sourceCommentIds?: string[];
|
|
1832
|
+
metadata?: Record<string, unknown>;
|
|
1833
|
+
}
|
|
1834
|
+
interface PrReviewAuditCase {
|
|
1835
|
+
id: string;
|
|
1836
|
+
repo: string;
|
|
1837
|
+
prNumber?: number;
|
|
1838
|
+
baseSha?: string;
|
|
1839
|
+
headSha?: string;
|
|
1840
|
+
title?: string;
|
|
1841
|
+
diff?: string;
|
|
1842
|
+
split?: 'train' | 'validation' | 'test' | 'holdout' | (string & {});
|
|
1843
|
+
comments: PrReviewComment[];
|
|
1844
|
+
referenceFindings: PrReviewReferenceFinding[];
|
|
1845
|
+
metadata?: Record<string, unknown>;
|
|
1846
|
+
}
|
|
1847
|
+
interface PrReviewScoreWeights {
|
|
1848
|
+
recall: number;
|
|
1849
|
+
precision: number;
|
|
1850
|
+
actionability: number;
|
|
1851
|
+
severityCalibration: number;
|
|
1852
|
+
lowNoise: number;
|
|
1853
|
+
}
|
|
1854
|
+
interface PrReviewMatchedFinding {
|
|
1855
|
+
referenceId: string;
|
|
1856
|
+
commentId: string;
|
|
1857
|
+
score: number;
|
|
1858
|
+
}
|
|
1859
|
+
interface PrReviewScore {
|
|
1860
|
+
caseId: string;
|
|
1861
|
+
source: PrReviewSource;
|
|
1862
|
+
commentCount: number;
|
|
1863
|
+
referenceCount: number;
|
|
1864
|
+
matchedFindings: PrReviewMatchedFinding[];
|
|
1865
|
+
recall: number;
|
|
1866
|
+
precision: number;
|
|
1867
|
+
actionability: number;
|
|
1868
|
+
severityCalibration: number;
|
|
1869
|
+
lowNoise: number;
|
|
1870
|
+
aggregate: number;
|
|
1871
|
+
notes: string[];
|
|
1872
|
+
}
|
|
1873
|
+
interface PrReviewBenchmarkSummary {
|
|
1874
|
+
source: PrReviewSource;
|
|
1875
|
+
caseCount: number;
|
|
1876
|
+
commentCount: number;
|
|
1877
|
+
aggregateMean: number;
|
|
1878
|
+
recallMean: number;
|
|
1879
|
+
precisionMean: number;
|
|
1880
|
+
actionabilityMean: number;
|
|
1881
|
+
severityCalibrationMean: number;
|
|
1882
|
+
lowNoiseMean: number;
|
|
1883
|
+
}
|
|
1884
|
+
declare const DEFAULT_PR_REVIEW_SCORE_WEIGHTS: PrReviewScoreWeights;
|
|
1885
|
+
declare function commentsForSource(auditCase: PrReviewAuditCase, source: PrReviewSource): PrReviewComment[];
|
|
1886
|
+
declare function scorePrReviewSource(auditCase: PrReviewAuditCase, source: PrReviewSource, weights?: Partial<PrReviewScoreWeights>): PrReviewScore;
|
|
1887
|
+
declare function scorePrReviewComments(auditCase: PrReviewAuditCase, comments: PrReviewComment[], source: PrReviewSource, weights?: Partial<PrReviewScoreWeights>): PrReviewScore;
|
|
1888
|
+
declare function summarizePrReviewBenchmark(scores: PrReviewScore[]): PrReviewBenchmarkSummary[];
|
|
1889
|
+
declare function aggregatePrReviewScore(dimensions: Pick<PrReviewScore, 'recall' | 'precision' | 'actionability' | 'severityCalibration' | 'lowNoise'>, weights?: Partial<PrReviewScoreWeights>): number;
|
|
1890
|
+
|
|
1803
1891
|
/**
|
|
1804
1892
|
* ProductionLoop — the substrate that closes eval → prod → eval.
|
|
1805
1893
|
*
|
|
@@ -3029,6 +3117,46 @@ declare class BudgetGuard {
|
|
|
3029
3117
|
get state(): Record<keyof BudgetSpec, number>;
|
|
3030
3118
|
}
|
|
3031
3119
|
|
|
3120
|
+
/**
|
|
3121
|
+
* @stable
|
|
3122
|
+
*
|
|
3123
|
+
* AgentProfile — the eval harness's unit of variation.
|
|
3124
|
+
*
|
|
3125
|
+
* A profile pins everything that changes agent behaviour for a benchmark
|
|
3126
|
+
* cell: the model, the active skills, the prompt version, the available
|
|
3127
|
+
* tools. Vary the profile — swap a model, add a skill — and re-run the suite
|
|
3128
|
+
* to benchmark the change. The scorecard keys a cell on
|
|
3129
|
+
* `(scenarioId, profileHash)`, so the model is not a separate axis: it lives
|
|
3130
|
+
* inside the profile, and two profiles with the same model but different
|
|
3131
|
+
* skills are different cells.
|
|
3132
|
+
*
|
|
3133
|
+
* `agentProfileHash` is the profile's behaviour identity. Two profiles that
|
|
3134
|
+
* produce the same agent behaviour share a hash (and a scorecard cell);
|
|
3135
|
+
* reordering `skills` or `tools` does not change it; the human-facing `id`
|
|
3136
|
+
* label does not affect it.
|
|
3137
|
+
*/
|
|
3138
|
+
interface AgentProfile {
|
|
3139
|
+
/** Human-facing label, e.g. `sonnet-legal-skills-v3`. Not part of the hash. */
|
|
3140
|
+
id: string;
|
|
3141
|
+
/** Model snapshot id this profile pins, e.g. `claude-sonnet-4-6@2025-04-15`. */
|
|
3142
|
+
model: string;
|
|
3143
|
+
/** Skill ids/versions active in this profile — the primary behaviour lever. */
|
|
3144
|
+
skills?: string[];
|
|
3145
|
+
/** Prompt version identifier. */
|
|
3146
|
+
promptVersion?: string;
|
|
3147
|
+
/** Tool ids available to the agent. */
|
|
3148
|
+
tools?: string[];
|
|
3149
|
+
/** Any other behaviour-bearing knobs that should fingerprint into the hash. */
|
|
3150
|
+
metadata?: Record<string, string | number | boolean>;
|
|
3151
|
+
}
|
|
3152
|
+
/**
|
|
3153
|
+
* Deterministic behaviour identity of a profile — a sha256 over the
|
|
3154
|
+
* behaviour-bearing fields. `skills` and `tools` are order-insensitive; the
|
|
3155
|
+
* `id` label is excluded. Throws on a profile with no `model` — an unkeyable
|
|
3156
|
+
* profile must fail loud rather than collapse into a blank-model cell.
|
|
3157
|
+
*/
|
|
3158
|
+
declare function agentProfileHash(profile: AgentProfile): string;
|
|
3159
|
+
|
|
3032
3160
|
/**
|
|
3033
3161
|
* Cost tracker — token + USD accounting per scenario and per run.
|
|
3034
3162
|
*
|
|
@@ -3262,6 +3390,138 @@ interface OracleReport {
|
|
|
3262
3390
|
/** Run all oracles against one observation and aggregate. */
|
|
3263
3391
|
declare function evaluateOracles(obs: OracleObservation, oracles: Oracle[]): OracleReport;
|
|
3264
3392
|
|
|
3393
|
+
/**
|
|
3394
|
+
* @stable
|
|
3395
|
+
*
|
|
3396
|
+
* Eval scorecard — the persistent (persona × profile) score timeline.
|
|
3397
|
+
*
|
|
3398
|
+
* Every benchmark run folds into per-cell entries; a cell is
|
|
3399
|
+
* `(scenarioId, profileHash)` and its timeline carries one entry per commit.
|
|
3400
|
+
* The scorecard answers the question a single run cannot: did THIS change
|
|
3401
|
+
* regress persona P on profile F, even while the aggregate improved?
|
|
3402
|
+
*
|
|
3403
|
+
* Storage is an append-only JSONL log — one line per (cell, commit). Appends
|
|
3404
|
+
* never read-modify-write, so concurrent campaign runs cannot clobber each
|
|
3405
|
+
* other; `loadScorecard` folds the log into the queryable `Scorecard`, and a
|
|
3406
|
+
* malformed line never breaks the read. `diffScorecard` compares the latest
|
|
3407
|
+
* entry of each cell against its predecessor with Cohen's d + Welch's t-test.
|
|
3408
|
+
*/
|
|
3409
|
+
|
|
3410
|
+
/** One commit's measurement of one (scenario, profile) cell. */
|
|
3411
|
+
interface ScorecardEntry {
|
|
3412
|
+
commitSha: string;
|
|
3413
|
+
/** ISO timestamp the entry was recorded. */
|
|
3414
|
+
timestamp: string;
|
|
3415
|
+
/** Per-seed (or per-rep) scores for this cell at this commit. */
|
|
3416
|
+
scores: number[];
|
|
3417
|
+
/** Median of `scores` — the cell's headline score for the commit. */
|
|
3418
|
+
composite: number;
|
|
3419
|
+
/** Per-dimension means, when the runs carried a judge breakdown. */
|
|
3420
|
+
perDimension?: Record<string, number>;
|
|
3421
|
+
/** RunRecord ids folded into this entry — provenance. */
|
|
3422
|
+
runIds: string[];
|
|
3423
|
+
}
|
|
3424
|
+
/** A (scenario, profile) cell and its commit-ordered score timeline. */
|
|
3425
|
+
interface ScorecardCell {
|
|
3426
|
+
scenarioId: string;
|
|
3427
|
+
profileHash: string;
|
|
3428
|
+
/** Model id — denormalised from the profile for readable filtering. */
|
|
3429
|
+
model: string;
|
|
3430
|
+
timeline: ScorecardEntry[];
|
|
3431
|
+
}
|
|
3432
|
+
/** The folded scorecard: every cell, plus the profile definitions by hash. */
|
|
3433
|
+
interface Scorecard {
|
|
3434
|
+
cells: ScorecardCell[];
|
|
3435
|
+
/** Profile definitions seen — keeps the scorecard self-describing. */
|
|
3436
|
+
profiles: Record<string, AgentProfile>;
|
|
3437
|
+
}
|
|
3438
|
+
/** One append-only log line — a single cell's entry for a single commit. */
|
|
3439
|
+
interface ScorecardLogLine {
|
|
3440
|
+
scenarioId: string;
|
|
3441
|
+
profileHash: string;
|
|
3442
|
+
model: string;
|
|
3443
|
+
profile: AgentProfile;
|
|
3444
|
+
entry: ScorecardEntry;
|
|
3445
|
+
}
|
|
3446
|
+
interface RecordRunsOptions {
|
|
3447
|
+
/** The profile that produced these runs — keys the cell. */
|
|
3448
|
+
profile: AgentProfile;
|
|
3449
|
+
commitSha: string;
|
|
3450
|
+
/** Defaults to `new Date().toISOString()`. */
|
|
3451
|
+
timestamp?: string;
|
|
3452
|
+
}
|
|
3453
|
+
/**
|
|
3454
|
+
* Fold a benchmark's `RunRecord[]` into per-cell scorecard log lines — one
|
|
3455
|
+
* line per scenario the runs cover. All runs are attributed to the single
|
|
3456
|
+
* `profile` in `opts` (the harness ran them under it); the cell key is
|
|
3457
|
+
* `(scenarioId, agentProfileHash(profile))`.
|
|
3458
|
+
*/
|
|
3459
|
+
declare function recordRuns(runs: RunRecord[], opts: RecordRunsOptions): ScorecardLogLine[];
|
|
3460
|
+
/** Append cell entries to the JSONL scorecard log. Creates the file/dir. */
|
|
3461
|
+
declare function appendScorecard(logPath: string, lines: ScorecardLogLine[]): void;
|
|
3462
|
+
/** Record runs and append them to the log in one call. Returns the lines. */
|
|
3463
|
+
declare function recordRunsToScorecard(logPath: string, runs: RunRecord[], opts: RecordRunsOptions): ScorecardLogLine[];
|
|
3464
|
+
/**
|
|
3465
|
+
* Fold the JSONL log into a queryable `Scorecard`. A missing file yields an
|
|
3466
|
+
* empty scorecard; a malformed line is skipped — a corrupt append never
|
|
3467
|
+
* breaks the read. Each cell's timeline is sorted chronologically.
|
|
3468
|
+
*/
|
|
3469
|
+
declare function loadScorecard(logPath: string): Scorecard;
|
|
3470
|
+
type CellVerdict = 'improved' | 'regressed' | 'flat' | 'new';
|
|
3471
|
+
interface ScorecardCellDiff {
|
|
3472
|
+
scenarioId: string;
|
|
3473
|
+
profileHash: string;
|
|
3474
|
+
model: string;
|
|
3475
|
+
verdict: CellVerdict;
|
|
3476
|
+
/** Composite of the latest entry. */
|
|
3477
|
+
current: number;
|
|
3478
|
+
/** Composite of the comparison entry — `null` when `verdict === 'new'`. */
|
|
3479
|
+
baseline: number | null;
|
|
3480
|
+
/** `current − baseline` — `null` when new. */
|
|
3481
|
+
delta: number | null;
|
|
3482
|
+
/** Cohen's d of current vs baseline samples — `null` when new or n < 2. */
|
|
3483
|
+
cohensD: number | null;
|
|
3484
|
+
/** Welch's t-test p-value — `null` when new or n < 2. */
|
|
3485
|
+
pValue: number | null;
|
|
3486
|
+
currentCommit: string;
|
|
3487
|
+
baselineCommit: string | null;
|
|
3488
|
+
}
|
|
3489
|
+
interface ScorecardDiff {
|
|
3490
|
+
cells: ScorecardCellDiff[];
|
|
3491
|
+
summary: {
|
|
3492
|
+
improved: number;
|
|
3493
|
+
regressed: number;
|
|
3494
|
+
flat: number;
|
|
3495
|
+
new: number;
|
|
3496
|
+
};
|
|
3497
|
+
}
|
|
3498
|
+
interface DiffScorecardOptions {
|
|
3499
|
+
/** Compare each cell against this commit instead of its immediate predecessor. */
|
|
3500
|
+
baselineCommit?: string;
|
|
3501
|
+
/** |Cohen's d| at/above which a move counts as real. Default 0.5. */
|
|
3502
|
+
minEffect?: number;
|
|
3503
|
+
/** p-value at/below which a move is significant. Default 0.05. */
|
|
3504
|
+
maxP?: number;
|
|
3505
|
+
/**
|
|
3506
|
+
* |delta| at/above which a move counts when statistics are unavailable
|
|
3507
|
+
* (a cell with fewer than 2 samples on either side). Default 0.05.
|
|
3508
|
+
*/
|
|
3509
|
+
minDelta?: number;
|
|
3510
|
+
}
|
|
3511
|
+
/**
|
|
3512
|
+
* Compare the latest entry of every cell against its predecessor (or against
|
|
3513
|
+
* `baselineCommit`) and classify the move. A move is `improved`/`regressed`
|
|
3514
|
+
* only when it clears both the effect-size and significance gates; otherwise
|
|
3515
|
+
* `flat`. Cells with no prior entry are `new`.
|
|
3516
|
+
*/
|
|
3517
|
+
declare function diffScorecard(scorecard: Scorecard, opts?: DiffScorecardOptions): ScorecardDiff;
|
|
3518
|
+
/**
|
|
3519
|
+
* Render a scorecard diff as a human-readable report — the block a feature
|
|
3520
|
+
* PR prints. Regressions are listed first; flat cells are summarised, not
|
|
3521
|
+
* enumerated.
|
|
3522
|
+
*/
|
|
3523
|
+
declare function formatScorecardDiff(diff: ScorecardDiff): string;
|
|
3524
|
+
|
|
3265
3525
|
/**
|
|
3266
3526
|
* Series convergence — detects whether a sequence of scalar measurements
|
|
3267
3527
|
* is stabilizing, drifting, or noisy.
|
|
@@ -6018,4 +6278,4 @@ declare function aggregateTrialsByMode(trials: TrialResult[], opts: {
|
|
|
6018
6278
|
mode: AggregatorMode;
|
|
6019
6279
|
}): TrialAggregate;
|
|
6020
6280
|
|
|
6021
|
-
export { ANALYST_SEVERITIES, ActionableSideInfo, type ActiveLearningOptions, type AdapterRun, AgentDriver, type AgentDriverConfig, AgentEvalError, type AggregatorMode, type AlignmentOp, type Analyst, type AnalystContext, type AnalystCost, type AnalystFinding, type AnalystHooks, type AnalystInputKind, AnalystRegistry, type AnalystRegistryOptions, type AnalystRequirements, type AnalystRunEvent, type AnalystRunInputs, type AnalystRunResult, type AnalystRunSummary, type AnalystSeverity, AnalyzeTracesOptions, type AntiSlopConfig, type AntiSlopIssue, type AntiSlopReport, Artifact$1 as Artifact, type Artifact as ArtifactCheckArtifact, type ArtifactEventLike, type ArtifactValidator, type AutoPrClient, AxGepaSteeringOptimizer, type AxSteeringOptimizerConfig, BackendIntegrityError, type BackendIntegrityReport, BaselineReport, BehaviorAssertion, BenchmarkReport, BenchmarkRunner, BenchmarkRunnerConfig, type BisectOptions, type BisectResult, type BisectStep, BudgetBreachError, BudgetGuard, BudgetLedgerEntry, type BudgetPolicy, BudgetSpec, CallExpectation, type CanaryAlert, type CanaryKind, type CanaryLeak, type CanaryOptions, type CanaryReport, type CanarySeverity, type CandidateScenario, type CausalAttributionReport, type ChatCallOpts, type ChatClient, type ChatRequest, type ChatResponse, type ChatTransport, CheckResult, type CliBridgeTransportOpts, type CodeMutationOutcome, type CodeMutationRunner, CollectedArtifacts, type CommandRunner, CompletionCriterion, type CompletionRequirement, type CompletionVerdict, type CompositePolicy, type ConceptComplexity, type ConceptFinding, type ConceptSpec, type ConceptWeightStrategy, type ContinuityCheck, type ContinuityCheckResult, type ContinuityReport, type ContinuitySnapshotPair, type ContractMetric, type ContractReport, ControlEvalResult, ConvergenceTracker, type CorrectnessChecker, type CostEntry, CostLedger, type CostLedgerGeneration, type CostLedgerSnapshot, type CostSummary, CostTracker, type CounterfactualContext, type CounterfactualMutation, type CounterfactualResult, type CounterfactualRunner, type CreateChatClientOpts, type CreateCompositeMutatorOpts, type CreateDefaultReviewerOptions, type CreateSandboxCodeMutatorOpts, type CreateSandboxPoolOpts, type CreateTraceAnalystKindOpts, type CrossTraceDiff, type CrossTraceDiffOptions, D1ExperimentStore, type D1ExperimentStoreOptions, type D1Like, type D1PreparedStatementLike, DEFAULT_AGENT_SLOS, DEFAULT_COMPLEXITY_WEIGHTS, DEFAULT_FINDERS, DEFAULT_HARNESS_OBJECTIVES, DEFAULT_MUTATORS, DEFAULT_RUN_SCORE_WEIGHTS, DEFAULT_SEVERITY_WEIGHTS, DEFAULT_TRACE_ANALYST_KINDS, Dataset, DatasetScenario, type DecideNextUserTurnOpts, type DeployFamily, type DeployGateLayerInput, type DeployRunResult, type DeployRunner, type DiffPolicy, type DirEntry, type DirectProviderTransportOpts, type DiscoverPersonasOptions, type DiscoveredPersona, DriverResult, DriverState, DualAgentBench, type DualAgentBenchConfig, type DualAgentReport, type DualAgentRound, type DualAgentScenario, type DualAgentScenarioResult, ERROR_COUNT_PATTERNS, type ErrorCountPattern, type EvidenceRef, type EvolutionRound, EvolvableVariant, type ExecutorConfig, type Expectation, type Experiment, type Run as ExperimentRun, type ExperimentStore, ExperimentTracker, type ExportedRewardModel, type ExtractOptions, type ExtractResult, FAILURE_MODE_KIND_SPEC, FINDING_SUBJECT_GRAMMAR_PROMPT, FINDING_SUBJECT_KINDS, type FactorContribution, type FactorialCell, type FailureClusterConfig, FeedbackLabel, FeedbackTrajectory, FeedbackTrajectoryStore, type FileChange, FileSystemExperimentStore, type FileSystemExperimentStoreOptions, type FindingSubject, type FindingSubjectKind, FindingSubjectStringSchema, type FindingsDiff, FindingsStore, type FlowAction, type FlowLayerEnv, type FlowLayerFactoryInput, type FlowRunner, type FlowRunnerStepResult, type FlowSpec, type FlowStep, GateDecision, type GhCliClientOptions, type GoldenSeverity, type GoldenSpec, type HarnessAdapter, HarnessConfig, type HarnessExperimentConfig, type HarnessExperimentResult, type HarnessIntervention, type HarnessRunRequest, type HarnessRunResult, type HarnessScenario, type HarnessSelection, type HarnessVariant, type HarnessVariantReport, HeldOutGateConfig, HoldoutAuditor, type HostedJudgeConfig, type HostedJudgeDimension, type HostedJudgeRequest, type HostedJudgeResponse, type HostedRunCriticConfig, type HostedRunScoreRequest, type HostedRunScoreResponse, type HttpGithubClientOptions, type HypothesisManifest, type HypothesisResult, IMPROVEMENT_KIND_SPEC, INTENT_MATCH_JUDGE_VERSION, type ImageData, InMemoryExperimentStore, InMemoryWorkspaceInspector, type InferenceScorer, type InspectorContext, type IntegrationGateSurface, type IntegrationInvokeFailureInput, type IntegrationManifestGateInput, type IntentMatchInput, type IntentMatchOptions, type IntentMatchResult, type InteractionContribution, JsonlTrialCache, type JudgeAdapterOpts, type JudgeFleetOptions, JudgeFn, JudgeInput, type JudgeReplayResult, type JudgeRetryOutcome, type JudgeRetryPolicy, JudgeRunner, KIND_EXPECTED_SUBJECTS, KNOWLEDGE_GAP_KIND_SPEC, KNOWLEDGE_POISONING_KIND_SPEC, type KeywordConceptSpec, type KeywordCoverageFinding, type KeywordCoverageOptions, type KeywordCoverageResult, type LangfuseEnvelope, type LangfuseGeneration, type LangfuseScore, Layer, LayerResult, type LineageKind, type LineageKindResolver, type LineageNode, LineageRecorder, type LiveProofArtifact, type LiveProofConfig, type LiveProofContext, type LiveProofResult, LlmCallRequest, LlmCallResult, LlmClientOptions, type LlmCorrectnessCheckerOpts, LlmSpan, LockedJsonlAppender, MODEL_PRICING, type MatchResult, type MatcherResult, type MeasurementPolicy, type MergeOptions, MetricsCollector, type MockTransportOpts, type MuffledFinder, type MuffledFinding, MultiLayerVerifier, MultiShotMutateAdapter, MultiShotOptimizationResult, MultiShotRunner, MultiShotScorer, MultiShotTrialResult, type MultiToolchainLayerConfig, MutateAdapter, type MutationAttempt, type MutationChannel, MutationTelemetry, type Mutator, Mutex, Objective, type Oracle, type OracleObservation, type OracleReport, type OracleResult, type OrthogonalityInput, type OrthogonalityResult, PairwiseSteeringOptimizer, type ParaphraseRobustnessScenarioInput, type ParaphraseRobustnessScenarioResult, ParetoResult, type PersistedFinding, PersonaConfig, type Playbook, type PlaybookEntry, type PoolSlot, type ProducedProposal, type ProducedState, ProductClient, ProductClientConfig, type ProductionEvolveConfig, type ProductionLoopCronConfig, type ProductionLoopDecision, type ProductionLoopRenderContext, type ProductionLoopResult, type ProductionShipConfig, type PromptHandle, PromptRegistry, TrialResult as PromptTrialResult, type ProposalEventLike, type ProposeAutomatedPullRequestInput, type ProposeAutomatedPullRequestResult, RAW_FINDING_SCHEMA_PROMPT, type RawAnalystFinding, RawAnalystFindingSchema, type ReferenceMatchResult, type ReferenceReplayAdapter, type ReferenceReplayAdapterFn, type ReferenceReplayAdapterLike, type ReferenceReplayAggregate, type ReferenceReplayCandidate, type ReferenceReplayCase, type ReferenceReplayCaseRun, type ReferenceReplayExecutionScenario, type ReferenceReplayItem, type ReferenceReplayMatch, type ReferenceReplayMatchStrategy, type ReferenceReplayMatcher, type ReferenceReplayPromotionDecision, type ReferenceReplayPromotionPolicy, type ReferenceReplayRun, type ReferenceReplayRunContext, type ReferenceReplayRunOptions, type ReferenceReplayRunStore, type ReferenceReplayScenario, type ReferenceReplayScenarioScore, type ReferenceReplayScore, type ReferenceReplayScoreOptions, type ReferenceReplaySplit, type ReferenceReplaySplitComparison, type ReferenceReplaySteeringRowsOptions, type RegistryRunOpts, ReleaseConfidenceScorecard, ReleaseConfidenceThresholds, type RepoRef, type RequirementCheck, type ReviewerMemoryEntry, type ReviewerOutput, type ReviewerPromptInput, type ReviewerSoftFailDefaults, type ReviewerVerificationSummary, type RobustnessResult, type RouterTransportOpts, Run$1 as Run, type RunCommandInput, type RunCommandResult, type RunConfig, RunCritic, type RunCriticAdapterOpts, type RunCriticOptions, type RunDiff, RunFilter, type RunProductionLoopOptions, RunRecord, type RunScore, type RunScoreWeights, RunSplitTag, type RunTrace, type RuntimeEventLike, SEMANTIC_CONCEPT_JUDGE_VERSION, SandboxDriver, SandboxHarnessResult, type SandboxJudgeKind, type SandboxJudgeResult, type SandboxJudgeSpec, type SandboxPool, type SandboxSdkTransportOpts, type SatisfiedBy, type ScanOptions, Scenario, type ScenarioCost, ScenarioFile, ScenarioRegistry, ScenarioResult, type ScoredTarget, type SelfPlayOptions, type SelfPlayProposer, type SelfPlayScorer, type SemanticConceptJudgeAdapterOpts, type SemanticConceptJudgeInput, type SemanticConceptJudgeOptions, type SemanticConceptJudgeResult, type SeriesConvergenceOptions, type SeriesConvergenceResult, Severity, type SignedManifest, type SignedManifestAlgo, type Slo, type SloCheckResult, type SloComparator, type SloReport, type SloSeverity, type SlopCategory, type SlotFactory, Span, type SteeringBundle, type SteeringDelta, type SteeringOptimizationResult, type SteeringOptimizationRow, type SteeringOptimizationSelector, type SteeringOptimizerBackend, type SteeringOptimizerConfig, type SteeringRolePrompt, type StepAttribution, type SynthesisReason, type SynthesisTarget, type TaskGold, TestResult, type ThresholdContract, TokenCounter, type TokenSpec, type ToolCallEventLike, TraceAnalysisStore, type TraceAnalystAdapterOpts, type TraceAnalystGolden, type TraceAnalystKindSpec, TraceEmitter, TraceEvent, TraceStore, type TraceToolGroupName, Trajectory, TrajectoryStep, type TrialAggregate, type TrialAttempt, TrialCache, TrialTelemetry, TurnMetrics, UNIVERSAL_FINDERS, type ValidationContext, type ValidationIssue, type ValidationResult, VariantAggregate, type VerifierAdapterOpts, VerifyContext, VerifyOptions, type VisualDiffOptions, type VisualDiffResult, type ViteDeployRunnerInput, type WorkflowTopology, type WorkspaceAssertion, type WorkspaceAssertionResult, type WorkspaceInspector, type WorkspaceSnapshot, type WranglerDeployRunnerInput, adversarialJudge, aggregateRunScore, aggregateTrialsByMode, analyzeAntiSlop, analyzeSeries, assertRealBackend, attributeCounterfactuals, bisect, buildDriverSystemPrompt, buildReviewerPrompt, buildTraceToolsForGroup, byteLengthRange, canaryLeakView, canonicalize, causalAttribution, checkBehavioralCanary, checkCanaries, checkSlos, clamp01, codeExecutionJudge, coherenceJudge, collectionPreserved, commitBisect, compareReferenceReplay, compilerJudge, composeValidators, computeFindingId, containsAll, createAntiSlopJudge, createChatClient, createCompositeMutator, createCustomJudge, createDefaultReviewer, createDomainExpertJudge, createIntentMatchJudge, createJudgeAdapter, createLlmCorrectnessChecker, createRunCriticAdapter, createSandboxCodeMutator, createSandboxPool, createSemanticConceptJudge, createSemanticConceptJudgeAdapter, createTraceAnalystAdapter, createTraceAnalystKind, createVerifierAdapter, crossTraceDiff, decideNextUserTurn, decideReferenceReplayPromotion, decideReferenceReplayRunPromotion, defaultIsMaterial, defaultJudges, defaultReferenceReplayMatcher, deployGateLayer, diffFindings, discoverPersonas, distillPlaybook, estimateCost, estimateTokens, evaluateContract, evaluateHypothesis, evaluateOracles, executeScenario, expectAgent, exportRewardModel, extractAssetUrls, extractErrorCount, extractProducedState, fileContains, fileExists, findAutoMatchNoExpectation, findConstructorCwdDropped, findFallbackToPass, findLiteralTruePass, findSkipCountsAsPass, flowLayer, formatBenchmarkReport, formatDriverReport, formatFindings, ghCliClient, precision as goldenPrecision, hashContent, hashJson, htmlContainsElement, httpGithubClient, inMemoryReferenceReplayStore, integrationAsi, integrationGateEvals, integrationInvokeFailedPayload, integrationManifestResolvedPayload, integrationManifestValidatedPayload, jsonHasKeys, jsonShape, jsonlReferenceReplayStore, keyPreserved, liftSeverity, linterJudge, loadScorerFromGrader, localCommandRunner, lowercaseMutator, makeFinding, matchGoldens, mergeLayerResults, mergeSteeringBundle, multiToolchainLayer, notBlocked, paraphraseRobustness, paraphraseRobustnessScenarios, parseCorrectnessResponse, parseFindingSubject, parseRawFinding, passOrthogonality, pixelDeltaRatio, politenessPrefixMutator, printDriverSummary, promptBisect, proposeAutomatedPullRequest, proposeSynthesisTargets, referenceReplayRunsToSteeringRows, referenceReplayScenarioToRunScore, regexMatch, regexMatches, renderFindingSubject, renderMarkdownReport, renderPlaybookMarkdown, renderPriorFindings, renderSteeringText, replayScorerOverCorpus, replayTraceThroughJudge, resetLockedAppendersForTesting, rowCount, rowWhere, runAssertions, runBehavioralCanaries, runCanaries, runCounterfactual, runE2EWorkflow, runExpectations, runHarnessExperiment, runIntentMatchJudge, runJudgeFleet, runKeywordCoverageJudge, runKeywordCoverageJudgeUrl, runLiveProof, runProductionLoop, runReferenceReplay, runSelfPlay, runSemanticConceptJudge, scanForMuffledGates, scoreContinuity, scoreReferenceReplay, securityJudge, selectHarnessVariant, sentenceReorderMutator, signManifest, statusAdvanced, summarizeBackendIntegrity, summarizeHarnessResults, testJudge, textInSnapshot, toLangfuseEnvelope, toPrometheusText, typoMutator, urlContains, verifyCompletion, verifyManifest, visualDiff, viteDeployRunner, weightedRecall, whitespaceCollapseMutator, withJudgeRetry, wranglerDeployRunner };
|
|
6281
|
+
export { ANALYST_SEVERITIES, ActionableSideInfo, type ActiveLearningOptions, type AdapterRun, AgentDriver, type AgentDriverConfig, AgentEvalError, type AgentProfile, type AggregatorMode, type AlignmentOp, type Analyst, type AnalystContext, type AnalystCost, type AnalystFinding, type AnalystHooks, type AnalystInputKind, AnalystRegistry, type AnalystRegistryOptions, type AnalystRequirements, type AnalystRunEvent, type AnalystRunInputs, type AnalystRunResult, type AnalystRunSummary, type AnalystSeverity, AnalyzeTracesOptions, type AntiSlopConfig, type AntiSlopIssue, type AntiSlopReport, Artifact$1 as Artifact, type Artifact as ArtifactCheckArtifact, type ArtifactEventLike, type ArtifactValidator, type AutoPrClient, AxGepaSteeringOptimizer, type AxSteeringOptimizerConfig, BackendIntegrityError, type BackendIntegrityReport, BaselineReport, BehaviorAssertion, BenchmarkReport, BenchmarkRunner, BenchmarkRunnerConfig, type BisectOptions, type BisectResult, type BisectStep, BudgetBreachError, BudgetGuard, BudgetLedgerEntry, type BudgetPolicy, BudgetSpec, CallExpectation, type CanaryAlert, type CanaryKind, type CanaryLeak, type CanaryOptions, type CanaryReport, type CanarySeverity, type CandidateScenario, type CausalAttributionReport, type CellVerdict, type ChatCallOpts, type ChatClient, type ChatRequest, type ChatResponse, type ChatTransport, CheckResult, type CliBridgeTransportOpts, type CodeMutationOutcome, type CodeMutationRunner, CollectedArtifacts, type CommandRunner, CompletionCriterion, type CompletionRequirement, type CompletionVerdict, type CompositePolicy, type ConceptComplexity, type ConceptFinding, type ConceptSpec, type ConceptWeightStrategy, type ContinuityCheck, type ContinuityCheckResult, type ContinuityReport, type ContinuitySnapshotPair, type ContractMetric, type ContractReport, ControlEvalResult, ConvergenceTracker, type CorrectnessChecker, type CostEntry, CostLedger, type CostLedgerGeneration, type CostLedgerSnapshot, type CostSummary, CostTracker, type CounterfactualContext, type CounterfactualMutation, type CounterfactualResult, type CounterfactualRunner, type CreateChatClientOpts, type CreateCompositeMutatorOpts, type CreateDefaultReviewerOptions, type CreateSandboxCodeMutatorOpts, type CreateSandboxPoolOpts, type CreateTraceAnalystKindOpts, type CrossTraceDiff, type CrossTraceDiffOptions, D1ExperimentStore, type D1ExperimentStoreOptions, type D1Like, type D1PreparedStatementLike, DEFAULT_AGENT_SLOS, DEFAULT_COMPLEXITY_WEIGHTS, DEFAULT_FINDERS, DEFAULT_HARNESS_OBJECTIVES, DEFAULT_MUTATORS, DEFAULT_PR_REVIEW_SCORE_WEIGHTS, DEFAULT_RUN_SCORE_WEIGHTS, DEFAULT_SEVERITY_WEIGHTS, DEFAULT_TRACE_ANALYST_KINDS, Dataset, DatasetScenario, type DecideNextUserTurnOpts, type DeployFamily, type DeployGateLayerInput, type DeployRunResult, type DeployRunner, type DiffPolicy, type DiffScorecardOptions, type DirEntry, type DirectProviderTransportOpts, type DiscoverPersonasOptions, type DiscoveredPersona, DriverResult, DriverState, DualAgentBench, type DualAgentBenchConfig, type DualAgentReport, type DualAgentRound, type DualAgentScenario, type DualAgentScenarioResult, ERROR_COUNT_PATTERNS, type ErrorCountPattern, type EvidenceRef, type EvolutionRound, EvolvableVariant, type ExecutorConfig, type Expectation, type Experiment, type Run as ExperimentRun, type ExperimentStore, ExperimentTracker, type ExportedRewardModel, type ExtractOptions, type ExtractResult, FAILURE_MODE_KIND_SPEC, FINDING_SUBJECT_GRAMMAR_PROMPT, FINDING_SUBJECT_KINDS, type FactorContribution, type FactorialCell, type FailureClusterConfig, FeedbackLabel, FeedbackTrajectory, FeedbackTrajectoryStore, type FileChange, FileSystemExperimentStore, type FileSystemExperimentStoreOptions, type FindingSubject, type FindingSubjectKind, FindingSubjectStringSchema, type FindingsDiff, FindingsStore, type FlowAction, type FlowLayerEnv, type FlowLayerFactoryInput, type FlowRunner, type FlowRunnerStepResult, type FlowSpec, type FlowStep, GateDecision, type GhCliClientOptions, type GoldenSeverity, type GoldenSpec, type HarnessAdapter, HarnessConfig, type HarnessExperimentConfig, type HarnessExperimentResult, type HarnessIntervention, type HarnessRunRequest, type HarnessRunResult, type HarnessScenario, type HarnessSelection, type HarnessVariant, type HarnessVariantReport, HeldOutGateConfig, HoldoutAuditor, type HostedJudgeConfig, type HostedJudgeDimension, type HostedJudgeRequest, type HostedJudgeResponse, type HostedRunCriticConfig, type HostedRunScoreRequest, type HostedRunScoreResponse, type HttpGithubClientOptions, type HypothesisManifest, type HypothesisResult, IMPROVEMENT_KIND_SPEC, INTENT_MATCH_JUDGE_VERSION, type ImageData, InMemoryExperimentStore, InMemoryWorkspaceInspector, type InferenceScorer, type InspectorContext, type IntegrationGateSurface, type IntegrationInvokeFailureInput, type IntegrationManifestGateInput, type IntentMatchInput, type IntentMatchOptions, type IntentMatchResult, type InteractionContribution, JsonlTrialCache, type JudgeAdapterOpts, type JudgeFleetOptions, JudgeFn, JudgeInput, type JudgeReplayResult, type JudgeRetryOutcome, type JudgeRetryPolicy, JudgeRunner, KIND_EXPECTED_SUBJECTS, KNOWLEDGE_GAP_KIND_SPEC, KNOWLEDGE_POISONING_KIND_SPEC, type KeywordConceptSpec, type KeywordCoverageFinding, type KeywordCoverageOptions, type KeywordCoverageResult, type LangfuseEnvelope, type LangfuseGeneration, type LangfuseScore, Layer, LayerResult, type LineageKind, type LineageKindResolver, type LineageNode, LineageRecorder, type LiveProofArtifact, type LiveProofConfig, type LiveProofContext, type LiveProofResult, LlmCallRequest, LlmCallResult, LlmClientOptions, type LlmCorrectnessCheckerOpts, LlmSpan, LockedJsonlAppender, MODEL_PRICING, type MatchResult, type MatcherResult, type MeasurementPolicy, type MergeOptions, MetricsCollector, type MockTransportOpts, type MuffledFinder, type MuffledFinding, MultiLayerVerifier, MultiShotMutateAdapter, MultiShotOptimizationResult, MultiShotRunner, MultiShotScorer, MultiShotTrialResult, type MultiToolchainLayerConfig, MutateAdapter, type MutationAttempt, type MutationChannel, MutationTelemetry, type Mutator, Mutex, Objective, type Oracle, type OracleObservation, type OracleReport, type OracleResult, type OrthogonalityInput, type OrthogonalityResult, PairwiseSteeringOptimizer, type ParaphraseRobustnessScenarioInput, type ParaphraseRobustnessScenarioResult, ParetoResult, type PersistedFinding, PersonaConfig, type Playbook, type PlaybookEntry, type PoolSlot, type PrReviewAuditCase, type PrReviewBenchmarkSummary, type PrReviewComment, type PrReviewMatchedFinding, type PrReviewOutcome, type PrReviewReferenceFinding, type PrReviewScore, type PrReviewScoreWeights, type PrReviewSeverity, type PrReviewSource, type ProducedProposal, type ProducedState, ProductClient, ProductClientConfig, type ProductionEvolveConfig, type ProductionLoopCronConfig, type ProductionLoopDecision, type ProductionLoopRenderContext, type ProductionLoopResult, type ProductionShipConfig, type PromptHandle, PromptRegistry, TrialResult as PromptTrialResult, type ProposalEventLike, type ProposeAutomatedPullRequestInput, type ProposeAutomatedPullRequestResult, RAW_FINDING_SCHEMA_PROMPT, type RawAnalystFinding, RawAnalystFindingSchema, type RecordRunsOptions, type ReferenceMatchResult, type ReferenceReplayAdapter, type ReferenceReplayAdapterFn, type ReferenceReplayAdapterLike, type ReferenceReplayAggregate, type ReferenceReplayCandidate, type ReferenceReplayCase, type ReferenceReplayCaseRun, type ReferenceReplayExecutionScenario, type ReferenceReplayItem, type ReferenceReplayMatch, type ReferenceReplayMatchStrategy, type ReferenceReplayMatcher, type ReferenceReplayPromotionDecision, type ReferenceReplayPromotionPolicy, type ReferenceReplayRun, type ReferenceReplayRunContext, type ReferenceReplayRunOptions, type ReferenceReplayRunStore, type ReferenceReplayScenario, type ReferenceReplayScenarioScore, type ReferenceReplayScore, type ReferenceReplayScoreOptions, type ReferenceReplaySplit, type ReferenceReplaySplitComparison, type ReferenceReplaySteeringRowsOptions, type RegistryRunOpts, ReleaseConfidenceScorecard, ReleaseConfidenceThresholds, type RepoRef, type RequirementCheck, type ReviewerMemoryEntry, type ReviewerOutput, type ReviewerPromptInput, type ReviewerSoftFailDefaults, type ReviewerVerificationSummary, type RobustnessResult, type RouterTransportOpts, Run$1 as Run, type RunCommandInput, type RunCommandResult, type RunConfig, RunCritic, type RunCriticAdapterOpts, type RunCriticOptions, type RunDiff, RunFilter, type RunProductionLoopOptions, RunRecord, type RunScore, type RunScoreWeights, RunSplitTag, type RunTrace, type RuntimeEventLike, SEMANTIC_CONCEPT_JUDGE_VERSION, SandboxDriver, SandboxHarnessResult, type SandboxJudgeKind, type SandboxJudgeResult, type SandboxJudgeSpec, type SandboxPool, type SandboxSdkTransportOpts, type SatisfiedBy, type ScanOptions, Scenario, type ScenarioCost, ScenarioFile, ScenarioRegistry, ScenarioResult, type Scorecard, type ScorecardCell, type ScorecardCellDiff, type ScorecardDiff, type ScorecardEntry, type ScorecardLogLine, type ScoredTarget, type SelfPlayOptions, type SelfPlayProposer, type SelfPlayScorer, type SemanticConceptJudgeAdapterOpts, type SemanticConceptJudgeInput, type SemanticConceptJudgeOptions, type SemanticConceptJudgeResult, type SeriesConvergenceOptions, type SeriesConvergenceResult, Severity, type SignedManifest, type SignedManifestAlgo, type Slo, type SloCheckResult, type SloComparator, type SloReport, type SloSeverity, type SlopCategory, type SlotFactory, Span, type SteeringBundle, type SteeringDelta, type SteeringOptimizationResult, type SteeringOptimizationRow, type SteeringOptimizationSelector, type SteeringOptimizerBackend, type SteeringOptimizerConfig, type SteeringRolePrompt, type StepAttribution, type SynthesisReason, type SynthesisTarget, type TaskGold, TestResult, type ThresholdContract, TokenCounter, type TokenSpec, type ToolCallEventLike, TraceAnalysisStore, type TraceAnalystAdapterOpts, type TraceAnalystGolden, type TraceAnalystKindSpec, TraceEmitter, TraceEvent, TraceStore, type TraceToolGroupName, Trajectory, TrajectoryStep, type TrialAggregate, type TrialAttempt, TrialCache, TrialTelemetry, TurnMetrics, UNIVERSAL_FINDERS, type ValidationContext, type ValidationIssue, type ValidationResult, VariantAggregate, type VerifierAdapterOpts, VerifyContext, VerifyOptions, type VisualDiffOptions, type VisualDiffResult, type ViteDeployRunnerInput, type WorkflowTopology, type WorkspaceAssertion, type WorkspaceAssertionResult, type WorkspaceInspector, type WorkspaceSnapshot, type WranglerDeployRunnerInput, adversarialJudge, agentProfileHash, aggregatePrReviewScore, aggregateRunScore, aggregateTrialsByMode, analyzeAntiSlop, analyzeSeries, appendScorecard, assertRealBackend, attributeCounterfactuals, bisect, buildDriverSystemPrompt, buildReviewerPrompt, buildTraceToolsForGroup, byteLengthRange, canaryLeakView, canonicalize, causalAttribution, checkBehavioralCanary, checkCanaries, checkSlos, clamp01, codeExecutionJudge, coherenceJudge, collectionPreserved, commentsForSource, commitBisect, compareReferenceReplay, compilerJudge, composeValidators, computeFindingId, containsAll, createAntiSlopJudge, createChatClient, createCompositeMutator, createCustomJudge, createDefaultReviewer, createDomainExpertJudge, createIntentMatchJudge, createJudgeAdapter, createLlmCorrectnessChecker, createRunCriticAdapter, createSandboxCodeMutator, createSandboxPool, createSemanticConceptJudge, createSemanticConceptJudgeAdapter, createTraceAnalystAdapter, createTraceAnalystKind, createVerifierAdapter, crossTraceDiff, decideNextUserTurn, decideReferenceReplayPromotion, decideReferenceReplayRunPromotion, defaultIsMaterial, defaultJudges, defaultReferenceReplayMatcher, deployGateLayer, diffFindings, diffScorecard, discoverPersonas, distillPlaybook, estimateCost, estimateTokens, evaluateContract, evaluateHypothesis, evaluateOracles, executeScenario, expectAgent, exportRewardModel, extractAssetUrls, extractErrorCount, extractProducedState, fileContains, fileExists, findAutoMatchNoExpectation, findConstructorCwdDropped, findFallbackToPass, findLiteralTruePass, findSkipCountsAsPass, flowLayer, formatBenchmarkReport, formatDriverReport, formatFindings, formatScorecardDiff, ghCliClient, precision as goldenPrecision, hashContent, hashJson, htmlContainsElement, httpGithubClient, inMemoryReferenceReplayStore, integrationAsi, integrationGateEvals, integrationInvokeFailedPayload, integrationManifestResolvedPayload, integrationManifestValidatedPayload, jsonHasKeys, jsonShape, jsonlReferenceReplayStore, keyPreserved, liftSeverity, linterJudge, loadScorecard, loadScorerFromGrader, localCommandRunner, lowercaseMutator, makeFinding, matchGoldens, mergeLayerResults, mergeSteeringBundle, multiToolchainLayer, notBlocked, paraphraseRobustness, paraphraseRobustnessScenarios, parseCorrectnessResponse, parseFindingSubject, parseRawFinding, passOrthogonality, pixelDeltaRatio, politenessPrefixMutator, printDriverSummary, promptBisect, proposeAutomatedPullRequest, proposeSynthesisTargets, recordRuns, recordRunsToScorecard, referenceReplayRunsToSteeringRows, referenceReplayScenarioToRunScore, regexMatch, regexMatches, renderFindingSubject, renderMarkdownReport, renderPlaybookMarkdown, renderPriorFindings, renderSteeringText, replayScorerOverCorpus, replayTraceThroughJudge, resetLockedAppendersForTesting, rowCount, rowWhere, runAssertions, runBehavioralCanaries, runCanaries, runCounterfactual, runE2EWorkflow, runExpectations, runHarnessExperiment, runIntentMatchJudge, runJudgeFleet, runKeywordCoverageJudge, runKeywordCoverageJudgeUrl, runLiveProof, runProductionLoop, runReferenceReplay, runSelfPlay, runSemanticConceptJudge, scanForMuffledGates, scoreContinuity, scorePrReviewComments, scorePrReviewSource, scoreReferenceReplay, securityJudge, selectHarnessVariant, sentenceReorderMutator, signManifest, statusAdvanced, summarizeBackendIntegrity, summarizeHarnessResults, summarizePrReviewBenchmark, testJudge, textInSnapshot, toLangfuseEnvelope, toPrometheusText, typoMutator, urlContains, verifyCompletion, verifyManifest, visualDiff, viteDeployRunner, weightedRecall, whitespaceCollapseMutator, withJudgeRetry, wranglerDeployRunner };
|