@kynver-app/runtime 0.1.112 → 0.1.117

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/status.d.ts CHANGED
@@ -129,6 +129,11 @@ export interface HarnessWorkerRecord {
129
129
  completionSidecarSpawnFailedAt?: string;
130
130
  /** One-off helper paths removed before completion (`kynver worker discard-disposable`). */
131
131
  disposableArtifactsRemoved?: string[];
132
+ /** Physical pool label frozen at spawn for orchestration usage attribution. */
133
+ boxKind?: string;
134
+ boxId?: string;
135
+ /** Runner/daemon identity frozen at spawn (KYNVER_RUNTIME_ID). */
136
+ runtimeId?: string;
132
137
  }
133
138
  export interface RawHarnessWorkerStatus {
134
139
  runId: string;
@@ -172,6 +177,19 @@ export interface RawHarnessWorkerStatus {
172
177
  /** Lane A policy fields echoed on completion status for mirror recovery. */
173
178
  instructionPolicyFingerprint?: string | null;
174
179
  instructionPolicyEvidence?: InstructionPolicyEvidenceSnapshot | null;
180
+ /** Model the worker was launched with — echoed from worker.json for usage tracking. */
181
+ model?: string | null;
182
+ /** Orchestration provider key (codex | cursor | claude) — echoed from worker.json. */
183
+ provider?: string | null;
184
+ /** Physical pool label — ghost | forge (runtime ≥ 0.1.115). */
185
+ boxKind?: string | null;
186
+ boxId?: string | null;
187
+ /** Runner/daemon identity echoed from worker.json. */
188
+ runtimeId?: string | null;
189
+ personaSlug?: string | null;
190
+ /** True when dispatch-next spawned the worker on a daemon tick. */
191
+ dispatched?: boolean | null;
192
+ localOnly?: boolean | null;
175
193
  }
176
194
  export interface WorkerStatusOptions {
177
195
  /** 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.112",
3
+ "version": "0.1.117",
4
4
  "description": "Kynver AgentOS local execution runtime and CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",