@kynver-app/runtime 0.1.76 → 0.1.77

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.
@@ -1,3 +1,4 @@
1
+ export declare function countDispatchStarts(result: unknown): number;
1
2
  /** Drop CLI max-starts so pipeline ticks always use the resource-gate slot budget. */
2
3
  export declare function stripCliMaxStarts(args: Record<string, string | boolean>): Record<string, string | boolean>;
3
4
  /**
@@ -0,0 +1,2 @@
1
+ /** Operator tick `dispatch.exactTargetTaskIds` — start these before any broad sweep. */
2
+ export declare function operatorExactTargetTaskIds(operatorTick: unknown): string[];
package/dist/status.d.ts CHANGED
@@ -154,6 +154,9 @@ export interface RawHarnessWorkerStatus {
154
154
  disposableArtifactsRemoved?: string[];
155
155
  /** Fencing token from claim — echoed on completion when set. */
156
156
  leaseToken?: string;
157
+ /** Lane A policy fields echoed on completion status for mirror recovery. */
158
+ instructionPolicyFingerprint?: string | null;
159
+ instructionPolicyEvidence?: InstructionPolicyEvidenceSnapshot | null;
157
160
  }
158
161
  export interface WorkerStatusOptions {
159
162
  /** Branch ref for ancestry when baseCommit is not set. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kynver-app/runtime",
3
- "version": "0.1.76",
3
+ "version": "0.1.77",
4
4
  "description": "Kynver AgentOS local execution runtime and CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",