@smartergpt/lexrunner 2.0.2 → 2.1.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.
Files changed (38) hide show
  1. package/BRAND.md +14 -0
  2. package/CHANGELOG.md +21 -0
  3. package/GOVERNANCE.md +18 -0
  4. package/LICENSE.md +201 -110
  5. package/NOTICE.md +12 -1
  6. package/README.md +12 -6
  7. package/dist/{api-QBPBKYOC.js → api-UIWVFU7M.js} +1 -1
  8. package/dist/{audit-SKMMC2U4.js → audit-HVB2HJPU.js} +2 -2
  9. package/dist/{autopilot-3OHEUTHD.js → autopilot-JWIOXBCZ.js} +2 -2
  10. package/dist/{chunk-6PZDSWCG.js → chunk-37UC53OG.js} +2 -2
  11. package/dist/{chunk-V3BU2VDU.js → chunk-PDDULIDL.js} +13 -1
  12. package/dist/{chunk-ARDKZW7F.js → chunk-SHSL643G.js} +2 -2
  13. package/dist/cli.cjs +979 -328
  14. package/dist/cli.d.ts +161 -7
  15. package/dist/cli.js +803 -171
  16. package/dist/{commandValidator-LVEMJTZP.js → commandValidator-XFVNCZXX.js} +1 -1
  17. package/dist/{constraints-2ZK5FJFA.js → constraints-LE2MW5NS.js} +1 -1
  18. package/dist/errors/index.js +1 -1
  19. package/dist/frames/index.js +1 -1
  20. package/dist/{gateMapping-R3RJYKMS.js → gateMapping-V4DTL5WD.js} +1 -1
  21. package/dist/hooks/events.js +1 -1
  22. package/dist/{jsonEnvelope-K2U5CWKU.js → jsonEnvelope-MXJM5ZQH.js} +1 -1
  23. package/dist/{mergeTreeSimulator-QCFSOU25.js → mergeTreeSimulator-GWZ77NF2.js} +1 -1
  24. package/dist/package-schemas/behavior-rule.js +1 -1
  25. package/dist/package-schemas/execution-plan-v1.js +1 -1
  26. package/dist/package-schemas/gates.js +1 -1
  27. package/dist/package-schemas/runner-scope.js +1 -1
  28. package/dist/package-schemas/runner-stack.js +1 -1
  29. package/dist/{planDiff-IHLFNZUT.js → planDiff-4D3AERAW.js} +1 -1
  30. package/dist/{planHistory-GLRI356L.js → planHistory-VPV4WDPW.js} +1 -1
  31. package/dist/{planReview-UUMCGZJ6.js → planReview-FV6INFLQ.js} +1 -1
  32. package/dist/{planViewer-TRSQVMH4.js → planViewer-WOV6A2HZ.js} +1 -1
  33. package/dist/{sarif-2C6RKOUX.js → sarif-QXVE3LYD.js} +1 -1
  34. package/dist/sdk/index.js +1 -1
  35. package/dist/{security-OE4VLUFK.js → security-W7TOUXSB.js} +1 -1
  36. package/dist/{signing-KLZYZZMP.js → signing-WGVPHJGG.js} +1 -1
  37. package/dist/{verify-3UVMA62I.js → verify-Y34CJAKB.js} +1 -1
  38. package/package.json +6 -4
package/dist/cli.d.ts CHANGED
@@ -9367,7 +9367,96 @@ declare class MergeApplicationService {
9367
9367
  }>;
9368
9368
  }
9369
9369
 
