@sellable/install 0.1.283 → 0.1.284

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.283",
3
+ "version": "0.1.284",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code and Codex",
6
6
  "bin": {
@@ -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 sandbox flags must come before the `exec` subcommand for Codex
414
- CLI builds that expose `-a`/`-s` only at top level. `--skip-git-repo-check` belongs after `exec` because current customer and VPS Codex CLI builds expose it
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 instead of relying on the Codex CLI default
422
- model. Use the parent runtime model when known, for example:
423
- `codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
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 nearby aliases such as `gpt-5.3-codex`,
428
- `gpt-5.2`, `gpt-5-codex`, `codex-latest`, or `codex-mini-latest` before trying
429
- the exact parent model. A one-line probe must count as supported only when it
430
- exits 0 and returns the requested output; a session header followed by a
431
- `not supported` error is rejected, not accepted.
432
- Do not rely on the Codex CLI default model; some customer and VPS installs
433
- default to unavailable model aliases. If the parent cannot identify a supported
434
- worker model and a test `codex exec -m <worker-model>` launch is rejected, stop
435
- with `blocked: worker_model_unavailable` before mutation.
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 when a blocked receipt has been written at that same path.
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. The terminal condition is filesystem proof that <receiptArtifactPath>
612
- exists.
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, or arbitrary worker failures.
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`,