@dzhechkov/harness-core 0.3.143 → 0.3.144
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/.dz-manifest.json +36 -12
- package/dist/compounding.d.ts +22 -0
- package/dist/compounding.d.ts.map +1 -1
- package/dist/compounding.js +29 -10
- package/dist/compounding.js.map +1 -1
- package/dist/epoch-replay.d.ts +399 -0
- package/dist/epoch-replay.d.ts.map +1 -0
- package/dist/epoch-replay.js +695 -0
- package/dist/epoch-replay.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/sbom.json +71 -11
- package/src/compounding.ts +45 -8
- package/src/epoch-replay.ts +955 -0
- package/src/index.ts +52 -0
package/src/index.ts
CHANGED
|
@@ -327,6 +327,58 @@ export * from './skills-verify.js';
|
|
|
327
327
|
// finding, not a pass).
|
|
328
328
|
export * from './compounding.js';
|
|
329
329
|
|
|
330
|
+
// Cold-vs-warm EPOCH RUNNER (feature epoch-replay, scout idea #4) — the RESULT leg to compounding's
|
|
331
|
+
// readiness leg. Orchestrates + scores; never calls a model. SUPPORTED requires two DISJOINT Wilson
|
|
332
|
+
// intervals; INCONCLUSIVE is a first-class honest outcome.
|
|
333
|
+
// NOTE: `replayableInstances` / `ReplayInstance` are OWNED by compounding.js and merely re-exported
|
|
334
|
+
// there, so this star-export must not re-export them again (duplicate-export error).
|
|
335
|
+
export {
|
|
336
|
+
WILSON_Z,
|
|
337
|
+
MIN_INSTANCES,
|
|
338
|
+
FALSIFY_NO_LIFT_MIN_N,
|
|
339
|
+
NO_LIFT_MARGIN,
|
|
340
|
+
MARGIN_MAX,
|
|
341
|
+
MARGIN_MIN_EXCLUSIVE,
|
|
342
|
+
DIGEST_HONEST_SCOPE,
|
|
343
|
+
WORK_ORDER_KIND,
|
|
344
|
+
WORK_ORDER_VERSION,
|
|
345
|
+
DEFAULT_WORD_MIN,
|
|
346
|
+
DEFAULT_WORD_MAX,
|
|
347
|
+
DEFAULT_MOCK_N,
|
|
348
|
+
DEFAULT_MOCK_SEED,
|
|
349
|
+
wilsonInterval,
|
|
350
|
+
liftInterval,
|
|
351
|
+
corpusFingerprint,
|
|
352
|
+
isValidMargin,
|
|
353
|
+
workOrderDigest,
|
|
354
|
+
verifyWorkOrder,
|
|
355
|
+
buildWorkOrder,
|
|
356
|
+
buildJudgePrompts,
|
|
357
|
+
unblindJudgments,
|
|
358
|
+
scoreEpochReplay,
|
|
359
|
+
generateMockOutcomes,
|
|
360
|
+
renderEpochReplayResult,
|
|
361
|
+
renderWorkOrderSummary,
|
|
362
|
+
renderJudgePromptsSummary,
|
|
363
|
+
type WilsonInterval,
|
|
364
|
+
type LiftInterval,
|
|
365
|
+
type WorkOrder,
|
|
366
|
+
type WorkOrderItem,
|
|
367
|
+
type WorkOrderOptions,
|
|
368
|
+
type WorkOrderVerification,
|
|
369
|
+
type JudgePrompt,
|
|
370
|
+
type JudgePromptsResult,
|
|
371
|
+
type Arm,
|
|
372
|
+
type EpochOutcome,
|
|
373
|
+
type Judgment,
|
|
374
|
+
type UnblindResult,
|
|
375
|
+
type EpochVerdict,
|
|
376
|
+
type ArmResult,
|
|
377
|
+
type EpochReplayResult,
|
|
378
|
+
type ScoreOptions,
|
|
379
|
+
type MockOptions,
|
|
380
|
+
} from './epoch-replay.js';
|
|
381
|
+
|
|
330
382
|
// Run-process scorecard (feature dz-score, Reading C) — scores the DISCIPLINE of a feature-adr run
|
|
331
383
|
// from its artifacts. Descriptive-only, permanently: it never gates.
|
|
332
384
|
export * from './score.js';
|