@rulvar/core 1.234.0 → 1.236.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/dist/index.d.ts +130 -6
- package/dist/index.js +173 -21
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ type WireError = {
|
|
|
28
28
|
* 'agent' is carried by the AgentError value projection, not by a
|
|
29
29
|
* RulvarError subclass.
|
|
30
30
|
*/
|
|
31
|
-
type ErrorCode = "agent" | "config" | "non_serializable_value" | "script_rejected" | "journal_compat" | "invalid_resolution" | "journal_order_violation" | "plan_invariant" | "replay_plan_hash_mismatch" | "orchestrator_cap_config" | "journal_miss" | "budget_exhausted" | "fail_run" | "admission_rejected" | "sandbox_limit" | "lease_held" | "knowledge_cas" | "determinism" | "settlement" | "superseded" | "journal_sealed";
|
|
31
|
+
type ErrorCode = "agent" | "config" | "non_serializable_value" | "script_rejected" | "journal_compat" | "invalid_resolution" | "journal_order_violation" | "plan_invariant" | "replay_plan_hash_mismatch" | "orchestrator_cap_config" | "journal_miss" | "budget_exhausted" | "fail_run" | "admission_rejected" | "sandbox_limit" | "lease_held" | "knowledge_cas" | "determinism" | "settlement" | "superseded" | "journal_sealed" | "journal_integrity";
|
|
32
32
|
/** An alias for the registry type; both names are public. */
|
|
33
33
|
type RulvarErrorCode = ErrorCode;
|
|
34
34
|
/**
|
|
@@ -207,6 +207,25 @@ declare class JournalSealedError extends RulvarError {
|
|
|
207
207
|
});
|
|
208
208
|
}
|
|
209
209
|
/**
|
|
210
|
+
* A journal append was lost before the settle (RV3201): a persist
|
|
211
|
+
* inside the serialized append queue rejected, and the queue swallowed
|
|
212
|
+
* the rejection to keep later appends flowing, so the journal is now
|
|
213
|
+
* missing an entry the run believes it wrote. The first such failure
|
|
214
|
+
* latches inside the Replayer: every `flush()` from that moment
|
|
215
|
+
* rethrows it, and the engine settle path converts a would-be ok (or
|
|
216
|
+
* suspended) outcome into an error terminal, because an ok settle over
|
|
217
|
+
* a lost deterministic record would replay differently than the run
|
|
218
|
+
* executed. The latch is permanent for the segment; a resume constructs
|
|
219
|
+
* a fresh Replayer against whatever the store actually holds.
|
|
220
|
+
*/
|
|
221
|
+
declare class JournalIntegrityError extends RulvarError {
|
|
222
|
+
readonly code = "journal_integrity";
|
|
223
|
+
constructor(message: string, opts?: {
|
|
224
|
+
data?: Json;
|
|
225
|
+
cause?: unknown;
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
210
229
|
* A declared fail-run policy engaged and closed the run as a failure
|
|
211
230
|
* (v1.35.0 review P2-1): `budget.atCap: 'fail-run'` after the journaled
|
|
212
231
|
* orchestrator cap decision, `guards.fallback: 'fail-run'` after the
|
|
@@ -1198,6 +1217,15 @@ type RunMeta = {
|
|
|
1198
1217
|
allowUnpriced?: string[];
|
|
1199
1218
|
};
|
|
1200
1219
|
/**
|
|
1220
|
+
* The host-declared config identity (RunOptions.configFingerprint,
|
|
1221
|
+
* RV3210): an opaque pin over what the workflow body closes over,
|
|
1222
|
+
* recorded at genesis and compared on every resume that asserts one.
|
|
1223
|
+
* Absent when the run declared none. A store that drops the field
|
|
1224
|
+
* degrades the check to the UNRECORDED warning, never a false pass
|
|
1225
|
+
* or a false refusal (absence means NOT RECORDED).
|
|
1226
|
+
*/
|
|
1227
|
+
configFingerprint?: string;
|
|
1228
|
+
/**
|
|
1201
1229
|
* Count of execution segments this run has STARTED (a fresh start
|
|
1202
1230
|
* writes 1; every resume writes prior + 1, durably, BEFORE the
|
|
1203
1231
|
* segment emits its first event). The engine derives each segment's
|
|
@@ -3790,6 +3818,13 @@ declare class Replayer {
|
|
|
3790
3818
|
private readonly strict;
|
|
3791
3819
|
private readonly invalidated;
|
|
3792
3820
|
private queue;
|
|
3821
|
+
/**
|
|
3822
|
+
* The first lost append of this segment (RV3201), latched by persist
|
|
3823
|
+
* so flush() can rethrow what the serialized queue swallowed. The
|
|
3824
|
+
* wrapper object keeps a rejection whose reason is literally
|
|
3825
|
+
* `undefined` distinguishable from "no failure".
|
|
3826
|
+
*/
|
|
3827
|
+
private appendFailure;
|
|
3793
3828
|
/** True after the run's durable settle sealed the segment (RV1904). */
|
|
3794
3829
|
private sealedInternal;
|
|
3795
3830
|
private seq;
|
|
@@ -3905,9 +3940,18 @@ declare class Replayer {
|
|
|
3905
3940
|
/** Read-only view of the appended entries, in per-run total order. */
|
|
3906
3941
|
snapshot(): readonly JournalEntry[];
|
|
3907
3942
|
/**
|
|
3908
|
-
* Resolves when every append enqueued so far has persisted
|
|
3909
|
-
*
|
|
3910
|
-
*
|
|
3943
|
+
* Resolves when every append enqueued so far has persisted, and
|
|
3944
|
+
* REJECTS typed when any append was lost (RV3201). Deterministic
|
|
3945
|
+
* shims journal fire-and-forget through the serialized queue, whose
|
|
3946
|
+
* chain swallows rejections to keep later appends flowing; without
|
|
3947
|
+
* this rethrow a failed persist was visible to nobody (the shim
|
|
3948
|
+
* dropped its promise, the chain caught the error, and this barrier
|
|
3949
|
+
* awaited the already-caught chain), so a run could settle ok over a
|
|
3950
|
+
* journal missing a record it believes it wrote. The first failure
|
|
3951
|
+
* latches permanently for the segment: every flush from that moment
|
|
3952
|
+
* rethrows it, the engine settle path converts a would-be ok into an
|
|
3953
|
+
* error terminal, and mid-run flush callers fail fast instead of
|
|
3954
|
+
* proceeding over a torn journal.
|
|
3911
3955
|
*/
|
|
3912
3956
|
flush(): Promise<void>;
|
|
3913
3957
|
private mint;
|
|
@@ -6515,7 +6559,10 @@ declare class RunBudget {
|
|
|
6515
6559
|
* hold, whenever `strictPricing` is armed. Refusals, each a typed
|
|
6516
6560
|
* ConfigError naming the model and the defect: no price row resolves
|
|
6517
6561
|
* (an unpriced model debits nothing, so every ceiling silently fails
|
|
6518
|
-
* to bound it); a
|
|
6562
|
+
* to bound it); a row missing its required input or output rate
|
|
6563
|
+
* (RV3204: the type requires both, and an untyped `{}` row used to
|
|
6564
|
+
* satisfy every conditional check and debit zero); a malformed row
|
|
6565
|
+
* (a non-finite or negative rate, a
|
|
6519
6566
|
* malformed long-context tier), because arithmetic over it disarms
|
|
6520
6567
|
* the very comparisons the mode exists to keep honest; and, only
|
|
6521
6568
|
* when `maxRatesAgeDays` is declared, a row whose `ratesVerifiedAt`
|
|
@@ -7746,6 +7793,24 @@ interface RunOptions {
|
|
|
7746
7793
|
/** Explicit id; otherwise the engine mints a ULID. */
|
|
7747
7794
|
runId?: string;
|
|
7748
7795
|
/**
|
|
7796
|
+
* An opaque host-declared identity over the config the workflow body
|
|
7797
|
+
* CLOSES OVER (RV3210, the honest answer to `hashWorkflowBody`'s
|
|
7798
|
+
* closure blindness: the body-text hash cannot see captured values,
|
|
7799
|
+
* so two byte-identical bodies over different closures pin
|
|
7800
|
+
* identically). Recorded in RunMeta at genesis and compared on every
|
|
7801
|
+
* resume that supplies one: a mismatch refuses the resume typed
|
|
7802
|
+
* BEFORE ownership, meta writes, and appends, because the host
|
|
7803
|
+
* itself asserted the identity; a recorded fingerprint the resume
|
|
7804
|
+
* does not supply warns (`RULVAR_RESUME_FINGERPRINT_UNCHECKED`), and
|
|
7805
|
+
* a supplied fingerprint the run never recorded warns
|
|
7806
|
+
* (`RULVAR_RESUME_FINGERPRINT_UNRECORDED`) instead of failing,
|
|
7807
|
+
* because absence means NOT RECORDED. The preferred pattern is still
|
|
7808
|
+
* to close over nothing and pass config through args; the
|
|
7809
|
+
* fingerprint is the pin for what must stay closed over. A non-empty
|
|
7810
|
+
* string of at most 512 characters.
|
|
7811
|
+
*/
|
|
7812
|
+
configFingerprint?: string;
|
|
7813
|
+
/**
|
|
7749
7814
|
* Run ceiling B0; immutable after start. Enforced by projected
|
|
7750
7815
|
* admission (a spawn whose reserve does not fit is denied before any
|
|
7751
7816
|
* dispatch), the per-turn guard with a budget-derived maxOutputTokens
|
|
@@ -7893,6 +7958,18 @@ interface ResumeOptions {
|
|
|
7893
7958
|
*/
|
|
7894
7959
|
bodyHash?: "warn" | "refuse";
|
|
7895
7960
|
/**
|
|
7961
|
+
* The host's asserted config identity for this resume (RV3210),
|
|
7962
|
+
* compared against the RunMeta-recorded
|
|
7963
|
+
* {@link RunOptions.configFingerprint} BEFORE ownership, meta
|
|
7964
|
+
* writes, or any append. Both present and unequal is a typed
|
|
7965
|
+
* ConfigError always, no posture knob: supplying the fingerprint IS
|
|
7966
|
+
* the assertion. A recorded fingerprint the resume does not supply
|
|
7967
|
+
* warns (`RULVAR_RESUME_FINGERPRINT_UNCHECKED`); a supplied one the
|
|
7968
|
+
* run never recorded warns (`RULVAR_RESUME_FINGERPRINT_UNRECORDED`),
|
|
7969
|
+
* because absence means NOT RECORDED, never a verdict.
|
|
7970
|
+
*/
|
|
7971
|
+
configFingerprint?: string;
|
|
7972
|
+
/**
|
|
7896
7973
|
* Dry-run: replay-strict matching; the first would-be-live call throws
|
|
7897
7974
|
* JournalMissError and the run settles with that typed error, zero live
|
|
7898
7975
|
* calls performed.
|
|
@@ -9609,6 +9686,28 @@ interface OrchestratorExtension {
|
|
|
9609
9686
|
*/
|
|
9610
9687
|
quiescent?(): boolean;
|
|
9611
9688
|
/**
|
|
9689
|
+
* The finish gate (RV3202): consulted FIRST on every ordinary
|
|
9690
|
+
* coordination finish call, before any configured finish/draft
|
|
9691
|
+
* validator. A refusal returns as the finish tool's typed error
|
|
9692
|
+
* result (nothing journals, no repair spent, bounded by the turn
|
|
9693
|
+
* budget), so the model resolves the named blockers and calls finish
|
|
9694
|
+
* again. Quiescence participation alone gates only WAKES; without
|
|
9695
|
+
* this hook a root could finish over the extension's still-running
|
|
9696
|
+
* work and, absent an acceptance policy, settle a bare ok while the
|
|
9697
|
+
* exit barrier cancelled it (the 2026-08-11 experiment's PlanRunner
|
|
9698
|
+
* early-finish blocker). MUST be pure over journal-derived state: a
|
|
9699
|
+
* re-executed turn re-evaluates the gate over the rebuilt fold and
|
|
9700
|
+
* must render the same verdict. A throwing gate is a host defect and
|
|
9701
|
+
* fails the run. The forced-finalization and synthesis finishes are
|
|
9702
|
+
* never gated.
|
|
9703
|
+
*/
|
|
9704
|
+
finishGate?(): {
|
|
9705
|
+
ok: true;
|
|
9706
|
+
} | {
|
|
9707
|
+
ok: false;
|
|
9708
|
+
reason: string;
|
|
9709
|
+
};
|
|
9710
|
+
/**
|
|
9612
9711
|
* Extra fields merged into every WakeDigest (the hash-v2 coordinated
|
|
9613
9712
|
* schema lands in M7-T13; the substrate merges extras verbatim).
|
|
9614
9713
|
*/
|
|
@@ -14244,6 +14343,17 @@ interface PreflightOrchestratorSpec {
|
|
|
14244
14343
|
* the finding entirely. Default 2.
|
|
14245
14344
|
*/
|
|
14246
14345
|
headroomTurns?: number;
|
|
14346
|
+
/**
|
|
14347
|
+
* The `ceiling-headroom-thin` threshold as a fraction of the ceiling
|
|
14348
|
+
* (RV3208, the 2026-08-11 experiment's admission cliff: a $7.00
|
|
14349
|
+
* ceiling over a $6.80 required minimum left 2.86 percent headroom,
|
|
14350
|
+
* and a small pricing or context drift would have refused the whole
|
|
14351
|
+
* workflow at admission). The finding warns when
|
|
14352
|
+
* `ceilingHeadroomShare` sits below this fraction. A number in
|
|
14353
|
+
* [0, 1]; 0 (the default) keeps the finding silent, so declared
|
|
14354
|
+
* configs are byte identical until a host opts in.
|
|
14355
|
+
*/
|
|
14356
|
+
minCeilingHeadroomShare?: number;
|
|
14247
14357
|
}
|
|
14248
14358
|
/** The full input: engine surface, run surface, and the declared wave. */
|
|
14249
14359
|
interface PreflightInput {
|
|
@@ -14471,6 +14581,20 @@ interface PreflightReport {
|
|
|
14471
14581
|
*/
|
|
14472
14582
|
requiredMinimumCeilingUsd?: number;
|
|
14473
14583
|
/**
|
|
14584
|
+
* The ceiling minus the required minimum (RV3208): the absolute
|
|
14585
|
+
* dollars of drift the admission survives before the wave stops
|
|
14586
|
+
* seating. Present beside requiredMinimumCeilingUsd whenever a
|
|
14587
|
+
* ceiling is declared.
|
|
14588
|
+
*/
|
|
14589
|
+
ceilingHeadroomUsd?: number;
|
|
14590
|
+
/**
|
|
14591
|
+
* The same headroom as a fraction of the ceiling (RV3208): the
|
|
14592
|
+
* one-field read of the admission cliff (the 2026-08-11 experiment
|
|
14593
|
+
* ran at 0.0286). Present beside ceilingHeadroomUsd on positive
|
|
14594
|
+
* ceilings.
|
|
14595
|
+
*/
|
|
14596
|
+
ceilingHeadroomShare?: number;
|
|
14597
|
+
/**
|
|
14474
14598
|
* The live-root-exposure term of the wave projection (RV2004): the
|
|
14475
14599
|
* orchestrator's own worst-case turn floor, the money coordination
|
|
14476
14600
|
* has ALWAYS already spent (and holds in flight) by the time any
|
|
@@ -15251,4 +15375,4 @@ interface SandboxBridge {
|
|
|
15251
15375
|
declare const SANDBOX_AGENT_OPT_KEYS: readonly string[];
|
|
15252
15376
|
declare function createSandboxBridge(ctx: Ctx<never>, options: SandboxBridgeOptions): SandboxBridge;
|
|
15253
15377
|
//#endregion
|
|
15254
|
-
export { AWAIT_SCHEMA, AbandonAttempt, AbandonFold, AbandonPayload, AbandonedSpendView, AbortClass, AcceptanceChildSummary, type AdaptiveEvents, AdmissionController, AdmissionDecision, AdmissionRejectedError, AdmissionStatsBefore, AdmitLineage, AdmitRejectReason, AdmitSpec, AdmitVerdict, AgentCallError, AgentError, type AgentEvents, AgentIdentityInput, type AgentInvocationRow, AgentOpts, AgentProfile, AgentProfilePermissions, AgentProfileTemplateOptions, AgentResult, AgentResultMeta, AgentStatus, type AppliedPricingRow, ApproachSignatureInputs, ApprovalDecision, ApprovalIdentityInput, Artifact, AttemptOutcomeClass, AuditCategory, AuditRecord, AuditRunsOptions, BUDGET_ABORT_REASON, BaseAppend, BillingComponent, BriefOpts, BudgetAccountView, BudgetDefaults, BudgetExhaustedError, BudgetExhaustionDiagnostics, BudgetHooks, BudgetReserve, type Bytes, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_JUDGE_LABEL, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, CacheHint, CachePolicy, CacheTtl, CanUseTool, CanonicalId, CanonicalIdentity, CanonicalLadderSpec, CanonicalModelSpec, ChatEvent, ChatRequest, CheckpointState, ChildArtifactPage, ChildExecutionFacts, ChildIdentityInput, ChildResultPage, ChildrenAtFailure, CitationTarget, type ClaimClass, ClaimContradictionFinding, ClaimCoverageGrade, ClaimCoverageInput, type ClaimOp, ClaimPair, ClaimPairOptions, ClaimPairsFold, ClaimPoolReading, type ClaimStatus, ClaimValidationOptions, CollectOpts, CollectedTurn, CompactionConfig, CompiledPermissionChain, CompiledWorkflow, ComponentDelta, ConfigError, Contradiction, ContradictionClaim, ContradictionOptions, ContradictionSource, type CoreEvents, CostAttribution, CostAttributionFacts, type CostBasis, CostReport, CreateEngineOptions, type CriticalPath, Ctx, DECISION_CHAIN_KINDS, DEFAULT_ANCHOR_PATTERN, DEFAULT_ARTIFACT_PATTERN, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_CITATION_SAMPLE, DEFAULT_CLAIM_JUDGE_MAX_TURNS, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_CALLS_PER_ENTRY, DEFAULT_EVIDENCE_GRADE_PHRASES, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_EVIDENCE_OVERHEAD_CALLS, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_CLAIM_PAIRS, DEFAULT_MAX_CONTRADICTIONS, DEFAULT_MAX_DEPTH, DEFAULT_MAX_EXCERPT_CHARS, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PAIR_EXCERPT_CHARS, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_POOL_PER_PAIR, DEFAULT_MAX_QUOTA_DENIALS, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_RUN_FACT_PAIRS, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DataKeyProvider, DebitResult, DecisionChainRow, DeclaredLadder, DedupIndex, DedupNote, DedupedClaims, DelimitedStatementOptions, DerivedKey, DeriverRegistry, type DeterminismConfig, DeterminismError, type DeterminismEvents, type DeterminismMode, DispositionRule, DispositionTable, DocumentedRates, DonorCandidate, DonorRef, DroppedItem, EMIT_RESULT_TOOL, EMPTY_AUTHORITY_HASH, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EXPOSURE_WAIT_SWEEP_MS, EffectiveUsageLimits, Effort, Engine, EngineDefaults, EngineQuotaConfig, EngineQuotaRuntime, EntryBillingFold, EntryBillingUnit, EntryKind, EntryRef, EntryStatus, EnvelopeEncryption, EnvelopeEncryptionOptions, ErrorClass, ErrorCode, ErrorPolicy, EscalatedResult, EscalationDecision, EscalationDecisionAbortedError, EscalationDigest, EscalationKind, EscalationLimits, EscalationOptions, EscalationReport, EscalationRequest, EventBus, EvidenceContract, type EvidenceRef, type ExecKeyDerivation, type ExecutorRegistry, type ExplorationSummary, ExtensionAppendInput, ExtensionDispatchSpec, ExternalIdentityInput, ExternalRegistry, ExtractNecessityInput, FINALIZE_SYNTHESIS_INSTRUCTION, FINAL_COMPOSITION_LABEL, FINISH_SCHEMA, FINISH_SECTIONAL_SCHEMA, FINISH_TOOL_NAME, FUTURE_RATES_TOLERANCE_MS, FailRunError, FailoverTarget, FailoverTrigger, FallbackField, FallbackTrigger, FencedCodeMode, FileModelKnowledgeStore, FileModelKnowledgeStoreOptions, FileTranscriptStore, type FinalizationWindowBudget, FinishContract, FinishContractCitations, FinishContractGoldenReject, FinishContractManifest, FinishContractSectionPattern, FinishInfo, FinishSelfTestFailure, FinishSelfTestFixtures, FinishSelfTestReport, FinishValidationChild, FinishValidationInput, FinishValidationSpec, FinishValidationVerdict, FinishValidator, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, GET_SETTLED_CHILD_RESULTS_SCHEMA, GET_SETTLED_CHILD_RESULTS_TOOL_NAME, Gate, GateAudit, type GateRecord, GitWorktreeProvider, GitWorktreeProviderOptions, GraftBoot, HashVersion, HookVerdict, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IN_FLIGHT_EXPOSURE_REFUSAL_PREFIX, IdentityInput, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, IncrementalSynthesisResult, InvalidResolutionError, InvocationRole, type InvocationTable, InvoiceCardinality, InvoiceExport, InvoicePricingProvenance, InvoiceReconciliation, InvoiceRow, type IsolatedExecContext, type IsolatedExecRequest, type IsolatedExecutorTag, type IsolationProvider, type IsolationSpec, Issue$1 as Issue, JOURNAL_ENVELOPE_MARKER, JournalCompatSubCode, JournalCompatibilityError, JournalEntry, JournalMatcher, JournalMissError, JournalOperation, JournalOrderViolation, type JournalPricingSnapshot, JournalSealedError, JournalSerializationContext, JournalSerializationHook, type JournalStore, JournaledChild, JournaledChildRoster, JournaledCriticalPath, JournaledSynthesisCandidate, JournaledSynthesisCandidateReport, type Json, JsonSchema, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, type KbProposal, type KbProposalTrigger, KeyDeriver, KeyRing, KeyedLimiter, KnowledgeCasError, type KnowledgeSnapshot, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LadderSpec, type LeasableStore, type Lease, LeaseHeldError, Ledger, LineageCounters, LineageIndex, LineageRef, LineageRelation, LineageStats, LogicalRunTelemetry, LogicalTaskId, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_CRITICAL_UNCOVERED, MAX_DEPTH_CEILING, MAX_RUN_FACTS_SHEET_CHARS, MAX_RUN_ID_LENGTH, MAX_TIMER_DELAY_MS, MatchResult, McpConfig, McpToolSource, MechanicalGateProfile, MechanicalGateVerdict, MemoryQuotaLimiter, type MetaLookupStore, type ModelCaps, ModelChoice, type ModelClaim, ModelEpochInputs, type ModelKnowledgeHandle, type ModelKnowledgeStore, ModelListConstraint, ModelRef, ModelRetry, ModelSpec, Msg, NoProgressDetector, NodeId, NodeLinkValue, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OnEscalation, OperationDisposition, OrchestrateAcceptance, OrchestrateClaimConsistency, OrchestrateClaimConsistencyMeta, OrchestrateContradictions, OrchestrateContradictionsMeta, OrchestrateDraftToFinal, OrchestrateOptions, OrchestrateSynthesis, OrchestrateSynthesisSkipReason, OrchestratorBudgetSpec, OrchestratorCapConfigError, OrchestratorExtension, OrchestratorExtensionIO, OrchestratorRuntime, Out, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, Part, PendingExternal, PendingToolTurn, PermissionConfig, PermissionGate, PermissionHook, PermissionPreset, PermissionRule, PermissionVerdict, PersistedTerminalRefusal, PersistedTerminalResult, type PhaseRow, PhaseTarget, PilotAgentProfileOptions, PilotAgentProfileResult, type PinnedPricingSegment, PipelineCollected, PipelineOpts, PlanInvariantError, type PostFanInBreakdown, PreflightAdmissionRow, PreflightFinding, PreflightInput, PreflightOrchestratorSpec, PreflightReport, PreflightSpawnReport, PreflightSpawnSpec, PreflightToolCeiling, PriceTable, PricedComponent, PricedComponents, PricedUsage, type Pricing, type PricingTier, ProgressReport, type ProviderAdapter, ProviderCallRecord, ProviderStatement, QUOTA_WINDOW_MS, QualityFloors, QuotaCounters, type QuotaDecision, type QuotaEstimate, type QuotaLimiter, type QuotaReservationRequest, QuotaRule, QuotaWindowSnapshot, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_FACTS_ANCHOR, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, RandIdentityInput, RandPayload, RateLimitObservation, ReconcileOptions, ReconcileResult, ReconcileStatementOptions, RefEntryAppender, RefEntryClassification, RefusalInfo, RejectedFinishCandidate, RepeatedClaim, ReplayDisposition, ReplayMode, ReplayPlanHashMismatch, Replayer, RepositoryResearchToolset, RepositoryResearchToolsetOptions, ResearchAgentProfileOptions, ResearchAgentProfileResult, ResearchEvidenceEntry, ResolutionArbiter, ResolutionAttempt, ResolutionBy, ResolutionFold, ResolutionLayer, ResolutionOutcome, ResolutionPayload, ResolvedInvocation, ResolvedToolset, ResumeHandle, ResumeOptions, ResumePreview, ResumeReport, RetryClass, RetryPolicy, ReuseConfig, RiskRuleValue, Role, RulvarError, RulvarErrorCode, RunAgentOptions, RunAuditVerdict, RunBudget, RunEventSink, RunExport, RunFactPairOptions, RunFactPairsFold, RunFactsSheet, type RunFilter, RunHandle, RunInternals, type RunMeta, RunOptions, RunOutcome, RunProfile, RunStateAudit, RunStatus, RuntimeEventSink, SANDBOX_AGENT_OPT_KEYS, SPAWN_ADMISSION_DECISION_TYPE, SPAWN_AGENT_SCHEMA, SYNTHESIS_NOTE_LABEL, SandboxBridge, SandboxBridgeOptions, SandboxError, SandboxHostToWorker, SandboxMethod, SandboxWorkerToHost, SchemaPair, SchemaSpec, SchemaValidationResult, ScopeSegment, ScriptRejected, ScriptRunner, ScrubNote, SecretMasker, SectionMatchMode, SectionPatternEntry, SemanticPassSummary, SemanticPassesSummary, Semaphore, SerializationHook, Settled, SettlementError, ShellPatternRules, ShellSegment, ShellVerdict, SinglePhaseAppend, SpanMinter, SpanRegistry, SpawnAdmissionValue, SpawnAgentParams, SpawnKey, SpawnLineage, SpawnLineageOpt, SpawnOrigin, SpawnRecord, Spend, Stage, type StandardJSONSchemaV1, type StandardSchemaV1, StatementCategoryRow, StatementColumnMap, StatementCoverage, StatementReconciliation, StatementRequestRow, StepIdentityInput, type StreamHooks, StructuredOutputTier, SupersededError, SuspendedAppend, SuspensionState, SynthesisCandidateFailure, TERMINAL_TELEMETRY_SCOPE, TOOL_NAME_PATTERN, type TaskClass, TaskDigest, TaskSpec, TelemetryScope, type TerminalEnvelope, TerminalOutcomeFacts, TerminalPatch, TerminalTelemetryScopes, TerminationAccount, TerminationAccountSnapshot, TerminationDeniedValue, TerminationDeniedWriter, TerminationInitValue, TerminationLimits, TerminationResource, ToolAuthority, type ToolBudgetSummary, ToolCalibrationExclusion, ToolCalibrationReport, ToolCalibrationRow, ToolCallRequest, ToolChoice, type ToolContext, ToolContextSeed, ToolContract, type ToolDef, type ToolEvents, type ToolExecutor, type ToolExecutorProvider, ToolInit, type ToolRisk, ToolRuntime, type ToolSource, type ToolSourceSession, ToolsOption, ToolsetAttestation, TranscriptSerializationHook, type TranscriptStore, TriggerClass, TtlState, Usage, UsageLimits, UsageSlice, VerifiedRecommendation, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, WakeBudgetBlock, WakeDigest, WakeTrigger, WireError, Workflow, WorkflowCallOpts, type WorkflowEvent, type WorkflowEventBody, WorkflowRegistry, accountSpendFromJournal, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, assertSafeRunId, atCompactionThreshold, attestToolset, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, childRostersFromJournal, citationTargetsValidator, citedValueValidator, claimCoverageOf, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compareRates, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, criticalPathFromJournal, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispatchProjectionReserveUsd, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, enforceToolsetAttestation, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidenceGradeValidator, evidencePreservedValidator, executeWorkflow, executionFactsOf, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, findContradictions, finishContract, foldLedger, foldTermination, formatCharacterValidator, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, headingStructureValidator, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, journalPricingSnapshot, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, logicalRunTelemetry, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, orchestratorAdmissionEstCostUsd, pairDraftClaims, pairRunFactClaims, parallelScope, parseModelRef, parseScopePath, persistedTerminalEnvelope, phiInitialOf, pilotAgentProfile, pipelineScope, planNodeScope, preflightEstimate, priceComponentsOf, priceEntryBilling, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualRequestsDelta, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleKey, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reconcileStatement, reduceAuditTrail, reduceCriticalPath, reduceDecisionChain, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, sectionCitationsValidator, sectionPatternCountValidator, selectStructuredOutputTier, selfTestFinishValidation, shouldCompact, snapshotQuotaRules, snapshotUsage, spawnDepthOf, spliceSections, statementFromRows, statementRowsFromDelimited, stripFencedBlocks, sumUsage, summarizeInstruction, summarizeOutput, synthesisCandidatesFromJournal, terminalEnvelopeOf, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolAuthority, toolCalibrationFromJournal, toolContract, toolContractHash, toolsetAuthorityHash, toolsetHash, ttlState, usageViolations, validateDetachedResolution, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateToolsetAttestation, validateUsageLimits, wordCountValidator, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|
|
15378
|
+
export { AWAIT_SCHEMA, AbandonAttempt, AbandonFold, AbandonPayload, AbandonedSpendView, AbortClass, AcceptanceChildSummary, type AdaptiveEvents, AdmissionController, AdmissionDecision, AdmissionRejectedError, AdmissionStatsBefore, AdmitLineage, AdmitRejectReason, AdmitSpec, AdmitVerdict, AgentCallError, AgentError, type AgentEvents, AgentIdentityInput, type AgentInvocationRow, AgentOpts, AgentProfile, AgentProfilePermissions, AgentProfileTemplateOptions, AgentResult, AgentResultMeta, AgentStatus, type AppliedPricingRow, ApproachSignatureInputs, ApprovalDecision, ApprovalIdentityInput, Artifact, AttemptOutcomeClass, AuditCategory, AuditRecord, AuditRunsOptions, BUDGET_ABORT_REASON, BaseAppend, BillingComponent, BriefOpts, BudgetAccountView, BudgetDefaults, BudgetExhaustedError, BudgetExhaustionDiagnostics, BudgetHooks, BudgetReserve, type Bytes, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_JUDGE_LABEL, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, CacheHint, CachePolicy, CacheTtl, CanUseTool, CanonicalId, CanonicalIdentity, CanonicalLadderSpec, CanonicalModelSpec, ChatEvent, ChatRequest, CheckpointState, ChildArtifactPage, ChildExecutionFacts, ChildIdentityInput, ChildResultPage, ChildrenAtFailure, CitationTarget, type ClaimClass, ClaimContradictionFinding, ClaimCoverageGrade, ClaimCoverageInput, type ClaimOp, ClaimPair, ClaimPairOptions, ClaimPairsFold, ClaimPoolReading, type ClaimStatus, ClaimValidationOptions, CollectOpts, CollectedTurn, CompactionConfig, CompiledPermissionChain, CompiledWorkflow, ComponentDelta, ConfigError, Contradiction, ContradictionClaim, ContradictionOptions, ContradictionSource, type CoreEvents, CostAttribution, CostAttributionFacts, type CostBasis, CostReport, CreateEngineOptions, type CriticalPath, Ctx, DECISION_CHAIN_KINDS, DEFAULT_ANCHOR_PATTERN, DEFAULT_ARTIFACT_PATTERN, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_CITATION_SAMPLE, DEFAULT_CLAIM_JUDGE_MAX_TURNS, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_CALLS_PER_ENTRY, DEFAULT_EVIDENCE_GRADE_PHRASES, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_EVIDENCE_OVERHEAD_CALLS, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_CLAIM_PAIRS, DEFAULT_MAX_CONTRADICTIONS, DEFAULT_MAX_DEPTH, DEFAULT_MAX_EXCERPT_CHARS, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PAIR_EXCERPT_CHARS, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_POOL_PER_PAIR, DEFAULT_MAX_QUOTA_DENIALS, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_RUN_FACT_PAIRS, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DataKeyProvider, DebitResult, DecisionChainRow, DeclaredLadder, DedupIndex, DedupNote, DedupedClaims, DelimitedStatementOptions, DerivedKey, DeriverRegistry, type DeterminismConfig, DeterminismError, type DeterminismEvents, type DeterminismMode, DispositionRule, DispositionTable, DocumentedRates, DonorCandidate, DonorRef, DroppedItem, EMIT_RESULT_TOOL, EMPTY_AUTHORITY_HASH, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EXPOSURE_WAIT_SWEEP_MS, EffectiveUsageLimits, Effort, Engine, EngineDefaults, EngineQuotaConfig, EngineQuotaRuntime, EntryBillingFold, EntryBillingUnit, EntryKind, EntryRef, EntryStatus, EnvelopeEncryption, EnvelopeEncryptionOptions, ErrorClass, ErrorCode, ErrorPolicy, EscalatedResult, EscalationDecision, EscalationDecisionAbortedError, EscalationDigest, EscalationKind, EscalationLimits, EscalationOptions, EscalationReport, EscalationRequest, EventBus, EvidenceContract, type EvidenceRef, type ExecKeyDerivation, type ExecutorRegistry, type ExplorationSummary, ExtensionAppendInput, ExtensionDispatchSpec, ExternalIdentityInput, ExternalRegistry, ExtractNecessityInput, FINALIZE_SYNTHESIS_INSTRUCTION, FINAL_COMPOSITION_LABEL, FINISH_SCHEMA, FINISH_SECTIONAL_SCHEMA, FINISH_TOOL_NAME, FUTURE_RATES_TOLERANCE_MS, FailRunError, FailoverTarget, FailoverTrigger, FallbackField, FallbackTrigger, FencedCodeMode, FileModelKnowledgeStore, FileModelKnowledgeStoreOptions, FileTranscriptStore, type FinalizationWindowBudget, FinishContract, FinishContractCitations, FinishContractGoldenReject, FinishContractManifest, FinishContractSectionPattern, FinishInfo, FinishSelfTestFailure, FinishSelfTestFixtures, FinishSelfTestReport, FinishValidationChild, FinishValidationInput, FinishValidationSpec, FinishValidationVerdict, FinishValidator, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, GET_SETTLED_CHILD_RESULTS_SCHEMA, GET_SETTLED_CHILD_RESULTS_TOOL_NAME, Gate, GateAudit, type GateRecord, GitWorktreeProvider, GitWorktreeProviderOptions, GraftBoot, HashVersion, HookVerdict, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IN_FLIGHT_EXPOSURE_REFUSAL_PREFIX, IdentityInput, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, IncrementalSynthesisResult, InvalidResolutionError, InvocationRole, type InvocationTable, InvoiceCardinality, InvoiceExport, InvoicePricingProvenance, InvoiceReconciliation, InvoiceRow, type IsolatedExecContext, type IsolatedExecRequest, type IsolatedExecutorTag, type IsolationProvider, type IsolationSpec, Issue$1 as Issue, JOURNAL_ENVELOPE_MARKER, JournalCompatSubCode, JournalCompatibilityError, JournalEntry, JournalIntegrityError, JournalMatcher, JournalMissError, JournalOperation, JournalOrderViolation, type JournalPricingSnapshot, JournalSealedError, JournalSerializationContext, JournalSerializationHook, type JournalStore, JournaledChild, JournaledChildRoster, JournaledCriticalPath, JournaledSynthesisCandidate, JournaledSynthesisCandidateReport, type Json, JsonSchema, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, type KbProposal, type KbProposalTrigger, KeyDeriver, KeyRing, KeyedLimiter, KnowledgeCasError, type KnowledgeSnapshot, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LadderSpec, type LeasableStore, type Lease, LeaseHeldError, Ledger, LineageCounters, LineageIndex, LineageRef, LineageRelation, LineageStats, LogicalRunTelemetry, LogicalTaskId, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_CRITICAL_UNCOVERED, MAX_DEPTH_CEILING, MAX_RUN_FACTS_SHEET_CHARS, MAX_RUN_ID_LENGTH, MAX_TIMER_DELAY_MS, MatchResult, McpConfig, McpToolSource, MechanicalGateProfile, MechanicalGateVerdict, MemoryQuotaLimiter, type MetaLookupStore, type ModelCaps, ModelChoice, type ModelClaim, ModelEpochInputs, type ModelKnowledgeHandle, type ModelKnowledgeStore, ModelListConstraint, ModelRef, ModelRetry, ModelSpec, Msg, NoProgressDetector, NodeId, NodeLinkValue, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OnEscalation, OperationDisposition, OrchestrateAcceptance, OrchestrateClaimConsistency, OrchestrateClaimConsistencyMeta, OrchestrateContradictions, OrchestrateContradictionsMeta, OrchestrateDraftToFinal, OrchestrateOptions, OrchestrateSynthesis, OrchestrateSynthesisSkipReason, OrchestratorBudgetSpec, OrchestratorCapConfigError, OrchestratorExtension, OrchestratorExtensionIO, OrchestratorRuntime, Out, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, Part, PendingExternal, PendingToolTurn, PermissionConfig, PermissionGate, PermissionHook, PermissionPreset, PermissionRule, PermissionVerdict, PersistedTerminalRefusal, PersistedTerminalResult, type PhaseRow, PhaseTarget, PilotAgentProfileOptions, PilotAgentProfileResult, type PinnedPricingSegment, PipelineCollected, PipelineOpts, PlanInvariantError, type PostFanInBreakdown, PreflightAdmissionRow, PreflightFinding, PreflightInput, PreflightOrchestratorSpec, PreflightReport, PreflightSpawnReport, PreflightSpawnSpec, PreflightToolCeiling, PriceTable, PricedComponent, PricedComponents, PricedUsage, type Pricing, type PricingTier, ProgressReport, type ProviderAdapter, ProviderCallRecord, ProviderStatement, QUOTA_WINDOW_MS, QualityFloors, QuotaCounters, type QuotaDecision, type QuotaEstimate, type QuotaLimiter, type QuotaReservationRequest, QuotaRule, QuotaWindowSnapshot, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_FACTS_ANCHOR, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, RandIdentityInput, RandPayload, RateLimitObservation, ReconcileOptions, ReconcileResult, ReconcileStatementOptions, RefEntryAppender, RefEntryClassification, RefusalInfo, RejectedFinishCandidate, RepeatedClaim, ReplayDisposition, ReplayMode, ReplayPlanHashMismatch, Replayer, RepositoryResearchToolset, RepositoryResearchToolsetOptions, ResearchAgentProfileOptions, ResearchAgentProfileResult, ResearchEvidenceEntry, ResolutionArbiter, ResolutionAttempt, ResolutionBy, ResolutionFold, ResolutionLayer, ResolutionOutcome, ResolutionPayload, ResolvedInvocation, ResolvedToolset, ResumeHandle, ResumeOptions, ResumePreview, ResumeReport, RetryClass, RetryPolicy, ReuseConfig, RiskRuleValue, Role, RulvarError, RulvarErrorCode, RunAgentOptions, RunAuditVerdict, RunBudget, RunEventSink, RunExport, RunFactPairOptions, RunFactPairsFold, RunFactsSheet, type RunFilter, RunHandle, RunInternals, type RunMeta, RunOptions, RunOutcome, RunProfile, RunStateAudit, RunStatus, RuntimeEventSink, SANDBOX_AGENT_OPT_KEYS, SPAWN_ADMISSION_DECISION_TYPE, SPAWN_AGENT_SCHEMA, SYNTHESIS_NOTE_LABEL, SandboxBridge, SandboxBridgeOptions, SandboxError, SandboxHostToWorker, SandboxMethod, SandboxWorkerToHost, SchemaPair, SchemaSpec, SchemaValidationResult, ScopeSegment, ScriptRejected, ScriptRunner, ScrubNote, SecretMasker, SectionMatchMode, SectionPatternEntry, SemanticPassSummary, SemanticPassesSummary, Semaphore, SerializationHook, Settled, SettlementError, ShellPatternRules, ShellSegment, ShellVerdict, SinglePhaseAppend, SpanMinter, SpanRegistry, SpawnAdmissionValue, SpawnAgentParams, SpawnKey, SpawnLineage, SpawnLineageOpt, SpawnOrigin, SpawnRecord, Spend, Stage, type StandardJSONSchemaV1, type StandardSchemaV1, StatementCategoryRow, StatementColumnMap, StatementCoverage, StatementReconciliation, StatementRequestRow, StepIdentityInput, type StreamHooks, StructuredOutputTier, SupersededError, SuspendedAppend, SuspensionState, SynthesisCandidateFailure, TERMINAL_TELEMETRY_SCOPE, TOOL_NAME_PATTERN, type TaskClass, TaskDigest, TaskSpec, TelemetryScope, type TerminalEnvelope, TerminalOutcomeFacts, TerminalPatch, TerminalTelemetryScopes, TerminationAccount, TerminationAccountSnapshot, TerminationDeniedValue, TerminationDeniedWriter, TerminationInitValue, TerminationLimits, TerminationResource, ToolAuthority, type ToolBudgetSummary, ToolCalibrationExclusion, ToolCalibrationReport, ToolCalibrationRow, ToolCallRequest, ToolChoice, type ToolContext, ToolContextSeed, ToolContract, type ToolDef, type ToolEvents, type ToolExecutor, type ToolExecutorProvider, ToolInit, type ToolRisk, ToolRuntime, type ToolSource, type ToolSourceSession, ToolsOption, ToolsetAttestation, TranscriptSerializationHook, type TranscriptStore, TriggerClass, TtlState, Usage, UsageLimits, UsageSlice, VerifiedRecommendation, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, WakeBudgetBlock, WakeDigest, WakeTrigger, WireError, Workflow, WorkflowCallOpts, type WorkflowEvent, type WorkflowEventBody, WorkflowRegistry, accountSpendFromJournal, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, assertSafeRunId, atCompactionThreshold, attestToolset, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, childRostersFromJournal, citationTargetsValidator, citedValueValidator, claimCoverageOf, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compareRates, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, criticalPathFromJournal, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispatchProjectionReserveUsd, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, enforceToolsetAttestation, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidenceGradeValidator, evidencePreservedValidator, executeWorkflow, executionFactsOf, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, findContradictions, finishContract, foldLedger, foldTermination, formatCharacterValidator, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, headingStructureValidator, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, journalPricingSnapshot, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, logicalRunTelemetry, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, orchestratorAdmissionEstCostUsd, pairDraftClaims, pairRunFactClaims, parallelScope, parseModelRef, parseScopePath, persistedTerminalEnvelope, phiInitialOf, pilotAgentProfile, pipelineScope, planNodeScope, preflightEstimate, priceComponentsOf, priceEntryBilling, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualRequestsDelta, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleKey, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reconcileStatement, reduceAuditTrail, reduceCriticalPath, reduceDecisionChain, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, sectionCitationsValidator, sectionPatternCountValidator, selectStructuredOutputTier, selfTestFinishValidation, shouldCompact, snapshotQuotaRules, snapshotUsage, spawnDepthOf, spliceSections, statementFromRows, statementRowsFromDelimited, stripFencedBlocks, sumUsage, summarizeInstruction, summarizeOutput, synthesisCandidatesFromJournal, terminalEnvelopeOf, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolAuthority, toolCalibrationFromJournal, toolContract, toolContractHash, toolsetAuthorityHash, toolsetHash, ttlState, usageViolations, validateDetachedResolution, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateToolsetAttestation, validateUsageLimits, wordCountValidator, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|
package/dist/index.js
CHANGED
|
@@ -224,6 +224,27 @@ var JournalSealedError = class extends RulvarError {
|
|
|
224
224
|
}
|
|
225
225
|
};
|
|
226
226
|
/**
|
|
227
|
+
* A journal append was lost before the settle (RV3201): a persist
|
|
228
|
+
* inside the serialized append queue rejected, and the queue swallowed
|
|
229
|
+
* the rejection to keep later appends flowing, so the journal is now
|
|
230
|
+
* missing an entry the run believes it wrote. The first such failure
|
|
231
|
+
* latches inside the Replayer: every `flush()` from that moment
|
|
232
|
+
* rethrows it, and the engine settle path converts a would-be ok (or
|
|
233
|
+
* suspended) outcome into an error terminal, because an ok settle over
|
|
234
|
+
* a lost deterministic record would replay differently than the run
|
|
235
|
+
* executed. The latch is permanent for the segment; a resume constructs
|
|
236
|
+
* a fresh Replayer against whatever the store actually holds.
|
|
237
|
+
*/
|
|
238
|
+
var JournalIntegrityError = class extends RulvarError {
|
|
239
|
+
code = "journal_integrity";
|
|
240
|
+
constructor(message, opts) {
|
|
241
|
+
super(message, {
|
|
242
|
+
retryable: false,
|
|
243
|
+
...opts
|
|
244
|
+
});
|
|
245
|
+
}
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
227
248
|
* A declared fail-run policy engaged and closed the run as a failure
|
|
228
249
|
* (v1.35.0 review P2-1): `budget.atCap: 'fail-run'` after the journaled
|
|
229
250
|
* orchestrator cap decision, `guards.fallback: 'fail-run'` after the
|
|
@@ -4234,11 +4255,20 @@ function mcp(cfg) {
|
|
|
4234
4255
|
const visited = /* @__PURE__ */ new Set();
|
|
4235
4256
|
const startedAt = Date.now();
|
|
4236
4257
|
const discoveryMs = cfg.timeouts?.discoveryMs;
|
|
4237
|
-
const
|
|
4258
|
+
const listMs = cfg.timeouts?.listMs;
|
|
4238
4259
|
do {
|
|
4239
|
-
|
|
4260
|
+
const remainingMs = discoveryMs === void 0 ? void 0 : discoveryMs - (Date.now() - startedAt);
|
|
4261
|
+
if (remainingMs !== void 0 && remainingMs <= 0) throw new ConfigError(`mcp: tools/list of '${sourceIdOf(cfg)}' exceeded the discovery deadline (timeouts.discoveryMs ${discoveryMs ?? 0}) after ${pages} page(s)`);
|
|
4262
|
+
const pageTimeoutMs = remainingMs === void 0 ? listMs : listMs === void 0 ? remainingMs : Math.min(listMs, remainingMs);
|
|
4263
|
+
const listOptions = pageTimeoutMs === void 0 ? void 0 : { timeout: pageTimeoutMs };
|
|
4240
4264
|
if (cursor !== void 0) visited.add(cursor);
|
|
4241
|
-
|
|
4265
|
+
let page;
|
|
4266
|
+
try {
|
|
4267
|
+
page = await client.listTools(cursor === void 0 ? {} : { cursor }, listOptions);
|
|
4268
|
+
} catch (thrown) {
|
|
4269
|
+
if (thrown.code === -32001 && discoveryMs !== void 0 && remainingMs !== void 0 && pageTimeoutMs === remainingMs) throw new ConfigError(`mcp: tools/list of '${sourceIdOf(cfg)}' exceeded the discovery deadline (timeouts.discoveryMs ${discoveryMs}) after ${pages} page(s): the current page call was cut at the remaining budget`, { cause: thrown });
|
|
4270
|
+
throw thrown;
|
|
4271
|
+
}
|
|
4242
4272
|
pages += 1;
|
|
4243
4273
|
tools.push(...page.tools);
|
|
4244
4274
|
if (cfg.maxTools !== void 0 && tools.length > cfg.maxTools) throw new ConfigError(`mcp: tools/list of '${sourceIdOf(cfg)}' returned at least ${tools.length} wire tools, over the declared maxTools ${cfg.maxTools}; raise the cap or trim the server`);
|
|
@@ -4832,7 +4862,7 @@ function repositoryResearchToolset(options) {
|
|
|
4832
4862
|
}),
|
|
4833
4863
|
tool({
|
|
4834
4864
|
name: "record_evidence",
|
|
4835
|
-
description: "Record one evidence entry supporting a claim. The citation is VERIFIED at record time: the file must exist under the research root, lines must be a valid 1-based line or range inside it ('12' or '12-40'), and quote (when given) must appear verbatim in the file. Returns { recorded, duplicate, totalEvidence }.",
|
|
4865
|
+
description: "Record one evidence entry supporting a claim. The citation is VERIFIED at record time: the file must exist under the research root, lines must be a valid 1-based line or range inside it ('12' or '12-40'), and quote (when given) must appear verbatim inside the cited lines (or anywhere in the file when no lines are given). Returns { recorded, duplicate, totalEvidence }.",
|
|
4836
4866
|
parameters: RECORD_EVIDENCE_SCHEMA,
|
|
4837
4867
|
risk: "read",
|
|
4838
4868
|
execute: async (input) => {
|
|
@@ -4843,14 +4873,21 @@ function repositoryResearchToolset(options) {
|
|
|
4843
4873
|
const loaded = await loadTextFile(resolved.abs, resolved.rel);
|
|
4844
4874
|
if ("error" in loaded) return loaded;
|
|
4845
4875
|
const lines = splitLines(loaded.text);
|
|
4876
|
+
let citedRange;
|
|
4846
4877
|
if (params.lines !== void 0) {
|
|
4847
4878
|
const match = /^(\d+)(?:-(\d+))?$/u.exec(params.lines);
|
|
4848
4879
|
if (match === null) return { error: "lines must be '12' or '12-40' (1-based)" };
|
|
4849
4880
|
const from = Number(match[1]);
|
|
4850
4881
|
const to = match[2] === void 0 ? from : Number(match[2]);
|
|
4851
4882
|
if (from < 1 || to < from || to > lines.length) return { error: `lines '${params.lines}' is outside '${resolved.rel}' (${String(lines.length)} lines)` };
|
|
4883
|
+
citedRange = {
|
|
4884
|
+
from,
|
|
4885
|
+
to
|
|
4886
|
+
};
|
|
4887
|
+
}
|
|
4888
|
+
if (params.quote !== void 0) {
|
|
4889
|
+
if (!(citedRange === void 0 ? loaded.text : lines.slice(citedRange.from - 1, citedRange.to).join("\n")).includes(params.quote)) return { error: citedRange === void 0 ? `quote not found verbatim in '${resolved.rel}'; cite what the file actually says` : `quote not found verbatim inside lines '${params.lines ?? ""}' of '${resolved.rel}'; widen the range to cover the quote, or fix the citation to the lines that actually say it` };
|
|
4852
4890
|
}
|
|
4853
|
-
if (params.quote !== void 0 && !loaded.text.includes(params.quote)) return { error: `quote not found verbatim in '${resolved.rel}'; cite what the file actually says` };
|
|
4854
4891
|
const entry = {
|
|
4855
4892
|
claim: params.claim,
|
|
4856
4893
|
file: resolved.rel,
|
|
@@ -7686,6 +7723,13 @@ var Replayer = class {
|
|
|
7686
7723
|
strict;
|
|
7687
7724
|
invalidated = /* @__PURE__ */ new Set();
|
|
7688
7725
|
queue = Promise.resolve();
|
|
7726
|
+
/**
|
|
7727
|
+
* The first lost append of this segment (RV3201), latched by persist
|
|
7728
|
+
* so flush() can rethrow what the serialized queue swallowed. The
|
|
7729
|
+
* wrapper object keeps a rejection whose reason is literally
|
|
7730
|
+
* `undefined` distinguishable from "no failure".
|
|
7731
|
+
*/
|
|
7732
|
+
appendFailure;
|
|
7689
7733
|
/** True after the run's durable settle sealed the segment (RV1904). */
|
|
7690
7734
|
sealedInternal = false;
|
|
7691
7735
|
seq = 0;
|
|
@@ -7937,12 +7981,25 @@ var Replayer = class {
|
|
|
7937
7981
|
return this.entries;
|
|
7938
7982
|
}
|
|
7939
7983
|
/**
|
|
7940
|
-
* Resolves when every append enqueued so far has persisted
|
|
7941
|
-
*
|
|
7942
|
-
*
|
|
7984
|
+
* Resolves when every append enqueued so far has persisted, and
|
|
7985
|
+
* REJECTS typed when any append was lost (RV3201). Deterministic
|
|
7986
|
+
* shims journal fire-and-forget through the serialized queue, whose
|
|
7987
|
+
* chain swallows rejections to keep later appends flowing; without
|
|
7988
|
+
* this rethrow a failed persist was visible to nobody (the shim
|
|
7989
|
+
* dropped its promise, the chain caught the error, and this barrier
|
|
7990
|
+
* awaited the already-caught chain), so a run could settle ok over a
|
|
7991
|
+
* journal missing a record it believes it wrote. The first failure
|
|
7992
|
+
* latches permanently for the segment: every flush from that moment
|
|
7993
|
+
* rethrows it, the engine settle path converts a would-be ok into an
|
|
7994
|
+
* error terminal, and mid-run flush callers fail fast instead of
|
|
7995
|
+
* proceeding over a torn journal.
|
|
7943
7996
|
*/
|
|
7944
7997
|
async flush() {
|
|
7945
7998
|
await this.queue;
|
|
7999
|
+
if (this.appendFailure !== void 0) {
|
|
8000
|
+
const thrown = this.appendFailure.thrown;
|
|
8001
|
+
throw new JournalIntegrityError(`journal append lost: run '${this.runId}' failed to persist at least one entry (first failure: ${thrown instanceof Error ? thrown.message : String(thrown)}); the journal no longer matches what this segment executed, so it must not settle ok`, { cause: thrown });
|
|
8002
|
+
}
|
|
7946
8003
|
}
|
|
7947
8004
|
mint(scope, key, kind, status) {
|
|
7948
8005
|
const ordinalKey = ordinalMapKey(scope, 2, key);
|
|
@@ -7968,9 +8025,14 @@ var Replayer = class {
|
|
|
7968
8025
|
kind: entry.kind,
|
|
7969
8026
|
miss: "append"
|
|
7970
8027
|
} });
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
8028
|
+
try {
|
|
8029
|
+
const shapeIssues = validateEntryShape(entry);
|
|
8030
|
+
if (shapeIssues.length > 0) throw new ConfigError(`journal entry shape violation (kind '${entry.kind}'): ` + shapeIssues.map((i) => i.message).join("; "));
|
|
8031
|
+
await this.store.append(this.runId, entry, this.leaseOf?.() ?? this.lease);
|
|
8032
|
+
} catch (thrown) {
|
|
8033
|
+
this.appendFailure ??= { thrown };
|
|
8034
|
+
throw thrown;
|
|
8035
|
+
}
|
|
7974
8036
|
this.entries.push(entry);
|
|
7975
8037
|
if (entry.status === "suspended") this.foldInternal.registerSuspended(entry);
|
|
7976
8038
|
else if (entry.kind !== "resolution" && entry.kind !== "abandon") this.foldInternal.registerEntry(entry);
|
|
@@ -14741,7 +14803,10 @@ var RunBudget = class {
|
|
|
14741
14803
|
* hold, whenever `strictPricing` is armed. Refusals, each a typed
|
|
14742
14804
|
* ConfigError naming the model and the defect: no price row resolves
|
|
14743
14805
|
* (an unpriced model debits nothing, so every ceiling silently fails
|
|
14744
|
-
* to bound it); a
|
|
14806
|
+
* to bound it); a row missing its required input or output rate
|
|
14807
|
+
* (RV3204: the type requires both, and an untyped `{}` row used to
|
|
14808
|
+
* satisfy every conditional check and debit zero); a malformed row
|
|
14809
|
+
* (a non-finite or negative rate, a
|
|
14745
14810
|
* malformed long-context tier), because arithmetic over it disarms
|
|
14746
14811
|
* the very comparisons the mode exists to keep honest; and, only
|
|
14747
14812
|
* when `maxRatesAgeDays` is declared, a row whose `ratesVerifiedAt`
|
|
@@ -14761,6 +14826,7 @@ var RunBudget = class {
|
|
|
14761
14826
|
}
|
|
14762
14827
|
const row = this.pricingOf?.(servedBy);
|
|
14763
14828
|
if (row === void 0) throw new ConfigError(`strict pricing refused the dispatch: no price row resolves for '${servedBy}', so it would debit nothing against every ceiling; add the model to the price table or declare it in strictPricing.allowUnpriced`);
|
|
14829
|
+
for (const name of ["inputUsdPerMTok", "outputUsdPerMTok"]) if (typeof row[name] !== "number") throw new ConfigError(`strict pricing refused the dispatch: the price row for '${servedBy}' is missing its ${name} rate, so the row would debit nothing against every ceiling; carry both required rates on the row, or declare the model in strictPricing.allowUnpriced`);
|
|
14764
14830
|
const rates = [
|
|
14765
14831
|
["inputUsdPerMTok", row.inputUsdPerMTok],
|
|
14766
14832
|
["outputUsdPerMTok", row.outputUsdPerMTok],
|
|
@@ -18081,6 +18147,8 @@ function createCtx(internals, rootWorkflow) {
|
|
|
18081
18147
|
status: "ok",
|
|
18082
18148
|
spanId: state.spanId,
|
|
18083
18149
|
value: payload
|
|
18150
|
+
}).catch((thrown) => {
|
|
18151
|
+
if (thrown instanceof JournalSealedError) throw thrown;
|
|
18084
18152
|
});
|
|
18085
18153
|
return value;
|
|
18086
18154
|
}
|
|
@@ -23994,6 +24062,36 @@ function makeOrchestratorWorkflow(goal, opts) {
|
|
|
23994
24062
|
});
|
|
23995
24063
|
};
|
|
23996
24064
|
/**
|
|
24065
|
+
* The extension finish gate (RV3202, the 2026-08-11 experiment's
|
|
24066
|
+
* second confirmed blocker): the extension's quiescence answer used
|
|
24067
|
+
* to gate WAKES only, so a coordination model could call finish
|
|
24068
|
+
* over a still-running plan node and, without an acceptance policy,
|
|
24069
|
+
* settle a bare ok while the exit barrier cancelled the node. The
|
|
24070
|
+
* gate runs FIRST inside the coordination finish channel: a refusal
|
|
24071
|
+
* is the mechanics posture of the sectional resolve above (typed
|
|
24072
|
+
* feedback as the tool error result, nothing journals, no repair
|
|
24073
|
+
* spent, bounded by the turn budget), so the model cancels or waits
|
|
24074
|
+
* and calls finish again. Replay stays deterministic because the
|
|
24075
|
+
* contract requires the gate to be pure over journal-derived state:
|
|
24076
|
+
* a re-executed turn re-evaluates it over the rebuilt fold and
|
|
24077
|
+
* renders the same verdict. The forced-finalization and synthesis
|
|
24078
|
+
* invocations are NOT gated: forced finalization is the budget
|
|
24079
|
+
* emergency lane where refusing the reserved finish would strand
|
|
24080
|
+
* the reserve, and by the synthesis dispatch the coordination loop
|
|
24081
|
+
* has already settled.
|
|
24082
|
+
*/
|
|
24083
|
+
const withFinishGate = (inner) => {
|
|
24084
|
+
if (extension?.finishGate === void 0) return inner;
|
|
24085
|
+
return async (call) => {
|
|
24086
|
+
const verdict = extension.finishGate?.() ?? { ok: true };
|
|
24087
|
+
if (!verdict.ok) return {
|
|
24088
|
+
ok: false,
|
|
24089
|
+
feedback: { error: verdict.reason }
|
|
24090
|
+
};
|
|
24091
|
+
return inner === void 0 ? { ok: true } : inner(call);
|
|
24092
|
+
};
|
|
24093
|
+
};
|
|
24094
|
+
/**
|
|
23997
24095
|
* The frozen bundle descriptor (the v1.71 experiment review,
|
|
23998
24096
|
* P0.2): with a contract configured, the run durably records WHAT
|
|
23999
24097
|
* validates it. One decision entry per distinct contract hash, in
|
|
@@ -24039,13 +24137,15 @@ function makeOrchestratorWorkflow(goal, opts) {
|
|
|
24039
24137
|
},
|
|
24040
24138
|
[kTerminalTool]: {
|
|
24041
24139
|
name: FINISH_TOOL_NAME,
|
|
24042
|
-
...
|
|
24043
|
-
|
|
24044
|
-
|
|
24045
|
-
|
|
24046
|
-
|
|
24047
|
-
|
|
24048
|
-
|
|
24140
|
+
...(() => {
|
|
24141
|
+
const inner = validationSpec === void 0 || opts?.synthesis !== void 0 ? validationSpec?.draftPolicy !== void 0 && opts?.synthesis !== void 0 ? validateDraft : void 0 : validateFinish;
|
|
24142
|
+
const reserve = inner === void 0 || validationSpec?.repairTurnReserve === void 0 ? {} : { repairTurnReserve: validationSpec.repairTurnReserve };
|
|
24143
|
+
const gated = withFinishGate(inner);
|
|
24144
|
+
return gated === void 0 ? {} : {
|
|
24145
|
+
validate: gated,
|
|
24146
|
+
...reserve
|
|
24147
|
+
};
|
|
24148
|
+
})()
|
|
24049
24149
|
},
|
|
24050
24150
|
...(() => {
|
|
24051
24151
|
const priorCancelledRoot = internals.replayer.snapshot().filter((entry) => entry.kind === "agent" && entry.scope === callingState.scope && entry.status === "cancelled" && entry.checkpointRef !== void 0).at(-1);
|
|
@@ -26669,6 +26769,14 @@ function preflightEstimate(input) {
|
|
|
26669
26769
|
code: "reserve-line-headroom",
|
|
26670
26770
|
message: `the admitted wave's steady state sits ${reserveLineHeadroomUsd.toFixed(4)} USD under the reserve line ${reserveLineUsd.toFixed(4)} USD (the ceiling minus the synthesis reserve), less than ${String(headroomTurns)} coordination turn floors of headroom (${liveRootExposureTermUsd.toFixed(4)} USD each): child spend past the declared estimates eats that headroom, the coordination loop is then refused at the line, and the run settles partial with the synthesis redeemed from its reserve (RV2101); size the wave below the line or raise the ceiling to keep coordinating past it`
|
|
26671
26771
|
});
|
|
26772
|
+
const ceilingHeadroomUsd = ceilingUsd === void 0 || requiredMinimumCeilingUsd === void 0 ? void 0 : ceilingUsd - requiredMinimumCeilingUsd;
|
|
26773
|
+
const ceilingHeadroomShare = ceilingHeadroomUsd === void 0 || ceilingUsd === void 0 || ceilingUsd <= 0 ? void 0 : ceilingHeadroomUsd / ceilingUsd;
|
|
26774
|
+
const minCeilingHeadroomShare = input.orchestrator?.minCeilingHeadroomShare ?? 0;
|
|
26775
|
+
if (ceilingHeadroomShare !== void 0 && minCeilingHeadroomShare > 0 && ceilingHeadroomShare < minCeilingHeadroomShare) say({
|
|
26776
|
+
severity: "warning",
|
|
26777
|
+
code: "ceiling-headroom-thin",
|
|
26778
|
+
message: `the ceiling headroom is ${(ceilingHeadroomShare * 100).toFixed(2)} percent of the ceiling (${(ceilingHeadroomUsd ?? 0).toFixed(4)} USD over the required minimum ${(requiredMinimumCeilingUsd ?? 0).toFixed(4)} USD), below the declared ${(minCeilingHeadroomShare * 100).toFixed(2)} percent floor: a small pricing or context drift refuses the whole wave at admission; raise the ceiling or slim the wave`
|
|
26779
|
+
});
|
|
26672
26780
|
{
|
|
26673
26781
|
const judgeEstUsd = input.orchestrator?.claimConsistency?.judge?.estCost;
|
|
26674
26782
|
if (judgeEstUsd !== void 0 && effectiveCapUsd !== void 0 && synthesisHoldUsd > 0) {
|
|
@@ -26952,6 +27060,8 @@ function preflightEstimate(input) {
|
|
|
26952
27060
|
reservedForFinalizationUsd,
|
|
26953
27061
|
synthesisReserveUsd: synthesisHoldUsd,
|
|
26954
27062
|
...requiredMinimumCeilingUsd === void 0 ? {} : { requiredMinimumCeilingUsd },
|
|
27063
|
+
...ceilingHeadroomUsd === void 0 ? {} : { ceilingHeadroomUsd },
|
|
27064
|
+
...ceilingHeadroomShare === void 0 ? {} : { ceilingHeadroomShare },
|
|
26955
27065
|
...liveRootExposureTermUsd > 0 ? { liveRootExposureTermUsd } : {},
|
|
26956
27066
|
...reserveLineUsd === void 0 ? {} : { reserveLineUsd },
|
|
26957
27067
|
...reserveLineHeadroomUsd === void 0 ? {} : { reserveLineHeadroomUsd },
|
|
@@ -27488,6 +27598,10 @@ function parseDeadlineAt(value) {
|
|
|
27488
27598
|
if (month < 1 || month > 12 || day < 1 || day > daysInMonth) refuse();
|
|
27489
27599
|
return parsed;
|
|
27490
27600
|
}
|
|
27601
|
+
/** Validates a declared config fingerprint (RV3210): a non-empty string of at most 512 chars. */
|
|
27602
|
+
function requireConfigFingerprint(value, site) {
|
|
27603
|
+
if (typeof value !== "string" || value.length === 0 || value.length > 512) throw new ConfigError(`${site} must be a non-empty string of at most 512 characters; got ` + (typeof value === "string" ? `${String(value.length)} characters` : JSON.stringify(value)));
|
|
27604
|
+
}
|
|
27491
27605
|
/** Content hash of an in-process workflow body (run-to-definition binding). */
|
|
27492
27606
|
function hashWorkflowBody(wf) {
|
|
27493
27607
|
return createHash("sha256").update(wf.body.toString(), "utf8").digest("hex");
|
|
@@ -27794,6 +27908,7 @@ function createEngine(options) {
|
|
|
27794
27908
|
if (wf.kind !== "workflow" && wf.kind !== "compiled-workflow") throw new ConfigError("engine.run accepts in-process Workflow values or compileScript CompiledWorkflow values");
|
|
27795
27909
|
if (opts?.budgetUsd !== void 0) requireNonNegativeNumber(opts.budgetUsd, "RunOptions.budgetUsd");
|
|
27796
27910
|
if (opts?.maxInFlightExposureUsd !== void 0) requireNonNegativeNumber(opts.maxInFlightExposureUsd, "RunOptions.maxInFlightExposureUsd");
|
|
27911
|
+
if (opts?.configFingerprint !== void 0) requireConfigFingerprint(opts.configFingerprint, "RunOptions.configFingerprint");
|
|
27797
27912
|
if (opts?.clampTurnToExposure !== void 0 && typeof opts.clampTurnToExposure !== "boolean") throw new ConfigError("RunOptions.clampTurnToExposure must be a boolean; got " + JSON.stringify(opts.clampTurnToExposure));
|
|
27798
27913
|
if (opts?.strictPricing !== void 0 && typeof opts.strictPricing !== "boolean" && (typeof opts.strictPricing !== "object" || opts.strictPricing === null || Array.isArray(opts.strictPricing))) throw new ConfigError("RunOptions.strictPricing must be a boolean or an options object; got " + JSON.stringify(opts.strictPricing));
|
|
27799
27914
|
if (opts?.limits !== void 0) validateUsageLimits(opts.limits, "RunOptions.limits");
|
|
@@ -27829,6 +27944,7 @@ function createEngine(options) {
|
|
|
27829
27944
|
...opts.strictPricing.maxRatesAgeDays === void 0 ? {} : { maxRatesAgeDays: opts.strictPricing.maxRatesAgeDays },
|
|
27830
27945
|
...opts.strictPricing.allowUnpriced === void 0 ? {} : { allowUnpriced: [...opts.strictPricing.allowUnpriced] }
|
|
27831
27946
|
};
|
|
27947
|
+
const configFingerprint = opts?.configFingerprint ?? resumeCtx?.configFingerprint;
|
|
27832
27948
|
const makeBudget = () => new RunBudget({
|
|
27833
27949
|
...ceilingUsd === void 0 ? {} : { ceilingUsd },
|
|
27834
27950
|
...exposureCapUsd === void 0 ? {} : { maxInFlightExposureUsd: exposureCapUsd },
|
|
@@ -28009,6 +28125,7 @@ function createEngine(options) {
|
|
|
28009
28125
|
...ceilingUsd === void 0 ? {} : { budgetUsd: ceilingUsd },
|
|
28010
28126
|
...exposureCapUsd === void 0 ? {} : { maxInFlightExposureUsd: exposureCapUsd },
|
|
28011
28127
|
...strictPricing === void 0 ? {} : { strictPricing },
|
|
28128
|
+
...configFingerprint === void 0 ? {} : { configFingerprint },
|
|
28012
28129
|
...argsBinding.argsProvided === void 0 ? {} : { argsProvided: argsBinding.argsProvided },
|
|
28013
28130
|
...argsBinding.argsHash === void 0 ? {} : { argsHash: argsBinding.argsHash },
|
|
28014
28131
|
...genesis === void 0 ? {} : { genesis },
|
|
@@ -28069,6 +28186,8 @@ function createEngine(options) {
|
|
|
28069
28186
|
let value;
|
|
28070
28187
|
let wireError;
|
|
28071
28188
|
let pending = [];
|
|
28189
|
+
/** The settle-barrier flush verdict (RV3201); set in the finally below. */
|
|
28190
|
+
let journalIntegrityFailure;
|
|
28072
28191
|
if (compiled !== void 0 && resumeCtx?.strict !== true) await transcripts.put(workflowSourceRef(runId), new TextEncoder().encode(compiled.source), segmentLease.current);
|
|
28073
28192
|
if (resumeCtx?.budgetOverride !== void 0 && resumeCtx.strict !== true) {
|
|
28074
28193
|
const override = resumeCtx.budgetOverride;
|
|
@@ -28185,7 +28304,23 @@ function createEngine(options) {
|
|
|
28185
28304
|
await Promise.allSettled([...internals.liveAgentCalls]);
|
|
28186
28305
|
}
|
|
28187
28306
|
external.close();
|
|
28188
|
-
await replayer.flush().catch(() =>
|
|
28307
|
+
await replayer.flush().catch((thrown) => {
|
|
28308
|
+
journalIntegrityFailure = thrown instanceof JournalIntegrityError ? thrown : new JournalIntegrityError(`journal flush failed at settle for run '${internals.runId}': ` + (thrown instanceof Error ? thrown.message : String(thrown)), { cause: thrown });
|
|
28309
|
+
});
|
|
28310
|
+
}
|
|
28311
|
+
if (journalIntegrityFailure !== void 0) {
|
|
28312
|
+
bus.emit({
|
|
28313
|
+
type: "log",
|
|
28314
|
+
level: "error",
|
|
28315
|
+
msg: journalIntegrityFailure.message,
|
|
28316
|
+
data: { code: journalIntegrityFailure.code }
|
|
28317
|
+
}, rootSpanId);
|
|
28318
|
+
if (status === "ok" || status === "suspended") {
|
|
28319
|
+
status = "error";
|
|
28320
|
+
value = void 0;
|
|
28321
|
+
pending = [];
|
|
28322
|
+
wireError = journalIntegrityFailure.toWire();
|
|
28323
|
+
}
|
|
28189
28324
|
}
|
|
28190
28325
|
const ledger = replayer.ledger();
|
|
28191
28326
|
const pinned = journalPricingSnapshot(replayer.snapshot());
|
|
@@ -28390,6 +28525,20 @@ function createEngine(options) {
|
|
|
28390
28525
|
}
|
|
28391
28526
|
bound = supplied;
|
|
28392
28527
|
}
|
|
28528
|
+
{
|
|
28529
|
+
const supplied = resumeOptions?.configFingerprint;
|
|
28530
|
+
if (supplied !== void 0) requireConfigFingerprint(supplied, "ResumeOptions.configFingerprint");
|
|
28531
|
+
const recorded = typeof meta?.configFingerprint === "string" ? meta.configFingerprint : void 0;
|
|
28532
|
+
if (supplied !== void 0 && recorded !== void 0 && supplied !== recorded) throw new ConfigError(`resume: the supplied configFingerprint does not match the one run '${runId}' recorded at genesis; the config the workflow closes over changed, and the host declared exactly this check. Resume under the original config, or drop the option to proceed under the loud warning`);
|
|
28533
|
+
if (supplied !== void 0 && recorded === void 0) process.emitWarning(`resume: a configFingerprint was supplied but run '${runId}' never recorded one; the assertion cannot be verified (absence means NOT RECORDED)`, {
|
|
28534
|
+
code: "RULVAR_RESUME_FINGERPRINT_UNRECORDED",
|
|
28535
|
+
type: "RulvarWarning"
|
|
28536
|
+
});
|
|
28537
|
+
if (supplied === void 0 && recorded !== void 0) process.emitWarning(`resume: run '${runId}' recorded a configFingerprint at genesis and this resume did not supply one; the declared config identity goes unchecked`, {
|
|
28538
|
+
code: "RULVAR_RESUME_FINGERPRINT_UNCHECKED",
|
|
28539
|
+
type: "RulvarWarning"
|
|
28540
|
+
});
|
|
28541
|
+
}
|
|
28393
28542
|
const priorEntries = (await journal.load(runId)).map((entry) => normalizeEntry(entry));
|
|
28394
28543
|
scanJournalCompatibility(runId, priorEntries, buildDeriverRegistry(options.extraDerivers));
|
|
28395
28544
|
if (priorEntries.some((entry) => entry.usageSemantics === void 0 && (entry.servedBy?.startsWith("openai:") === true && (entry.usage?.cacheWriteTokens ?? 0) > 0 || (entry.usageByModel?.some((slice) => slice.servedBy.startsWith("openai:") && slice.usage.cacheWriteTokens > 0) ?? false)))) process.emitWarning(`resume: run '${runId}' contains OpenAI cache-write usage recorded without a usage-semantics stamp. Entries written by rulvar v1.19.0 double-counted cache writes into inputTokens, so their recorded cost and budget debits are OVERSTATED; unstamped entries from v1.20.0 are correct. Resuming keeps the recorded debits. Audit procedure: https://docs.rulvar.com/guide/providers#openai-legacy-cache-journals`, {
|
|
@@ -28416,6 +28565,7 @@ function createEngine(options) {
|
|
|
28416
28565
|
...typeof meta?.argsHash === "string" ? { argsHash: meta.argsHash } : {},
|
|
28417
28566
|
...typeof meta?.genesis === "string" ? { genesis: meta.genesis } : {},
|
|
28418
28567
|
...typeof meta?.execKeyDerivation === "number" ? { execKeyDerivation: meta.execKeyDerivation } : {},
|
|
28568
|
+
...typeof meta?.configFingerprint === "string" ? { configFingerprint: meta.configFingerprint } : {},
|
|
28419
28569
|
previewResolve
|
|
28420
28570
|
});
|
|
28421
28571
|
})();
|
|
@@ -28814,6 +28964,8 @@ function createSandboxBridge(ctx, options) {
|
|
|
28814
28964
|
status: "ok",
|
|
28815
28965
|
spanId: state.spanId,
|
|
28816
28966
|
value: payload
|
|
28967
|
+
}).catch((thrown) => {
|
|
28968
|
+
if (thrown instanceof JournalSealedError) throw thrown;
|
|
28817
28969
|
});
|
|
28818
28970
|
};
|
|
28819
28971
|
return {
|
|
@@ -28884,4 +29036,4 @@ function createSandboxBridge(ctx, options) {
|
|
|
28884
29036
|
};
|
|
28885
29037
|
}
|
|
28886
29038
|
//#endregion
|
|
28887
|
-
export { AWAIT_SCHEMA, AdmissionController, AdmissionRejectedError, AgentCallError, BUDGET_ABORT_REASON, BudgetExhaustedError, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_JUDGE_LABEL, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, ConfigError, DECISION_CHAIN_KINDS, DEFAULT_ANCHOR_PATTERN, DEFAULT_ARTIFACT_PATTERN, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_CITATION_SAMPLE, DEFAULT_CLAIM_JUDGE_MAX_TURNS, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_CALLS_PER_ENTRY, DEFAULT_EVIDENCE_GRADE_PHRASES, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_EVIDENCE_OVERHEAD_CALLS, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_CLAIM_PAIRS, DEFAULT_MAX_CONTRADICTIONS, DEFAULT_MAX_DEPTH, DEFAULT_MAX_EXCERPT_CHARS, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PAIR_EXCERPT_CHARS, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_POOL_PER_PAIR, DEFAULT_MAX_QUOTA_DENIALS, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_RUN_FACT_PAIRS, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DedupIndex, DeterminismError, EMIT_RESULT_TOOL, EMPTY_AUTHORITY_HASH, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EXPOSURE_WAIT_SWEEP_MS, EscalationDecisionAbortedError, EventBus, ExternalRegistry, FINALIZE_SYNTHESIS_INSTRUCTION, FINAL_COMPOSITION_LABEL, FINISH_SCHEMA, FINISH_SECTIONAL_SCHEMA, FINISH_TOOL_NAME, FUTURE_RATES_TOLERANCE_MS, FailRunError, FileModelKnowledgeStore, FileTranscriptStore, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, GET_SETTLED_CHILD_RESULTS_SCHEMA, GET_SETTLED_CHILD_RESULTS_TOOL_NAME, GitWorktreeProvider, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IN_FLIGHT_EXPOSURE_REFUSAL_PREFIX, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, InvalidResolutionError, JOURNAL_ENVELOPE_MARKER, JournalCompatibilityError, JournalMatcher, JournalMissError, JournalOrderViolation, JournalSealedError, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, KeyedLimiter, KnowledgeCasError, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LeaseHeldError, LineageIndex, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_CRITICAL_UNCOVERED, MAX_DEPTH_CEILING, MAX_RUN_FACTS_SHEET_CHARS, MAX_RUN_ID_LENGTH, MAX_TIMER_DELAY_MS, ModelRetry, NoProgressDetector, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OrchestratorCapConfigError, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, PlanInvariantError, QUOTA_WINDOW_MS, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_FACTS_ANCHOR, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, ReplayPlanHashMismatch, Replayer, ResolutionArbiter, ResolutionFold, RulvarError, RunBudget, SANDBOX_AGENT_OPT_KEYS, SPAWN_ADMISSION_DECISION_TYPE, SPAWN_AGENT_SCHEMA, SYNTHESIS_NOTE_LABEL, SandboxError, ScriptRejected, Semaphore, SettlementError, SpanRegistry, SupersededError, TERMINAL_TELEMETRY_SCOPE, TOOL_NAME_PATTERN, TerminationAccount, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, accountSpendFromJournal, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, assertSafeRunId, atCompactionThreshold, attestToolset, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, childRostersFromJournal, citationTargetsValidator, citedValueValidator, claimCoverageOf, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compareRates, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, criticalPathFromJournal, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispatchProjectionReserveUsd, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, enforceToolsetAttestation, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidenceGradeValidator, evidencePreservedValidator, executeWorkflow, executionFactsOf, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, findContradictions, finishContract, foldLedger, foldTermination, formatCharacterValidator, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, headingStructureValidator, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, journalPricingSnapshot, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, logicalRunTelemetry, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, orchestratorAdmissionEstCostUsd, pairDraftClaims, pairRunFactClaims, parallelScope, parseModelRef, parseScopePath, persistedTerminalEnvelope, phiInitialOf, pilotAgentProfile, pipelineScope, planNodeScope, preflightEstimate, priceComponentsOf, priceEntryBilling, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualRequestsDelta, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleKey, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reconcileStatement, reduceAuditTrail, reduceCriticalPath, reduceDecisionChain, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, sectionCitationsValidator, sectionPatternCountValidator, selectStructuredOutputTier, selfTestFinishValidation, shouldCompact, snapshotQuotaRules, snapshotUsage, spawnDepthOf, spliceSections, statementFromRows, statementRowsFromDelimited, stripFencedBlocks, sumUsage, summarizeInstruction, summarizeOutput, synthesisCandidatesFromJournal, terminalEnvelopeOf, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolAuthority, toolCalibrationFromJournal, toolContract, toolContractHash, toolsetAuthorityHash, toolsetHash, ttlState, usageViolations, validateDetachedResolution, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateToolsetAttestation, validateUsageLimits, wordCountValidator, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|
|
29039
|
+
export { AWAIT_SCHEMA, AdmissionController, AdmissionRejectedError, AgentCallError, BUDGET_ABORT_REASON, BudgetExhaustedError, CANCEL_AGENT_SCHEMA, CHECKPOINT_FORMAT_V1, CLAIM_JUDGE_LABEL, CLAIM_STATEMENT_MAX_CHARS, CLAIM_TTL_DAYS, COMPACTION_SUMMARY_PREFIX, CURRENT_HASH_VERSION, ConfigError, DECISION_CHAIN_KINDS, DEFAULT_ANCHOR_PATTERN, DEFAULT_ARTIFACT_PATTERN, DEFAULT_CHILD_BUDGET_FRACTION, DEFAULT_CHILD_RESULT_PAGE_CHARS, DEFAULT_CITATION_PATTERN, DEFAULT_CITATION_SAMPLE, DEFAULT_CLAIM_JUDGE_MAX_TURNS, DEFAULT_COMPACTION_THRESHOLD, DEFAULT_ESCALATION_LIMITS, DEFAULT_EVIDENCE_CALLS_PER_ENTRY, DEFAULT_EVIDENCE_GRADE_PHRASES, DEFAULT_EVIDENCE_MIN_SHARE, DEFAULT_EVIDENCE_OVERHEAD_CALLS, DEFAULT_FINISH_MAX_REPAIRS, DEFAULT_FLAT_RESERVE_USD, DEFAULT_MAX_CHILDREN_PER_NODE, DEFAULT_MAX_CLAIM_PAIRS, DEFAULT_MAX_CONTRADICTIONS, DEFAULT_MAX_DEPTH, DEFAULT_MAX_EXCERPT_CHARS, DEFAULT_MAX_OSCILLATIONS_PER_KEY, DEFAULT_MAX_PAIR_EXCERPT_CHARS, DEFAULT_MAX_PINNED_WORKTREES, DEFAULT_MAX_POOL_PER_PAIR, DEFAULT_MAX_QUOTA_DENIALS, DEFAULT_MAX_REVISIONS_PER_RUN, DEFAULT_MAX_RUN_FACT_PAIRS, DEFAULT_MAX_TOTAL_SPAWNS, DEFAULT_MAX_TURNS, DEFAULT_MODEL_RETRY_ATTEMPTS, DEFAULT_NO_PROGRESS_TURNS, DEFAULT_PER_RUN_CONCURRENCY, DEFAULT_RETRY_POLICY, DEFAULT_STREAM_IDLE_TIMEOUT_MS, DEFAULT_SYNTHESIS_MAX_TURNS, DEFAULT_SYNTHESIS_NOTE_MAX_TURNS, DedupIndex, DeterminismError, EMIT_RESULT_TOOL, EMPTY_AUTHORITY_HASH, EMPTY_SCHEMA_HASH, EMPTY_TOOLSET_HASH, ESCALATE_TOOL_NAME, ESCALATION_REPORT_SCHEMA, ESCALATION_REQUEST_SCHEMA, EVENT_SEGMENT_STRIDE, EXPOSURE_WAIT_SWEEP_MS, EscalationDecisionAbortedError, EventBus, ExternalRegistry, FINALIZE_SYNTHESIS_INSTRUCTION, FINAL_COMPOSITION_LABEL, FINISH_SCHEMA, FINISH_SECTIONAL_SCHEMA, FINISH_TOOL_NAME, FUTURE_RATES_TOLERANCE_MS, FailRunError, FileModelKnowledgeStore, FileTranscriptStore, GET_CHILD_RESULT_SCHEMA, GET_CHILD_RESULT_TOOL_NAME, GET_SETTLED_CHILD_RESULTS_SCHEMA, GET_SETTLED_CHILD_RESULTS_TOOL_NAME, GitWorktreeProvider, IMPLEMENTATION_PROFILE_LIMITS, INBOX_PROPOSAL_TTL_DAYS, IN_FLIGHT_EXPOSURE_REFUSAL_PREFIX, InMemoryStore, InMemoryTranscriptStore, InProcessRunner, InvalidResolutionError, JOURNAL_ENVELOPE_MARKER, JournalCompatibilityError, JournalIntegrityError, JournalMatcher, JournalMissError, JournalOrderViolation, JournalSealedError, JsonlFileStore, KB_ACTIVE_CLAIMS_CAP, KB_CARD_RENDER_BUDGET_CHARS, KeyedLimiter, KnowledgeCasError, LARGE_VALUE_WARN_BYTES, LEGACY_LTID_PREFIX, LEGACY_SIGNATURE_INPUTS, LINEAGE_SIG_VERSION, LeaseHeldError, LineageIndex, MASKED_SECRET, MAX_CHILD_RESULT_PAGE_CHARS, MAX_CRITICAL_UNCOVERED, MAX_DEPTH_CEILING, MAX_RUN_FACTS_SHEET_CHARS, MAX_RUN_ID_LENGTH, MAX_TIMER_DELAY_MS, ModelRetry, NoProgressDetector, NonSerializableValueError, ORCHESTRATE_WORKFLOW_NAME, OrchestratorCapConfigError, PARALLEL_AGENTS_SCHEMA, PROGRESS_REPORT_TOOL_NAME, ParallelSiteCounter, PlanInvariantError, QUOTA_WINDOW_MS, READ_CHILD_ARTIFACT_SCHEMA, READ_CHILD_ARTIFACT_TOOL_NAME, RESEARCH_PROFILE_LIMITS, REVIEW_PROFILE_LIMITS, ROLE_EFFORT_DEFAULTS, ROOT_ACCOUNT, ROOT_SCOPE, RUN_FACTS_ANCHOR, RUN_PROFILES, RUN_SETTLE_DECISION_TYPE, ReplayPlanHashMismatch, Replayer, ResolutionArbiter, ResolutionFold, RulvarError, RunBudget, SANDBOX_AGENT_OPT_KEYS, SPAWN_ADMISSION_DECISION_TYPE, SPAWN_AGENT_SCHEMA, SYNTHESIS_NOTE_LABEL, SandboxError, ScriptRejected, Semaphore, SettlementError, SpanRegistry, SupersededError, TERMINAL_TELEMETRY_SCOPE, TOOL_NAME_PATTERN, TerminationAccount, WAIT_FOR_EVENTS_SCHEMA, WAIT_FOR_EVENTS_TOOL_NAME, WAKE_SUMMARY_RENDER_BUDGET_CHARS, accountSpendFromJournal, admissionReserveUsd, affordableOutputTokens, agentErrorFromWire, agentErrorToWire, agentResultWire, agentScope, applyClaimOps, applyStructuredOutputTier, approachSigCoarse, approachSigOf, archiveDeprecatedModelOps, assertFencedWrites, assertSafeRunId, atCompactionThreshold, attestToolset, auditRun, auditRuns, buildAbandonFold, buildAdapterRegistry, buildCostReport, buildDeriverRegistry, buildOrchestratorTools, buildTerminationInitValue, buildToolContext, canRideLoopTurn, canonicalIsolationTag, canonicalizeLadder, canonicalizeSchema, capIssues, capsHashOf, checkFloors, checkpointRefFor, childCoveragePrefix, childRostersFromJournal, citationTargetsValidator, citedValueValidator, claimCoverageOf, claimExpired, claimExpiry, claimIssues, claimOpIssues, classifyAgentError, classifyAttemptOutcome, collectDeclaredLadders, compactMessages, compareRates, compilePermissionChain, compilePermissionPreset, compileSecretMasker, compileVerifiedLayer, constantTimeEqual, costReportFromJournal, countsAgainstLimit, createCanonicalIdMinter, createCtx, createEngine, createEnvelopeEncryption, createSandboxBridge, criticalPathFromJournal, currentOnlyKeyRing, decodeCheckpoint, dedupeRepeatedClaims, defineWorkflow, deriveContentKey, deriverV1, deriverV2, digestOf, dispatchProjectionReserveUsd, dispositionHook, emptyDigestBlocks, emptyToolset, encodeCheckpoint, enforceToolsetAttestation, entryUsageSlices, escalateTool, evaluatePermission, evaluateReuse, evidenceGradeValidator, evidencePreservedValidator, executeWorkflow, executionFactsOf, exhaustionCodeOf, extractCandidate, failoverTriggerOf, fallbackTriggerOf, filterClaimsForRun, finalizeFires, findContradictions, finishContract, foldLedger, foldTermination, formatCharacterValidator, formatRePrompt, formatScopePath, hasFencedWrites, hasMetaLookup, hashRunArgs, hashRunOutput, hashWorkflowBody, hashWorkflowSource, headingStructureValidator, identityJcs, implementationAgentProfile, invoiceFromJournal, isEscalated, isSchemaPairSpec, isStandardSchemaSpec, isStrictCompatibleSchema, journalPricingSnapshot, kMaxOf, knowledgeHash, ladderLengthOf, ladderRungChoice, lastRunSettle, latestProgressReport, lexShellCommand, liftRetainedParts, lineageWeightOf, localKeyProvider, logicalRunTelemetry, makeOrchestratorWorkflow, maskSecrets, maskSecretsDeep, maskSecretsJson, matchArgvPattern, matchShellCommand, mcp, memoryQuotaLimiter, mergeQuotaDenial, mergeUsageLimits, metaMatchesFilter, minMatchesValidator, modelEpochOf, modelKnowledgeCard, modelSpecIdentity, needsSeparateExtract, nextFailover, nodeLinkKey, normalizeApproachTag, normalizeEntry, normalizeFallbacks, orchestrate, orchestratorAdmissionEstCostUsd, pairDraftClaims, pairRunFactClaims, parallelScope, parseModelRef, parseScopePath, persistedTerminalEnvelope, phiInitialOf, pilotAgentProfile, pipelineScope, planNodeScope, preflightEstimate, priceComponentsOf, priceEntryBilling, priceEntryUsage, priceUsdOf, profileCard, profileRegistrySnapshotHash, progressReportTool, projectHistory, projectIdentity, projectToJsonSchema, proposalStatement, providerOf, quotaActualRequestsDelta, quotaActualTokens, quotaEstimateTokens, quotaRuleAdmission, quotaRuleKey, quotaRuleMatches, readRunMeta, readTerminationInit, reconcileRunMeta, reconcileStatement, reduceAuditTrail, reduceCriticalPath, reduceDecisionChain, reduceInvocationTable, registryKeyRing, remeasureQueue, replayDisposition, repositoryResearchToolset, requiredFieldsValidator, requiredSectionsValidator, researchAgentProfile, resolveModelInvocation, resolvePricing, resolveToolset, retryClassOf, retryDelayMs, reviewAgentProfile, roleConfiguredInRouting, roundOneDisposition, runAgent, runProfile, sanitizeTerminalText, sanitizeTokenCount, sanitizeUsage, sanitizeUsageDelta, scanJournalCompatibility, schemaHash, schemaHashOfSpec, sectionCitationsValidator, sectionPatternCountValidator, selectStructuredOutputTier, selfTestFinishValidation, shouldCompact, snapshotQuotaRules, snapshotUsage, spawnDepthOf, spliceSections, statementFromRows, statementRowsFromDelimited, stripFencedBlocks, sumUsage, summarizeInstruction, summarizeOutput, synthesisCandidatesFromJournal, terminalEnvelopeOf, terminationConfigDrift, tierWithinCaps, toApprovalDecision, toJournalValue, tool, toolAuthority, toolCalibrationFromJournal, toolContract, toolContractHash, toolsetAuthorityHash, toolsetHash, ttlState, usageViolations, validateDetachedResolution, validateEditorialCommit, validateEngineQuotaConfig, validateEntryShape, validateEscalationLimits, validateEscalationReport, validateQuotaRules, validateRetryPolicy, validateSchemaSpec, validateTerminationLimits, validateToolsetAttestation, validateUsageLimits, wordCountValidator, workflowScope, workflowSourceRef, wrapJournalStore, wrapTranscriptStore };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.236.0",
|
|
4
4
|
"description": "Rulvar core: L0 contracts, journal kernel, ctx primitives, agent runtime, model router, tool system, dynamic orchestrator, InMemory and JSONL stores, event stream.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|