@sellable/install 0.1.236 → 0.1.238
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
|
@@ -264,6 +264,42 @@ CLI builds that expose `-a`/`-s` only at top level. Do not use
|
|
|
264
264
|
forms fail on current customer CLI installs. Pipe the lane packet prompt on
|
|
265
265
|
stdin, require the worker to write `workerDispatch.receiptArtifactHint`, and
|
|
266
266
|
pass exactly one lane packet per worker.
|
|
267
|
+
After creating receipt directories, dispatch workers immediately; do not perform extended parent reasoning, extra inventory, or prompt rewriting loops.
|
|
268
|
+
Use a compact worker prompt: include lane packet JSON, original selectedActionIds,
|
|
269
|
+
original planRevision, receiptArtifactPath, workspace id, sender ids,
|
|
270
|
+
side-effect caps, and the instruction to load packaged prompts through MCP.
|
|
271
|
+
Do not paste the entire wrapper skill into worker prompts. If the parent cannot
|
|
272
|
+
launch at least one visible/durable worker immediately after directory setup,
|
|
273
|
+
stop with `blocked: worker_dispatch_stalled` before any mutation.
|
|
274
|
+
After the receipt-directory `mkdir`, the next shell/tool call must launch the first lane worker.
|
|
275
|
+
Do not run `find`, `ls`, extra inventory, or another preflight between directory setup and the first worker launch.
|
|
276
|
+
For the local Codex CLI fallback, use this literal durable CLI worker launch template
|
|
277
|
+
and fill only the lane-specific placeholders:
|
|
278
|
+
|
|
279
|
+
```
|
|
280
|
+
codex -a never -s danger-full-access exec -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
|
|
281
|
+
Use $sellable:create-evergreen-campaigns as the governing skill for this one lane worker.
|
|
282
|
+
|
|
283
|
+
Workspace id: <workspaceId>
|
|
284
|
+
Parent planRevision: <planRevision>
|
|
285
|
+
Parent selectedActionIds: <selectedActionIds JSON>
|
|
286
|
+
Action id: <actionId>
|
|
287
|
+
Lane key: <laneKey>
|
|
288
|
+
Allowed side effects: <allowedSideEffects JSON>
|
|
289
|
+
Write the durable receipt to this exact path: <receiptArtifactPath>
|
|
290
|
+
|
|
291
|
+
Worker lane packet JSON:
|
|
292
|
+
<lane packet JSON>
|
|
293
|
+
|
|
294
|
+
Load `$sellable:create-campaign` and nested prompts/assets through Sellable MCP loaders.
|
|
295
|
+
Use mcp__sellable only. Do not use admin tools, direct DB, Prisma, SQL, web search, or browser search.
|
|
296
|
+
Do not launch, start, schedule, send, or use paid InMail.
|
|
297
|
+
Complete only this lane, write the required durable receipt JSON, and stop.
|
|
298
|
+
WORKER_PROMPT
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
If any placeholder cannot be filled from the current lane packet, do not inspect
|
|
302
|
+
the filesystem or rerun inventory; stop with `blocked: worker_dispatch_stalled`.
|
|
267
303
|
`multi_agent_v1.spawn_agent`, raw `spawn_agent`, or any opaque Task/subagent
|
|
268
304
|
runtime that cannot expose a visible thread id or durable receipt artifact is
|
|
269
305
|
not accepted as command-level UAT proof and must not be used for mutating
|