9370
+ declare const EXECUTION_PLAN_ARTIFACT_CONTRACT: "lexrunner.execution-plan-artifact.v1";
9371
+ declare const PLAN_ARTIFACT_REFERENCE_CONTRACT: "lexrunner.plan-artifact-reference.v1";
9372
+ declare const EXECUTION_PLAN_CANONICALIZATION_PROFILE: "lexrunner.execution-plan.canonical-json.v1";
9373
+ declare const EXECUTION_PLAN_HASH_PROFILE: "lexrunner.execution-plan-artifact.sha256.v1";
9374
+ declare const EXECUTION_PLAN_HASH_DOMAIN: "lexrunner:execution-plan-artifact:v1\0";
9375
+ declare const PlanArtifactScope_v1Schema: z.ZodObject<{
9376
+ tenant: z.ZodString;
9377
+ workspace: z.ZodString;
9378
+ repository: z.ZodString;
9379
+ refNamespace: z.ZodString;
9380
+ policy: z.ZodString;
9381
+ }, z.core.$strict>;
9382
+ type PlanArtifactScope_v1 = z.infer<typeof PlanArtifactScope_v1Schema>;
9383
+ declare const ExecutionPlanArtifactIdentity_v1Schema: z.ZodObject<{
9384
+ contract: z.ZodLiteral<"lexrunner.execution-plan-artifact.v1">;
9385
+ kind: z.ZodLiteral<"execution-plan">;
9386
+ planSchema: z.ZodLiteral<"lexrunner.execution-plan">;
9387
+ planSchemaVersion: z.ZodString;
9388
+ canonicalizationProfile: z.ZodLiteral<"lexrunner.execution-plan.canonical-json.v1">;
9389
+ hashProfile: z.ZodLiteral<"lexrunner.execution-plan-artifact.sha256.v1">;
9390
+ digestAlgorithm: z.ZodLiteral<"sha256">;
9391
+ digest: z.ZodString;
9392
+ canonicalByteLength: z.ZodNumber;
9393
+ target: z.ZodString;
9394
+ summary: z.ZodObject<{
9395
+ itemCount: z.ZodNumber;
9396
+ gateCount: z.ZodNumber;
9397
+ }, z.core.$strict>;
9398
+ }, z.core.$strict>;
9399
+ type ExecutionPlanArtifactIdentity_v1 = z.infer<typeof ExecutionPlanArtifactIdentity_v1Schema>;
9400
+ declare const ExecutionPlanArtifact_v1Schema: z.ZodObject<{
9401
+ identity: z.ZodObject<{
9402
+ contract: z.ZodLiteral<"lexrunner.execution-plan-artifact.v1">;
9403
+ kind: z.ZodLiteral<"execution-plan">;
9404
+ planSchema: z.ZodLiteral<"lexrunner.execution-plan">;
9405
+ planSchemaVersion: z.ZodString;
9406
+ canonicalizationProfile: z.ZodLiteral<"lexrunner.execution-plan.canonical-json.v1">;
9407
+ hashProfile: z.ZodLiteral<"lexrunner.execution-plan-artifact.sha256.v1">;
9408
+ digestAlgorithm: z.ZodLiteral<"sha256">;
9409
+ digest: z.ZodString;
9410
+ canonicalByteLength: z.ZodNumber;
9411
+ target: z.ZodString;
9412
+ summary: z.ZodObject<{
9413
+ itemCount: z.ZodNumber;
9414
+ gateCount: z.ZodNumber;
9415
+ }, z.core.$strict>;
9416
+ }, z.core.$strict>;
9417
+ canonicalBytes: z.ZodString;
9418
+ }, z.core.$strict>;
9419
+ type ExecutionPlanArtifact_v1 = z.infer<typeof ExecutionPlanArtifact_v1Schema>;
9420
+ declare const PlanArtifactReference_v1Schema: z.ZodObject<{
9421
+ contract: z.ZodLiteral<"lexrunner.plan-artifact-reference.v1">;
9422
+ artifact: z.ZodObject<{
9423
+ contract: z.ZodLiteral<"lexrunner.execution-plan-artifact.v1">;
9424
+ kind: z.ZodLiteral<"execution-plan">;
9425
+ planSchema: z.ZodLiteral<"lexrunner.execution-plan">;
9426
+ planSchemaVersion: z.ZodString;
9427
+ canonicalizationProfile: z.ZodLiteral<"lexrunner.execution-plan.canonical-json.v1">;
9428
+ hashProfile: z.ZodLiteral<"lexrunner.execution-plan-artifact.sha256.v1">;
9429
+ digestAlgorithm: z.ZodLiteral<"sha256">;
9430
+ digest: z.ZodString;
9431
+ canonicalByteLength: z.ZodNumber;
9432
+ target: z.ZodString;
9433
+ summary: z.ZodObject<{
9434
+ itemCount: z.ZodNumber;
9435
+ gateCount: z.ZodNumber;
9436
+ }, z.core.$strict>;
9437
+ }, z.core.$strict>;
9438
+ expectedDigest: z.ZodString;
9439
+ expectedCanonicalByteLength: z.ZodNumber;
9440
+ retrieval: z.ZodObject<{
9441
+ kind: z.ZodEnum<{
9442
+ file: "file";
9443
+ registered: "registered";
9444
+ }>;
9445
+ reference: z.ZodString;
9446
+ }, z.core.$strict>;
9447
+ scope: z.ZodOptional<z.ZodObject<{
9448
+ tenant: z.ZodString;
9449
+ workspace: z.ZodString;
9450
+ repository: z.ZodString;
9451
+ refNamespace: z.ZodString;
9452
+ policy: z.ZodString;
9453
+ }, z.core.$strict>>;
9454
+ }, z.core.$strict>;
9455
+ type PlanArtifactReference_v1 = z.infer<typeof PlanArtifactReference_v1Schema>;
9456
+ declare function computeExecutionPlanArtifactDigest(canonicalBytes: string): string;
9457
+
9370
9458
  type PlanArtifactSource = "explicit" | "repository-root" | "profile-runner";
