@sellable/install 0.1.237 → 0.1.239

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.237",
3
+ "version": "0.1.239",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code and Codex",
6
6
  "bin": {
@@ -271,6 +271,38 @@ side-effect caps, and the instruction to load packaged prompts through MCP.
271
271
  Do not paste the entire wrapper skill into worker prompts. If the parent cannot
272
272
  launch at least one visible/durable worker immediately after directory setup,
273
273
  stop with `blocked: worker_dispatch_stalled` before any mutation.
274
+ Use only the repo-local `workerDispatch.receiptArtifactHint` returned by the
275
+ current lane packet for receipt paths.
276
+ Do not hardcode machine-specific paths, workspace ids, campaign ids, sender ids, or UAT/phase artifact paths in this MCP prompt or any worker prompt.
277
+ After the receipt-directory `mkdir`, the next shell/tool call must launch the first lane worker.
278
+ Do not run `find`, `ls`, extra inventory, or another preflight between directory setup and the first worker launch.
279
+ For the local Codex CLI fallback, use this literal durable CLI worker launch template
280
+ and fill only the lane-specific placeholders:
281
+
282
+ ```
283
+ codex -a never -s danger-full-access exec -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
284
+ Use $sellable:create-evergreen-campaigns as the governing skill for this one lane worker.
285
+
286
+ Workspace id: <workspaceId>
287
+ Parent planRevision: <planRevision>
288
+ Parent selectedActionIds: <selectedActionIds JSON>
289
+ Action id: <actionId>
290
+ Lane key: <laneKey>
291
+ Allowed side effects: <allowedSideEffects JSON>
292
+ Write the durable receipt to this exact path: <receiptArtifactPath>
293
+
294
+ Worker lane packet JSON:
295
+ <lane packet JSON>
296
+
297
+ Load `$sellable:create-campaign` and nested prompts/assets through Sellable MCP loaders.
298
+ Use mcp__sellable only. Do not use admin tools, direct DB, Prisma, SQL, web search, or browser search.
299
+ Do not launch, start, schedule, send, or use paid InMail.
300
+ Complete only this lane, write the required durable receipt JSON, and stop.
301
+ WORKER_PROMPT
302
+ ```
303
+
304
+ If any placeholder cannot be filled from the current lane packet, do not inspect
305
+ the filesystem or rerun inventory; stop with `blocked: worker_dispatch_stalled`.
274
306
  `multi_agent_v1.spawn_agent`, raw `spawn_agent`, or any opaque Task/subagent
275
307
  runtime that cannot expose a visible thread id or durable receipt artifact is
276
308
  not accepted as command-level UAT proof and must not be used for mutating
@@ -505,7 +537,7 @@ verification unless the same object also appears inside
505
537
  "workflowAssetLoaded": true,
506
538
  "workerRuntime": "separate-codex-thread",
507
539
  "workerThreadId": "<visible local Codex thread id>",
508
- "receiptArtifactPath": ".planning/artifacts/uat/69/lane-receipts/<planRevision>/<receiptRunId>/<actionId>-<laneKey>.json",
540
+ "receiptArtifactPath": "<receiptArtifactPath from workerDispatch.receiptArtifactHint>",
509
541
  "durableReceiptWritten": true,
510
542
  "notAdHoc": true
511
543
  },