@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/bootstrap.d.ts +1 -0
- package/dist/cli.js +1559 -397
- package/dist/cli.js.map +4 -4
- package/dist/daemon-heartbeat.d.ts +20 -0
- package/dist/daemon-keeper.d.ts +21 -0
- package/dist/device-login.d.ts +8 -0
- package/dist/index.js +2185 -999
- package/dist/index.js.map +4 -4
- package/dist/provider-evidence/collect.d.ts +18 -0
- package/dist/provider-evidence/exec.d.ts +5 -0
- package/dist/provider-evidence/index.d.ts +7 -0
- package/dist/provider-evidence/recipes-github.d.ts +4 -0
- package/dist/provider-evidence/recipes-vercel.d.ts +2 -0
- package/dist/provider-evidence/registry.d.ts +6 -0
- package/dist/provider-evidence/types.d.ts +48 -0
- package/dist/provider-evidence/wanted-store.d.ts +5 -0
- package/dist/providers/codex.d.ts +7 -2
- package/dist/providers/hermes-codex.d.ts +5 -2
- package/dist/server/cleanup.js +376 -127
- package/dist/server/cleanup.js.map +4 -4
- package/dist/server/default-repo.js +288 -68
- package/dist/server/default-repo.js.map +4 -4
- package/dist/server/monitor.js +342 -126
- package/dist/server/monitor.js.map +4 -4
- package/dist/server/worker-policy.js +304 -49
- package/dist/server/worker-policy.js.map +4 -4
- package/dist/status.d.ts +18 -0
- package/package.json +1 -1
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. */
|