9459
+ /** Backward-compatible public projection retained while ADR-012 adapters migrate. */
9371
9460
  interface PlanArtifactIdentity {
9372
9461
  contract: "plan-artifact-identity-v1";
9373
9462
  kind: "execution-plan";
@@ -9380,32 +9469,97 @@ interface PlanArtifactIdentity {
9380
9469
  interface ResolvedPlanArtifact {
9381
9470
  plan: Plan;
9382
9471
  identity: PlanArtifactIdentity;
9472
+ artifact: ExecutionPlanArtifact_v1;
9473
+ reference: PlanArtifactReference_v1;
9474
+ acquisition: PlanArtifactAcquisition;
9383
9475
  source: PlanArtifactSource;
9384
- /** Adapter-only location. It is deliberately excluded from the public identity. */
9476
+ /** Adapter-only location. It is deliberately excluded from semantic identity and diagnostics. */
9385
9477
  filePath: string;
9386
9478
  }
9387
- type PlanArtifactFailureCode = "PLAN_REFERENCE_INVALID" | "PLAN_NOT_FOUND" | "PLAN_UNREADABLE" | "PLAN_ARTIFACT_LIMIT_EXCEEDED";
9479
+ /**
9480
+ * Portable Node acquisition is integrity evidence, not filesystem authority.
9481
+ * A future native stable-handle reader must use a distinct assurance value.
9482
+ */
9483
+ interface PlanArtifactAcquisition {
9484
+ contract: "lexrunner.plan-artifact-acquisition.v1";
9485
+ assurance: "portable-race-detection";
9486
+ authority: "unverified";
9487
+ }
9488
+ type PlanArtifactFailureCode = "PLAN_REFERENCE_INVALID" | "PLAN_REFERENCE_MISMATCH" | "PLAN_NOT_FOUND" | "PLAN_UNREADABLE" | "PLAN_FILESYSTEM_UNSAFE" | "PLAN_ARTIFACT_LIMIT_EXCEEDED";
9388
9489
  declare class PlanArtifactServiceError extends Error {
9389
9490
  readonly code: PlanArtifactFailureCode;
9390
9491
  readonly source?: PlanArtifactSource | undefined;
9391
9492
  constructor(code: PlanArtifactFailureCode, message: string, source?: PlanArtifactSource | undefined);
9392
9493
  }
9494
+ /** @internal Deterministic source-test seams. Not exported by the package entrypoint. */
9495
+ interface PlanArtifactImportHooks {
9496
+ /** Deterministic hostile-test seams; production callers should not provide hooks. */
9497
+ afterInitialPathSnapshot?(): void;
9498
+ afterOpen?(): void;
9499
+ afterRead?(): void;
9500
+ beforeFinalPathSnapshot?(): void;
9501
+ }
9502
+ /** @internal */
9503
+ interface PlanArtifactServiceOptions {
9504
+ importHooks?: PlanArtifactImportHooks;
9505
+ }
9393
9506
  interface ResolvePlanArtifactInput {
9394
9507
  planFile?: string;
9508
+ planReference?: PlanArtifactReference_v1;
9395
9509
  workingDir?: string;
9396
9510
  profileDir?: string;
9511
+ scope?: PlanArtifactScope_v1;
9397
9512
  }
9398
9513
  /**
9399
- * Resolve one immutable integration plan without creating mutable "active plan" state.
9514
+ * Resolve one exact content-addressed plan snapshot without creating mutable
9515
+ * "active plan" state. The portable reader detects observed races but does not
9516
+ * provide native stable-handle filesystem authority.
9400
9517
  *
9401
- * Precedence is explicit reference, repository-root plan.json, then the legacy
9402
- * profile runner plan. An explicit reference is authoritative: a bad explicit
9403
- * path never falls through to another plan.
9518
+ * Precedence is an expected-identity reference, an explicit path, repository-root
9519
+ * plan.json, then the legacy profile runner plan. Explicit inputs are authoritative:
9520
+ * a bad reference never falls through to another plan.
9404
9521
  */
9405
9522
  declare class PlanArtifactService {
9523
+ #private;
9524
+ constructor(options?: PlanArtifactServiceOptions);
9406
9525
  resolve(input?: ResolvePlanArtifactInput): ResolvedPlanArtifact;
9407
9526
  }
9408
9527
 
9528
+ type PlanArtifactRegistrationFailureCode = "PLAN_REGISTRATION_INVALID" | "PLAN_REGISTRATION_UNSAFE" | "PLAN_REGISTRATION_CONFLICT" | "PLAN_REGISTRATION_VERIFY_FAILED";
9529
+ declare class PlanArtifactRegistrationError extends Error {
9530
+ readonly code: PlanArtifactRegistrationFailureCode;
9531
+ constructor(code: PlanArtifactRegistrationFailureCode, message: string);
9532
+ }
9533
+ interface RegisterPlanArtifactInput {
9534
+ artifact: ExecutionPlanArtifact_v1;
9535
+ storeDirectory: string;
9536
+ scope?: PlanArtifactScope_v1;
9537
+ }
9538
+ interface RegisteredPlanArtifact {
9539
+ artifact: ExecutionPlanArtifact_v1;
9540
+ reference: PlanArtifactReference_v1;
9541
+ created: boolean;
9542
+ storage: {
9543
+ assurance: "service-no-replace-verified";
9544
+ authority: "unverified";
9545
+ };
9546
+ }
9547
+ /**
9548
+ * Minimal service-level no-replace content-addressed storage for ADR-012 plan
9549
+ * bytes. Portable pathname checks and mode bits are not protected store
9550
+ * authority; results remain explicitly unverified until a native boundary owns
9551
+ * the store.
9552
+ *
9553
+ * This service does not select, archive, supersede, or grant authority to an
9554
+ * artifact. It also does not delete crash-left ambiguous links; durable
9555
+ * publication recovery belongs to the reference-safe retention slice. Those
9556
+ * coordination operations belong to later ADR-012 slices.
9557
+ */
9558
+ declare class PlanArtifactRegistrationService {
9559
+ #private;
9560
+ register(input: RegisterPlanArtifactInput): RegisteredPlanArtifact;
9561
+ }
9562
+
9409
9563
  /**
9410
9564
  * Environmental Hostility Scoring
9411
9565
  *
@@ -9795,4 +9949,4 @@ declare function createWorkflowGuide(phase: WorkflowPhase): WorkflowGuide;
9795
9949
  declare function inspectRegisteredCliSurface(): RegisteredCliCommand[];
9796
9950
  declare function main(argv?: string[]): Promise<void>;
9797
9951
 
9798
- export { AGENT_ENGINE_VERIFICATION_V2_VERSION, AGENT_TASK_RECEIPT_PATCH_PROFILE, AGENT_TASK_RECEIPT_V2_VERSION, AGENT_WORK_CONTRACT_VERSION, ATTEMPT_AWAITABLE_CONTRACT_VERSION, AXF_AWAITABLE_SCHEMA_VERSION, AXF_AWAIT_RESULT_SCHEMA_VERSION, type AcknowledgeAttemptAwaitableDeliveryInput, AgentEngineVerification_v1, AgentEngineVerification_v2, type AgentExecutionPathBindingContext, type AgentExecutionPathBindingValidation, AgentExecutionPathMapping_v1, type AgentTaskPacketHashInput, AgentTaskPacketHashInput_v1, AgentTaskPacket_v1, type AgentTaskReceiptBindingContext, AgentTaskReceiptOutcome, type AgentTaskReceiptV2BindingContext, AgentTaskReceipt_v1, AgentTaskReceipt_v2, AgentWorkContainmentPreflightRequestJsonSchema, AgentWorkFanInDecision_v1, type AgentWorkFanInResult, AgentWorkFanoutPlan_v1, AgentWorkFanoutService, type AgentWorkPreparationCommandResult, type AgentWorkPreparationCommandRunner, AgentWorkPreparationReceipt_v1, type AgentWorkPreparationResult, AttemptAcceptanceApplyRequestJsonSchema, AttemptAcceptanceStatusRequestJsonSchema, type AttemptAwaitableAttachmentResult, AttemptAwaitableCompletion_v1, AttemptAwaitableDelivery_v1, AttemptAwaitableEventType_v1, AttemptAwaitableEvent_v1, type AttemptAwaitableLeaseCredential, type AttemptAwaitableMutationFailureReason, type AttemptAwaitableNotifier, type AttemptAwaitableObservationRequest, type AttemptAwaitableObserver, AttemptAwaitableObserverLease_v1, AttemptAwaitableRecord_v1, AttemptAwaitableStatus_v1, type AttemptAwaitableStore, AttemptAwaitableSupervisor, type AttemptAwaitableSupervisorNotice, type AttemptAwaitableSupervisorOptions, AttemptAwaitableTerminalResult_v1, AttemptPrepareRequestJsonSchema, AttemptReceiptStatusRequestJsonSchema, AttemptReceiptSubmitRequestJsonSchema, AttemptRetryDeltaDimension_v1, AttemptRetryDelta_v1, AttemptStartRequestJsonSchema, AttemptStatus, AttemptStatusInputJsonSchema, AttemptVerificationRunRequestJsonSchema, AttemptVerificationStatusRequestJsonSchema, AttemptWorkerAttachRequestJsonSchema, AttemptWorkerEndRequestJsonSchema, AttemptWorkerHeartbeatRequestJsonSchema, AttemptWorkerStatusRequestJsonSchema, Attempt_v1, AuthorityEnvelope, AxfCliAttemptAwaitableObserver, type AxfCliAttemptAwaitableObserverOptions, AxfExternalAwaitResult_v1, type BeginAttemptAwaitableDeliveryInput, type BoundedDiscoveryResult, type BoundedGateRunResult, type BoundedIntegrationStatus, type BoundedMergeApplicationResult, type BoundedMergeOrderResult, type CancelAttemptAwaitableInput, type ClaimAttemptAwaitableObservationInput, type ClaimAttemptAwaitableObservationResult, ClaimedCheckOutcome, type CompleteAttemptAwaitableInput, ConfigurationQueryService, ControllerLease_v1, type CreateAgentWorkFanoutInput, type DecideAgentWorkFanInInput, DiscoveryQueryService, EngineVerificationCheckSource_v2, EngineVerificationDeterminism_v2, EngineVerificationTrustGapReason_v2, type ExecuteAgentWorkPreparationInput, ExecutionEnvelope_v1, ExecutionEnvironmentOS, ExecutionState, ExternalAwaitOutcome_v1, ExternalAwaitableDescriptor_v1, FanInCandidateConclusion_v1, FanoutAttemptBinding_v1, FanoutPremise_v1, FanoutRationale_v1, FanoutSelectionCriterion_v1, GATE_IMPACT_MODEL, GateExecutionService, GateExecutionServiceError, type GateExecutionServiceInput, type GateExecutionServiceResult, GateImpactService, GateImpactServiceError, GitHubAPI, GitObjectId, HumanActionPreconditions, HumanActionReceipt_v1, HumanActionRequest_v1, INTEGRATION_RECORD_REMOVAL_VERSION, INTEGRATION_RECORD_REPLACEMENTS, InMemoryAttemptAwaitableStore, IntegrationQueryServiceError, IntegrationRecordCompatibilityError, IntegrationRecordCompatibilityService, IntegrationStatusQueryService, MAX_ATTEMPT_AWAITABLE_DURATION_MS, MIN_ATTEMPT_AWAITABLE_DURATION_MS, type MergeApplicationExecution, type MergeApplicationFailureCode, type MergeApplicationRuntime, MergeApplicationService, MergeApplicationServiceError, MergeEligibilityEvaluator, MergeOrderQueryService, type MultiRepoPlanOptions$1 as MultiRepoPlanOptions, type MutateAttemptAwaitableResult, NATIVE_WSL_PROJECTION_CONTRACT_VERSION, NATIVE_WSL_PROJECTION_HASH_PROFILE, NativeDirectoryIdentityClaim_v1, NativeExecutionPathMapping_v1, NativeWslExecutionPathMapping_v1, NativeWslProjectionCleanupRequestJsonSchema, NativeWslProjectionInventoryObservation_v1, NativeWslProjectionInventoryState, NativeWslProjectionManifest_v1, NativeWslProjectionNextAction, NativeWslProjectionOutcome, NativeWslProjectionPathMapping_v1, NativeWslProjectionPlanAction, NativeWslProjectionPlanReason, NativeWslProjectionPlan_v1, NativeWslProjectionPrepareRequestJsonSchema, NativeWslProjectionQuarantineRequestJsonSchema, NativeWslProjectionReasonCode, NativeWslProjectionReceipt_v1, NativeWslProjectionRequestJsonSchema, NativeWslProjectionRequest_v1, NativeWslProjectionSelection_v1, NativeWslProjectionStatusRequestJsonSchema, NativeWslSourceObservation_v1, type PlanArtifactFailureCode, type PlanArtifactIdentity, PlanArtifactService, PlanArtifactServiceError, type PlanArtifactSource, PlanCreationService, type RegisterAttemptAwaitableInput, type RegisterAttemptAwaitableResult, type RegisterDurableAttemptAwaitableInput, type RegisterDurableAttemptAwaitableResult, type ReleaseAttemptAwaitableObservationInput, type RepoTarget, type ResolvePlanArtifactInput, type ResolvedPlanArtifact, RunStatus, Run_v1, STRICT_FANOUT_SELECTION_CRITERIA, SqliteAttemptAwaitableStore, VerificationOutcome, WorkItem_v1, WorkerSessionBackend, WorkerSessionStatus, WorkerSession_v1, WorkspaceAllocationStatus, WorkspaceAllocation_v1, WorkspaceCleanupDisposition, WorkspaceConfigServiceError, WorkspaceDiagnosticsService, WorkspaceInitializationService, WorkspaceLeaseStatus, WorkspaceLease_v1, applyGateImpactSelection, asPlanValidationFailure, attemptStatusRequiresReceipt, attemptStatusRequiresVerification, bootstrapWorkspace, canonicalJSONStringify, completionForAttemptAwaitable, computeAgentEngineVerificationV2Hash, computeAgentTaskPacketHash, computeFanInEvidenceSetHash, computeMergeOrder, containsAttemptAwaitableCredentialValue, createAgentTaskPacket, createAgentWorkContainmentPreflightHandler, createAttemptLifecycleHandlers, createAttemptReceiptHandlers, createAttemptVerificationHandlers, createAttemptWorkerHandlers, createFileAnalyzer, createGitHubAPI, createGitHubClient, createGitOperations, createNativeExecutionPathMapping, createNativeWslExecutionPathMapping, createNativeWslProjectionLifecycleHandlers, createNativeWslProjectionManifest, createNativeWslProjectionPathMapping, createNativeWslProjectionReceipt, createNativeWslProjectionRequest, createNativeWslProjectionSelection, createNativeWslSourceObservation, createRunManager, createWorkflowGuide, deliveryIdForAttemptAwaitable, detectProjectType, executeAgentWorkPreparation, executeGatesWithPolicy, formatPlanValidationFailure, formatPlanValidationFailureText, generateGitHubSnapshot, generateMultiRepoPlan, generatePlan, generatePlanFromGitHub, generateSnapshot, getEnvironmentSuggestions, healthChecker, initLocalOverlay, inspectRegisteredCliSurface, isTerminalAttemptStatus, loadInputs, loadPlan, main, nativeWslProjectionId, orderAgentWorkPreparationSteps, parseAgentEngineVerification, parseAgentEngineVerificationV2, parseAgentTaskPacket, parseAgentTaskReceipt, parseAgentTaskReceiptV2, parseAttempt, parseAttemptAwaitableDescriptor, parseAttemptAwaitableRecord, parseAttemptAwaitableTerminalResult, parseControllerLease, parseExecutionEnvelope, parseExternalAwaitableDescriptor, parseHumanActionReceipt, parseHumanActionRequest, parseRun, parseWorkItem, parseWorkerSession, parseWorkspaceAllocation, parseWorkspaceLease, planNativeWslProjection, resolveProfile, statusForAwaitableOutcome, validateAgentEngineVerificationV2PacketReferences, validateAgentExecutionPathBinding, validateAgentTaskReceiptBinding, validateAgentTaskReceiptV2Binding, validateAgentTaskReceiptV2PacketReferences, validateHumanActionReceiptBinding, writeGateImpactReceipt };
9952
+ export { AGENT_ENGINE_VERIFICATION_V2_VERSION, AGENT_TASK_RECEIPT_PATCH_PROFILE, AGENT_TASK_RECEIPT_V2_VERSION, AGENT_WORK_CONTRACT_VERSION, ATTEMPT_AWAITABLE_CONTRACT_VERSION, AXF_AWAITABLE_SCHEMA_VERSION, AXF_AWAIT_RESULT_SCHEMA_VERSION, type AcknowledgeAttemptAwaitableDeliveryInput, AgentEngineVerification_v1, AgentEngineVerification_v2, type AgentExecutionPathBindingContext, type AgentExecutionPathBindingValidation, AgentExecutionPathMapping_v1, type AgentTaskPacketHashInput, AgentTaskPacketHashInput_v1, AgentTaskPacket_v1, type AgentTaskReceiptBindingContext, AgentTaskReceiptOutcome, type AgentTaskReceiptV2BindingContext, AgentTaskReceipt_v1, AgentTaskReceipt_v2, AgentWorkContainmentPreflightRequestJsonSchema, AgentWorkFanInDecision_v1, type AgentWorkFanInResult, AgentWorkFanoutPlan_v1, AgentWorkFanoutService, type AgentWorkPreparationCommandResult, type AgentWorkPreparationCommandRunner, AgentWorkPreparationReceipt_v1, type AgentWorkPreparationResult, AttemptAcceptanceApplyRequestJsonSchema, AttemptAcceptanceStatusRequestJsonSchema, type AttemptAwaitableAttachmentResult, AttemptAwaitableCompletion_v1, AttemptAwaitableDelivery_v1, AttemptAwaitableEventType_v1, AttemptAwaitableEvent_v1, type AttemptAwaitableLeaseCredential, type AttemptAwaitableMutationFailureReason, type AttemptAwaitableNotifier, type AttemptAwaitableObservationRequest, type AttemptAwaitableObserver, AttemptAwaitableObserverLease_v1, AttemptAwaitableRecord_v1, AttemptAwaitableStatus_v1, type AttemptAwaitableStore, AttemptAwaitableSupervisor, type AttemptAwaitableSupervisorNotice, type AttemptAwaitableSupervisorOptions, AttemptAwaitableTerminalResult_v1, AttemptPrepareRequestJsonSchema, AttemptReceiptStatusRequestJsonSchema, AttemptReceiptSubmitRequestJsonSchema, AttemptRetryDeltaDimension_v1, AttemptRetryDelta_v1, AttemptStartRequestJsonSchema, AttemptStatus, AttemptStatusInputJsonSchema, AttemptVerificationRunRequestJsonSchema, AttemptVerificationStatusRequestJsonSchema, AttemptWorkerAttachRequestJsonSchema, AttemptWorkerEndRequestJsonSchema, AttemptWorkerHeartbeatRequestJsonSchema, AttemptWorkerStatusRequestJsonSchema, Attempt_v1, AuthorityEnvelope, AxfCliAttemptAwaitableObserver, type AxfCliAttemptAwaitableObserverOptions, AxfExternalAwaitResult_v1, type BeginAttemptAwaitableDeliveryInput, type BoundedDiscoveryResult, type BoundedGateRunResult, type BoundedIntegrationStatus, type BoundedMergeApplicationResult, type BoundedMergeOrderResult, type CancelAttemptAwaitableInput, type ClaimAttemptAwaitableObservationInput, type ClaimAttemptAwaitableObservationResult, ClaimedCheckOutcome, type CompleteAttemptAwaitableInput, ConfigurationQueryService, ControllerLease_v1, type CreateAgentWorkFanoutInput, type DecideAgentWorkFanInInput, DiscoveryQueryService, EXECUTION_PLAN_ARTIFACT_CONTRACT, EXECUTION_PLAN_CANONICALIZATION_PROFILE, EXECUTION_PLAN_HASH_DOMAIN, EXECUTION_PLAN_HASH_PROFILE, EngineVerificationCheckSource_v2, EngineVerificationDeterminism_v2, EngineVerificationTrustGapReason_v2, type ExecuteAgentWorkPreparationInput, ExecutionEnvelope_v1, ExecutionEnvironmentOS, type ExecutionPlanArtifactIdentity_v1, ExecutionPlanArtifactIdentity_v1Schema, type ExecutionPlanArtifact_v1, ExecutionPlanArtifact_v1Schema, ExecutionState, ExternalAwaitOutcome_v1, ExternalAwaitableDescriptor_v1, FanInCandidateConclusion_v1, FanoutAttemptBinding_v1, FanoutPremise_v1, FanoutRationale_v1, FanoutSelectionCriterion_v1, GATE_IMPACT_MODEL, GateExecutionService, GateExecutionServiceError, type GateExecutionServiceInput, type GateExecutionServiceResult, GateImpactService, GateImpactServiceError, GitHubAPI, GitObjectId, HumanActionPreconditions, HumanActionReceipt_v1, HumanActionRequest_v1, INTEGRATION_RECORD_REMOVAL_VERSION, INTEGRATION_RECORD_REPLACEMENTS, InMemoryAttemptAwaitableStore, IntegrationQueryServiceError, IntegrationRecordCompatibilityError, IntegrationRecordCompatibilityService, IntegrationStatusQueryService, MAX_ATTEMPT_AWAITABLE_DURATION_MS, MIN_ATTEMPT_AWAITABLE_DURATION_MS, type MergeApplicationExecution, type MergeApplicationFailureCode, type MergeApplicationRuntime, MergeApplicationService, MergeApplicationServiceError, MergeEligibilityEvaluator, MergeOrderQueryService, type MultiRepoPlanOptions$1 as MultiRepoPlanOptions, type MutateAttemptAwaitableResult, NATIVE_WSL_PROJECTION_CONTRACT_VERSION, NATIVE_WSL_PROJECTION_HASH_PROFILE, NativeDirectoryIdentityClaim_v1, NativeExecutionPathMapping_v1, NativeWslExecutionPathMapping_v1, NativeWslProjectionCleanupRequestJsonSchema, NativeWslProjectionInventoryObservation_v1, NativeWslProjectionInventoryState, NativeWslProjectionManifest_v1, NativeWslProjectionNextAction, NativeWslProjectionOutcome, NativeWslProjectionPathMapping_v1, NativeWslProjectionPlanAction, NativeWslProjectionPlanReason, NativeWslProjectionPlan_v1, NativeWslProjectionPrepareRequestJsonSchema, NativeWslProjectionQuarantineRequestJsonSchema, NativeWslProjectionReasonCode, NativeWslProjectionReceipt_v1, NativeWslProjectionRequestJsonSchema, NativeWslProjectionRequest_v1, NativeWslProjectionSelection_v1, NativeWslProjectionStatusRequestJsonSchema, NativeWslSourceObservation_v1, PLAN_ARTIFACT_REFERENCE_CONTRACT, type PlanArtifactAcquisition, type PlanArtifactFailureCode, type PlanArtifactIdentity, type PlanArtifactReference_v1, PlanArtifactReference_v1Schema, PlanArtifactRegistrationError, type PlanArtifactRegistrationFailureCode, PlanArtifactRegistrationService, type PlanArtifactScope_v1, PlanArtifactScope_v1Schema, PlanArtifactService, PlanArtifactServiceError, type PlanArtifactSource, PlanCreationService, type RegisterAttemptAwaitableInput, type RegisterAttemptAwaitableResult, type RegisterDurableAttemptAwaitableInput, type RegisterDurableAttemptAwaitableResult, type RegisterPlanArtifactInput, type RegisteredPlanArtifact, type ReleaseAttemptAwaitableObservationInput, type RepoTarget, type ResolvePlanArtifactInput, type ResolvedPlanArtifact, RunStatus, Run_v1, STRICT_FANOUT_SELECTION_CRITERIA, SqliteAttemptAwaitableStore, VerificationOutcome, WorkItem_v1, WorkerSessionBackend, WorkerSessionStatus, WorkerSession_v1, WorkspaceAllocationStatus, WorkspaceAllocation_v1, WorkspaceCleanupDisposition, WorkspaceConfigServiceError, WorkspaceDiagnosticsService, WorkspaceInitializationService, WorkspaceLeaseStatus, WorkspaceLease_v1, applyGateImpactSelection, asPlanValidationFailure, attemptStatusRequiresReceipt, attemptStatusRequiresVerification, bootstrapWorkspace, canonicalJSONStringify, completionForAttemptAwaitable, computeAgentEngineVerificationV2Hash, computeAgentTaskPacketHash, computeExecutionPlanArtifactDigest, computeFanInEvidenceSetHash, computeMergeOrder, containsAttemptAwaitableCredentialValue, createAgentTaskPacket, createAgentWorkContainmentPreflightHandler, createAttemptLifecycleHandlers, createAttemptReceiptHandlers, createAttemptVerificationHandlers, createAttemptWorkerHandlers, createFileAnalyzer, createGitHubAPI, createGitHubClient, createGitOperations, createNativeExecutionPathMapping, createNativeWslExecutionPathMapping, createNativeWslProjectionLifecycleHandlers, createNativeWslProjectionManifest, createNativeWslProjectionPathMapping, createNativeWslProjectionReceipt, createNativeWslProjectionRequest, createNativeWslProjectionSelection, createNativeWslSourceObservation, createRunManager, createWorkflowGuide, deliveryIdForAttemptAwaitable, detectProjectType, executeAgentWorkPreparation, executeGatesWithPolicy, formatPlanValidationFailure, formatPlanValidationFailureText, generateGitHubSnapshot, generateMultiRepoPlan, generatePlan, generatePlanFromGitHub, generateSnapshot, getEnvironmentSuggestions, healthChecker, initLocalOverlay, inspectRegisteredCliSurface, isTerminalAttemptStatus, loadInputs, loadPlan, main, nativeWslProjectionId, orderAgentWorkPreparationSteps, parseAgentEngineVerification, parseAgentEngineVerificationV2, parseAgentTaskPacket, parseAgentTaskReceipt, parseAgentTaskReceiptV2, parseAttempt, parseAttemptAwaitableDescriptor, parseAttemptAwaitableRecord, parseAttemptAwaitableTerminalResult, parseControllerLease, parseExecutionEnvelope, parseExternalAwaitableDescriptor, parseHumanActionReceipt, parseHumanActionRequest, parseRun, parseWorkItem, parseWorkerSession, parseWorkspaceAllocation, parseWorkspaceLease, planNativeWslProjection, resolveProfile, statusForAwaitableOutcome, validateAgentEngineVerificationV2PacketReferences, validateAgentExecutionPathBinding, validateAgentTaskReceiptBinding, validateAgentTaskReceiptV2Binding, validateAgentTaskReceiptV2PacketReferences, validateHumanActionReceiptBinding, writeGateImpactReceipt };