@sellable/install 0.1.226 → 0.1.227
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/bin/sellable-install.mjs
CHANGED
package/package.json
CHANGED
|
@@ -199,8 +199,18 @@ environment:{type:"local"}}`. Do not create a worktree target for evergreen
|
|
|
199
199
|
UAT or lane execution. The parent must record the returned thread id, pass
|
|
200
200
|
exactly one lane packet into that thread, and require the worker to write the
|
|
201
201
|
lane receipt at the artifact path named by
|
|
202
|
-
`workerDispatch.receiptArtifactHint`.
|
|
203
|
-
|
|
202
|
+
`workerDispatch.receiptArtifactHint`. That path is run-specific and must include
|
|
203
|
+
the packet's `workerDispatch.receiptRunId`. Before dispatch, if a file already
|
|
204
|
+
exists at the hinted path, do not trust or verify it; move it aside or choose the
|
|
205
|
+
fresh hinted path from a new plan. A valid receipt must be written after
|
|
206
|
+
`workerDispatch.receiptMustBeWrittenAfter`, reread by the parent after the
|
|
207
|
+
worker exits, and contain the current `planRevision`, `actionId`, `laneKey`,
|
|
208
|
+
`receiptArtifactPath`, and `durableReceiptWritten:true`. If a receipt predates
|
|
209
|
+
the current run, uses an old path without `receiptRunId`, or was not freshly
|
|
210
|
+
written by the current worker, stop with `blocked: stale_receipt_artifact`
|
|
211
|
+
before parent verify or completion. A streaming worker or branch worker is
|
|
212
|
+
acceptable only when it writes a fresh durable per-lane receipt artifact as it
|
|
213
|
+
works.
|
|
204
214
|
`multi_agent_v1.spawn_agent`, raw `spawn_agent`, or any opaque Task/subagent
|
|
205
215
|
runtime that cannot expose a visible thread id or durable receipt artifact is
|
|
206
216
|
not accepted as command-level UAT proof and must not be used for mutating
|
|
@@ -366,7 +376,7 @@ verification unless the same object also appears inside
|
|
|
366
376
|
"workflowAssetLoaded": true,
|
|
367
377
|
"workerRuntime": "separate-codex-thread",
|
|
368
378
|
"workerThreadId": "<visible local Codex thread id>",
|
|
369
|
-
"receiptArtifactPath": ".planning/artifacts/uat/69/lane-receipts/<planRevision>/<actionId>-<laneKey>.json",
|
|
379
|
+
"receiptArtifactPath": ".planning/artifacts/uat/69/lane-receipts/<planRevision>/<receiptRunId>/<actionId>-<laneKey>.json",
|
|
370
380
|
"durableReceiptWritten": true,
|
|
371
381
|
"notAdHoc": true
|
|
372
382
|
},
|