@sellable/install 0.1.283 → 0.1.285
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
|
@@ -409,30 +409,37 @@ acceptable only when it writes a fresh durable per-lane receipt artifact as it
|
|
|
409
409
|
works.
|
|
410
410
|
When visible Codex app thread tools are unavailable but local Codex CLI is
|
|
411
411
|
available, the accepted durable streaming-worker command shape is:
|
|
412
|
-
`codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
|
|
413
|
-
The approval and
|
|
414
|
-
CLI builds that expose `-a`/`-s` only at top
|
|
412
|
+
`codex -a never -s danger-full-access -c model_reasoning_effort=xhigh exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
|
|
413
|
+
The approval, sandbox, and reasoning-effort config flags must come before the
|
|
414
|
+
`exec` subcommand for Codex CLI builds that expose `-a`/`-s`/`-c` only at top
|
|
415
|
+
level. `--skip-git-repo-check` belongs after `exec` because current customer and VPS Codex CLI builds expose it
|
|
415
416
|
as an `exec` subcommand flag, not a top-level flag. Do not use
|
|
416
417
|
`codex exec --ask-for-approval never ...` or `codex exec -a never ...`; those
|
|
417
418
|
forms fail on current customer CLI installs. Pipe the lane packet prompt on
|
|
418
419
|
stdin, require the worker to write `workerDispatch.receiptArtifactHint`, and
|
|
419
420
|
pass exactly one lane packet per worker.
|
|
420
421
|
When launching durable Codex CLI workers from an automation parent, pass an
|
|
421
|
-
explicit supported worker model
|
|
422
|
-
|
|
423
|
-
|
|
422
|
+
explicit supported worker model and explicit `xhigh` reasoning effort instead
|
|
423
|
+
of relying on the Codex CLI defaults. Use the parent runtime model when known,
|
|
424
|
+
for example:
|
|
425
|
+
`codex -a never -s danger-full-access -c model_reasoning_effort=xhigh exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
|
|
424
426
|
In Codex CLI, the parent runtime model is visible in the run header as
|
|
425
427
|
`model: <model-name>`. Copy that exact model string into child worker launches
|
|
426
428
|
first. If the parent header says `model: gpt-5.5`, launch workers with
|
|
427
|
-
`-m gpt-5.5`; do not invent or probe
|
|
428
|
-
`gpt-5.
|
|
429
|
-
the exact parent model. A
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
429
|
+
`-m gpt-5.5` plus `-c model_reasoning_effort=xhigh`; do not invent or probe
|
|
430
|
+
nearby aliases such as `gpt-5.3-codex`, `gpt-5.2`, `gpt-5-codex`,
|
|
431
|
+
`codex-latest`, or `codex-mini-latest` before trying the exact parent model. A
|
|
432
|
+
one-line probe must include the same `-c model_reasoning_effort=xhigh` override
|
|
433
|
+
and count as supported only when it exits 0 and returns the requested output; a
|
|
434
|
+
session header followed by a `not supported` error is rejected, not accepted.
|
|
435
|
+
Do not rely on the Codex CLI default model or default reasoning effort; some
|
|
436
|
+
customer and VPS installs default to unavailable model aliases or to `high`
|
|
437
|
+
reasoning. `-m gpt-5.5` alone is not enough. If a child worker reports GPT 5.5
|
|
438
|
+
with `high` reasoning, treat that as a launcher bug, relaunch with the explicit
|
|
439
|
+
`xhigh` config before mutation, and do not ask the user to continue through the
|
|
440
|
+
model-quality warning. If the parent cannot identify a supported worker model
|
|
441
|
+
and launch it with `xhigh` reasoning, stop with
|
|
442
|
+
`blocked: worker_model_unavailable` before mutation.
|
|
436
443
|
When wrapping multiple local Codex CLI workers in a shell launcher, run the
|
|
437
444
|
wrapper with `/bin/bash -lc` or another explicitly chosen portable shell. Do not
|
|
438
445
|
rely on zsh-specific behavior. Do not use `status` as a shell variable because
|
|
@@ -444,7 +451,7 @@ Do not embed `<<'WORKER_PROMPT'` heredocs inside a single quoted or double
|
|
|
444
451
|
quoted `/bin/bash -lc '...'` command string; nested quoting is brittle and can
|
|
445
452
|
truncate the first worker before mutation. For multi-worker launchers, write one
|
|
446
453
|
plain prompt file per lane under the current run directory, then start each
|
|
447
|
-
worker with `codex -a never -s danger-full-access exec --skip-git-repo-check -m "$WORKER_MODEL" -C "$REPO" -o
|
|
454
|
+
worker with `codex -a never -s danger-full-access -c model_reasoning_effort=xhigh exec --skip-git-repo-check -m "$WORKER_MODEL" -C "$REPO" -o
|
|
448
455
|
"$worker_final_file" - < "$worker_prompt_file"`. Keep launcher shell variables
|
|
449
456
|
double-quoted and keep the prompt heredoc only in a standalone script/prompt-file
|
|
450
457
|
write step, not inside an already quoted shell argument. If the first launcher
|
|
@@ -550,7 +557,7 @@ launchers, write the same prompt body to `<worker-prompt-file>` and launch the
|
|
|
550
557
|
worker with stdin redirected from that file:
|
|
551
558
|
|
|
552
559
|
```
|
|
553
|
-
codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
|
|
560
|
+
codex -a never -s danger-full-access -c model_reasoning_effort=xhigh exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
|
|
554
561
|
Use $sellable:create-campaign as the governing campaign workflow for this one lane worker.
|
|
555
562
|
Use the evergreen plan/packet below only for lane scope, source metadata,
|
|
556
563
|
postconditions, side-effect caps, and durable receipt proof.
|
|
@@ -567,7 +574,8 @@ Write the durable receipt to this exact path: <receiptArtifactPath>
|
|
|
567
574
|
|
|
568
575
|
If your runtime exposes a goal tool, create or maintain this exact goal:
|
|
569
576
|
complete action <actionId> only when <receiptArtifactPath> exists as valid JSON
|
|
570
|
-
for this lane or
|
|
577
|
+
for this lane, or only for the accepted Post Engagers no-source blockers listed
|
|
578
|
+
below when a blocked receipt has been written at that same path.
|
|
571
579
|
|
|
572
580
|
Create-campaign goal prompt (authoritative; paste verbatim from the matching
|
|
573
581
|
createCampaignGoals[].goalPrompt):
|
|
@@ -595,6 +603,11 @@ Use mcp__sellable only. Do not use admin tools, direct DB, Prisma, SQL, web sear
|
|
|
595
603
|
Do not launch, start, schedule, send, or use paid InMail.
|
|
596
604
|
For filter proof, durable receipt status must be `filterDecisionReceipt.status:"applied"` only; never `completed`, `confirmed`, `done`, or aliases.
|
|
597
605
|
For generated messages, `update_cell` is allowed only for the semantic Approved checkbox. Never use `update_cell` for generated message text/body/sample copy. Bad copy requires `revise_message_template_and_rerun` or brief/template revision plus Generate Message rerun. Any generated-message cell override is `blocked: generated_message_cell_override`.
|
|
606
|
+
If `bootstrap_create_campaign.modelQuality.status === "warn"` because the child
|
|
607
|
+
worker reports GPT 5.5 with `high` reasoning, that is a parent launcher
|
|
608
|
+
configuration bug, not an operator approval path inside the worker. Stop before
|
|
609
|
+
mutation, tell the parent to relaunch this lane with
|
|
610
|
+
`-c model_reasoning_effort=xhigh`, and do not mark the worker goal complete.
|
|
598
611
|
Complete only this lane. Do not end with narration only. Before your final
|
|
599
612
|
response, run a local file-existence and JSON self-check for
|
|
600
613
|
<receiptArtifactPath>. If the lane succeeded, write the canonical success
|
|
@@ -608,12 +621,14 @@ receipt, not a worker crash: use one of
|
|
|
608
621
|
`post_engagers_no_sender_owned_posts`, or
|
|
609
622
|
`post_engagers_source_author_mismatch`, include the source/readback evidence,
|
|
610
623
|
and stop without scraping third-party authors or generating misleading warm
|
|
611
|
-
copy.
|
|
612
|
-
|
|
624
|
+
copy. Any other blocked receipt is not a goal-complete success condition; it is
|
|
625
|
+
a failed lane return that the parent must report or repair. The terminal success
|
|
626
|
+
condition is filesystem proof that <receiptArtifactPath> exists with a success
|
|
627
|
+
receipt, or an accepted Post Engagers no-source blocked/no-op receipt.
|
|
613
628
|
WORKER_PROMPT
|
|
614
629
|
|
|
615
630
|
# Multi-worker launcher equivalent:
|
|
616
|
-
codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - < <worker-prompt-file>
|
|
631
|
+
codex -a never -s danger-full-access -c model_reasoning_effort=xhigh exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - < <worker-prompt-file>
|
|
617
632
|
```
|
|
618
633
|
|
|
619
634
|
If any placeholder cannot be filled from the current plan, matching
|
|
@@ -863,7 +878,11 @@ by someone else. Use the explicit blocker codes
|
|
|
863
878
|
`acceptedLaneBlockers`, so the parent can report the truthful no-op instead of
|
|
864
879
|
retrying invalid source repair. This exception does not apply to shared lanes,
|
|
865
880
|
bad generated copy, stale plans, target mismatch, missing receipt files, launch
|
|
866
|
-
or schedule side effects,
|
|
881
|
+
or schedule side effects, model-quality/preflight blockers, worker model
|
|
882
|
+
availability blockers, or arbitrary worker failures. A blocked receipt outside
|
|
883
|
+
the accepted Post Engagers source codes must not be treated as completion, must
|
|
884
|
+
not be used to mark the worker goal complete, and must not let the parent report
|
|
885
|
+
the evergreen command as complete.
|
|
867
886
|
|
|
868
887
|
All step proof objects must live under `createCampaignStepReceipt`. Do not put
|
|
869
888
|
`createCampaignWorkflowReceipt`, `campaignBriefReceipt`,
|
|
@@ -1339,9 +1358,11 @@ Message, and verify current-revision sample messages before final completion.
|
|
|
1339
1358
|
senders, the copy must be safe for every attached sender to send. Do not
|
|
1340
1359
|
use founder-only first person such as "I'm building", "my company", "my
|
|
1341
1360
|
team", or "I have a framework" unless every attached sender can credibly
|
|
1342
|
-
say it. Prefer sender-agnostic company/team language
|
|
1343
|
-
|
|
1344
|
-
problem question.
|
|
1361
|
+
say it. Prefer sender-agnostic company/team language grounded in the
|
|
1362
|
+
current workspace's verified company, offer, buyer, and proof, plus one
|
|
1363
|
+
clear problem question. Do not reuse unrelated fixture/example customer
|
|
1364
|
+
names, domains, verticals, product categories, use cases, or proof points
|
|
1365
|
+
unless the current workspace/company research independently supports them.
|
|
1345
1366
|
Before Message Drafting runs, the campaign brief must already include
|
|
1346
1367
|
these shared-lane hard avoids and source-use rules. Do not rely on a
|
|
1347
1368
|
failed first generation batch to discover that self-intros, generic
|
|
@@ -1351,7 +1372,10 @@ Message, and verify current-revision sample messages before final completion.
|
|
|
1351
1372
|
Shared Signal Discovery samples may use a supported topic bridge such as
|
|
1352
1373
|
"saw you around conversations about [high-level topic], so hope this is
|
|
1353
1374
|
relevant" when the topic is grounded in source evidence and not
|
|
1354
|
-
activity-log phrasing.
|
|
1375
|
+
activity-log phrasing. Signal Discovery is only a lead-source provider;
|
|
1376
|
+
do not infer a product category, buyer pain, offer, asset, CTA, or
|
|
1377
|
+
provider-themed message direction from the lane/provider name.
|
|
1378
|
+
Translate source/tool terms into prospect-facing
|
|
1355
1379
|
business language; do not put internal workflow vocabulary such as
|
|
1356
1380
|
"Codex-style workflow", "MCP", "agent workflows",
|
|
1357
1381
|
"Claude Code", or "Claude-style agent workflows" in customer-facing
|
|
@@ -1516,7 +1540,10 @@ Message, and verify current-revision sample messages before final completion.
|
|
|
1516
1540
|
`issues`.
|
|
1517
1541
|
Shared Signal Discovery samples may use `"saw you around conversations
|
|
1518
1542
|
about [high-level topic], so hope this is relevant"` when the topic is
|
|
1519
|
-
supported by source evidence and not activity-log phrasing.
|
|
1543
|
+
supported by source evidence and not activity-log phrasing. Signal
|
|
1544
|
+
Discovery is only a lead-source provider; reject provider-themed campaign
|
|
1545
|
+
copy unless that language is independently supported by the current
|
|
1546
|
+
workspace/company research. Shared Cold
|
|
1520
1547
|
Fallback samples must still reject source/conversation hedges such as
|
|
1521
1548
|
`"hope this is relevant"`, `"might be interested"`, or `"saw you in a few
|
|
1522
1549
|
conversations"`.
|