@sellable/install 0.1.261 → 0.1.263
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
|
@@ -1944,8 +1944,7 @@ ${allowedToolsYaml(REFILL_SENDS_ALLOWED_TOOLS)}
|
|
|
1944
1944
|
|
|
1945
1945
|
Use this as the customer-facing entrypoint for the Sellable \`refill-sends\`
|
|
1946
1946
|
workflow. It supports \`--yolo\` and optional repeated \`--sender <name-or-id>\`
|
|
1947
|
-
selectors.
|
|
1948
|
-
sender-local date instead of the default two send-day horizon.
|
|
1947
|
+
selectors.
|
|
1949
1948
|
|
|
1950
1949
|
## Bootstrap
|
|
1951
1950
|
|
|
@@ -1961,7 +1960,7 @@ Desktop, then start a new thread.
|
|
|
1961
1960
|
## Execute Workflow
|
|
1962
1961
|
|
|
1963
1962
|
1. Call \`mcp__sellable__get_auth_status({})\`.
|
|
1964
|
-
2. Normalize invocation arguments with \`mcp__sellable__refill_sends({ yolo, senders, senderIds, senderNames
|
|
1963
|
+
2. Normalize invocation arguments with \`mcp__sellable__refill_sends({ yolo, senders, senderIds, senderNames })\` when the host exposes typed MCP tools.
|
|
1965
1964
|
3. Load the canonical prompt via
|
|
1966
1965
|
\`mcp__sellable__get_subskill_prompt({ subskillName: "refill-sends" })\`,
|
|
1967
1966
|
then load \`mcp__sellable__get_subskill_prompt({ subskillName: "refill-sends-workflow" })\`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: create-evergreen-campaigns
|
|
3
3
|
description: Reconcile a sender team's evergreen campaigns — create-or-reuse the standing campaigns (per-sender post engagers + shared signal/cold lanes) idempotently, and when asked for customer-ready/full setup, complete each customer-visible campaign to paused send review with brief, rows, generated review messages, one approval gate row, and sequence. Never duplicates, never launches.
|
|
4
|
-
visibility:
|
|
4
|
+
visibility: public
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Create Evergreen Campaigns
|
|
@@ -14,6 +14,40 @@ producing duplicates. This skill never launches campaigns; customer-visible
|
|
|
14
14
|
completion stops at paused send review.
|
|
15
15
|
</role>
|
|
16
16
|
|
|
17
|
+
## Operational Fast Path
|
|
18
|
+
|
|
19
|
+
In automation or `--yolo` customer-visible setup, use this path before the
|
|
20
|
+
long-form contract below:
|
|
21
|
+
|
|
22
|
+
1. Resolve the active workspace and explicit sender scopes, then call
|
|
23
|
+
`setup_evergreen_campaigns({ mode:"plan", yolo:true, postEngagerSenderIds,
|
|
24
|
+
sharedSenderIds })`. If the user did not name senders but
|
|
25
|
+
`get_campaign_waterfall` returns an active managed evergreen/prod waterfall
|
|
26
|
+
for the workspace, derive exact sender scopes from the waterfall `senderRefs`
|
|
27
|
+
and canonical Post Engagers/shared slots before the first setup plan. Match
|
|
28
|
+
`senderRefs` to `list_senders` by LinkedIn public identifier, display name,
|
|
29
|
+
or obvious handle/name alias; record the mapping in the plan notes. Do not
|
|
30
|
+
call setup with empty sender arrays when product-visible waterfall evidence
|
|
31
|
+
identifies the evergreen sender scope.
|
|
32
|
+
2. If the plan is not current, lacks lane packets, or has
|
|
33
|
+
`autoExecutable:false`, return the exact blocker before mutation.
|
|
34
|
+
3. Choose the worker runtime immediately. When running under Codex CLI or on VPS,
|
|
35
|
+
the local Codex CLI fallback is the default accepted runtime. Use visible
|
|
36
|
+
Codex app threads only when the callable thread tools are actually available.
|
|
37
|
+
If shell execution is unavailable and no visible/durable thread surface is
|
|
38
|
+
callable, return `blocked: missing_visible_or_durable_lane_worker_runtime`
|
|
39
|
+
before mutation.
|
|
40
|
+
4. Write one compact prompt file per selected lane packet, create the receipt
|
|
41
|
+
directory, and launch all lane workers in parallel with the literal Codex CLI
|
|
42
|
+
worker command shape below. The parent does not create campaign shells.
|
|
43
|
+
5. Collect fresh durable receipts, verify with the original planRevision and
|
|
44
|
+
selectedActionIds, then run the idempotency plan and show sample messages.
|
|
45
|
+
|
|
46
|
+
Do not keep reasoning, re-reading prompts, or restating this workflow instead of
|
|
47
|
+
dispatching workers. If the first worker cannot be launched after at most one
|
|
48
|
+
short planning pass, return `blocked: worker_dispatch_deadline_exceeded` before
|
|
49
|
+
directory setup or product mutation.
|
|
50
|
+
|
|
17
51
|
<inputs>
|
|
18
52
|
The invoking prompt names the senders ("create evergreen campaigns for csreyes92 and thomas"). Resolve each via `list_senders`.
|
|
19
53
|
|
|
@@ -58,6 +92,32 @@ Default evergreen plan per workspace (override only if the prompt specifies diff
|
|
|
58
92
|
1. **`<Sender Name> - Post Engagers`** — one per sender (warm lane, highest priority)
|
|
59
93
|
2. **`<Workspace/Team> - Shared Signal Discovery`** — one shared warm-signal campaign lane across senders
|
|
60
94
|
3. **`<Workspace/Team> - Shared Cold Fallback`** — one shared cold/fallback campaign lane across senders
|
|
95
|
+
|
|
96
|
+
Sender scope resolution is safety-critical. Do not pass
|
|
97
|
+
`allConnectedSenders:true` unless the invoking prompt explicitly says "all
|
|
98
|
+
connected senders", "every connected sender", "all seats", or names an
|
|
99
|
+
equivalent all-sender scope. If the user says "all 4 campaigns", "the four
|
|
100
|
+
evergreen campaigns", or names specific senders, resolve those exact senders
|
|
101
|
+
and pass explicit `postEngagerSenderIds` plus `sharedSenderIds`; do not broaden
|
|
102
|
+
the plan to every connected sender. If the prompt does not name senders but the
|
|
103
|
+
active workspace has a product-visible managed evergreen/prod waterfall, derive
|
|
104
|
+
the exact scope from that waterfall instead of using all connected senders:
|
|
105
|
+
Post Engagers sender scope is the senderRefs that own person-specific
|
|
106
|
+
Post Engagers slots; shared sender scope is the union of senderRefs on the
|
|
107
|
+
shared Signal Discovery and Shared Cold Fallback waterfall slots. If the
|
|
108
|
+
waterfall has one clear production evergreen program for the workspace, this is
|
|
109
|
+
not ambiguous even when `list_senders` returns additional connected senders.
|
|
110
|
+
In non-interactive or `--yolo` mode, when more than two connected senders exist
|
|
111
|
+
and neither the prompt nor product-visible waterfall evidence identifies exact
|
|
112
|
+
evergreen sender scope, stop before mutation with
|
|
113
|
+
`blocked: ambiguous_post_engager_sender_scope` and report the sender ids/names
|
|
114
|
+
needed for approval. Never let "workspace default" silently create Post
|
|
115
|
+
Engagers lanes for extra senders.
|
|
116
|
+
Short form: Do not pass `allConnectedSenders:true` unless the prompt explicitly says all/every connected sender.
|
|
117
|
+
Short form: "all 4 campaigns" means explicit sender scope plus two shared lanes, not all connected senders.
|
|
118
|
+
Short form: Product-visible managed evergreen/prod waterfall senderRefs are exact sender scope.
|
|
119
|
+
Short form: Do not report `no_senders` while waterfall senderRefs can be mapped to list_senders.
|
|
120
|
+
Short form: In `--yolo`, ambiguous multi-sender scope blocks before mutation.
|
|
61
121
|
</inputs>
|
|
62
122
|
|
|
63
123
|
<command_backed_workflow>
|
|
@@ -71,6 +131,13 @@ error, or does not return a current `planRevision` with lane packets, stop
|
|
|
71
131
|
immediately with `blocked: setup_evergreen_campaigns_unavailable`. Do not fall
|
|
72
132
|
back to ad hoc create-campaign calls, inventory-only guesses, or direct shell
|
|
73
133
|
creation when the command-backed plan is missing.
|
|
134
|
+
Exception: if an initial unscoped plan returns only `blocked:no_senders`, and
|
|
135
|
+
the parent has already read `list_senders` plus a product-visible managed
|
|
136
|
+
evergreen/prod waterfall with mappable `senderRefs`, immediately re-run the
|
|
137
|
+
plan once with explicit derived `postEngagerSenderIds` and `sharedSenderIds`.
|
|
138
|
+
Do not report `no_senders` to the user until that scoped plan has also failed.
|
|
139
|
+
If senderRef mapping is partial, stop with
|
|
140
|
+
`blocked: ambiguous_post_engager_sender_scope` and include the unmapped refs.
|
|
74
141
|
|
|
75
142
|
MCP/product-visible proof only: every success claim must be observable through
|
|
76
143
|
the installed Sellable MCP tools and product-visible readbacks a normal user or
|
|
@@ -215,7 +282,8 @@ After bounded delegated approval or safe `--yolo`, fan out lane worker tasks
|
|
|
215
282
|
only from the current plan. Each worker receives the complete lane packet:
|
|
216
283
|
workspace id, sender ids, lane key/type, existing campaign/table binding or
|
|
217
284
|
create intent, source hints, caps, planRevision, actionId, allowed side effects,
|
|
218
|
-
postconditions,
|
|
285
|
+
postconditions, the parent `postEngagerSenderIds`, the parent
|
|
286
|
+
`sharedSenderIds`, and the packet's `workerDispatch` policy. Treat
|
|
219
287
|
`workerDispatch.requiresVisibleThreadOrDurableReceipt:true` as a hard
|
|
220
288
|
execution boundary, not guidance. Read and preserve `workerDispatch.acceptedRuntimes`,
|
|
221
289
|
`workerDispatch.rejectedRuntimes`, and `workerDispatch.receiptArtifactHint`
|
|
@@ -234,6 +302,15 @@ parent packet, do not mutate and do not use it as `setupPlanCall` proof; stop
|
|
|
234
302
|
with `blocked: worker_plan_scope_drift` and ask the parent to re-plan.
|
|
235
303
|
Short form: If a worker-local plan omits `postEngagerSenderIds:[]`, do not use it as `setupPlanCall` proof.
|
|
236
304
|
Short form: stop with `blocked: worker_plan_scope_drift`.
|
|
305
|
+
Every worker prompt must include both parent scope arrays as explicit fields:
|
|
306
|
+
`Parent postEngagerSenderIds:` and `Parent sharedSenderIds:`. Workers must
|
|
307
|
+
preserve parent postEngagerSenderIds even for shared lanes. Never run a
|
|
308
|
+
shared-lane worker-local plan with `postEngagerSenderIds:[]` unless the parent
|
|
309
|
+
`postEngagerSenderIds` is exactly `[]`. Every durable receipt must copy these
|
|
310
|
+
arrays to top-level `parentPostEngagerSenderIds` and `parentSharedSenderIds`
|
|
311
|
+
before completion.
|
|
312
|
+
Short form: Workers must preserve parent postEngagerSenderIds even for shared lanes.
|
|
313
|
+
Short form: Never run a shared-lane worker-local plan with `postEngagerSenderIds:[]` unless the parent `postEngagerSenderIds` is exactly `[]`.
|
|
237
314
|
|
|
238
315
|
Worker fan-out must use visible or durable execution. Preferred in local Codex
|
|
239
316
|
is a visible Codex thread created with the actual Codex app thread tools:
|
|
@@ -257,35 +334,128 @@ acceptable only when it writes a fresh durable per-lane receipt artifact as it
|
|
|
257
334
|
works.
|
|
258
335
|
When visible Codex app thread tools are unavailable but local Codex CLI is
|
|
259
336
|
available, the accepted durable streaming-worker command shape is:
|
|
260
|
-
`codex -a never -s danger-full-access exec -C <repo> -o <worker-final-file> -`.
|
|
337
|
+
`codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
|
|
261
338
|
The approval and sandbox flags must come before the `exec` subcommand for Codex
|
|
262
|
-
CLI builds that expose `-a`/`-s` only at top level.
|
|
339
|
+
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
|
|
340
|
+
as an `exec` subcommand flag, not a top-level flag. Do not use
|
|
263
341
|
`codex exec --ask-for-approval never ...` or `codex exec -a never ...`; those
|
|
264
342
|
forms fail on current customer CLI installs. Pipe the lane packet prompt on
|
|
265
343
|
stdin, require the worker to write `workerDispatch.receiptArtifactHint`, and
|
|
266
344
|
pass exactly one lane packet per worker.
|
|
345
|
+
When launching durable Codex CLI workers from an automation parent, pass an
|
|
346
|
+
explicit supported worker model instead of relying on the Codex CLI default
|
|
347
|
+
model. Use the parent runtime model when known, for example:
|
|
348
|
+
`codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> -`.
|
|
349
|
+
Do not rely on the Codex CLI default model; some customer and VPS installs
|
|
350
|
+
default to unavailable model aliases. If the parent cannot identify a supported
|
|
351
|
+
worker model and a test `codex exec -m <worker-model>` launch is rejected, stop
|
|
352
|
+
with `blocked: worker_model_unavailable` before mutation.
|
|
353
|
+
When wrapping multiple local Codex CLI workers in a shell launcher, run the
|
|
354
|
+
wrapper with `/bin/bash -lc` or another explicitly chosen portable shell. Do not
|
|
355
|
+
rely on zsh-specific behavior. Do not use `status` as a shell variable because
|
|
356
|
+
zsh treats it as read-only; use `exit_code` or `rc` instead. Receipt polling
|
|
357
|
+
must use `find <receipt-dir> -maxdepth 1 -name 'evg_*.json' -print` or an
|
|
358
|
+
explicit nullglob-safe equivalent. Do not use naked `*.json` globs under zsh,
|
|
359
|
+
and keep zero-receipt polls quiet with no `no matches found` diagnostics.
|
|
360
|
+
Do not embed `<<'WORKER_PROMPT'` heredocs inside a single quoted or double
|
|
361
|
+
quoted `/bin/bash -lc '...'` command string; nested quoting is brittle and can
|
|
362
|
+
truncate the first worker before mutation. For multi-worker launchers, write one
|
|
363
|
+
plain prompt file per lane under the current run directory, then start each
|
|
364
|
+
worker with `codex -a never -s danger-full-access exec --skip-git-repo-check -m "$WORKER_MODEL" -C "$REPO" -o
|
|
365
|
+
"$worker_final_file" - < "$worker_prompt_file"`. Keep launcher shell variables
|
|
366
|
+
double-quoted and keep the prompt heredoc only in a standalone script/prompt-file
|
|
367
|
+
write step, not inside an already quoted shell argument. If the first launcher
|
|
368
|
+
attempt exits with a shell parse error or before starting the first worker,
|
|
369
|
+
stop with `blocked: worker_launcher_quoting_failed` and do not retry by
|
|
370
|
+
loosening sender scope or mutating in the parent.
|
|
371
|
+
Do not use `nohup`, detached background workers, or any launcher that returns
|
|
372
|
+
before the workers finish and before receipts/final files exist. A durable
|
|
373
|
+
worker must run in a foreground command session, visible Codex thread, or a shell
|
|
374
|
+
that stays alive until every worker has finished. If using background jobs inside
|
|
375
|
+
one shell, the same shell must stay alive, wait for every worker PID, poll only
|
|
376
|
+
the expected receipt paths, and record a per-worker exit code plus final-file
|
|
377
|
+
paths and stderr/log paths before returning. If workers exit with empty logs and
|
|
378
|
+
no final files because the subprocess detached or was reaped, stop with
|
|
379
|
+
`blocked: worker_subprocess_detached_without_output` before parent verify.
|
|
380
|
+
When launching multiple local Codex CLI workers from one shell, start each
|
|
381
|
+
background job in the same shell that will call `wait`. Do not capture worker
|
|
382
|
+
PIDs through command substitution, a subshell, a pipeline, or a helper function
|
|
383
|
+
invoked as `worker_pid=$(launch_worker ...)`; those patterns make the captured
|
|
384
|
+
PID non-waitable by the parent shell. Use the same-shell PID array pattern:
|
|
385
|
+
`pids=(); codex ... > "$log_file" 2>&1 & pids+=("$!")`, then
|
|
386
|
+
`for pid in "${pids[@]}"; do wait "$pid" || rc=1; done`. If `wait` reports
|
|
387
|
+
`pid is not a child of this shell`, stop with
|
|
388
|
+
`blocked: worker_subprocess_detached_without_output`.
|
|
389
|
+
Short form: run the wrapper with `/bin/bash -lc`.
|
|
390
|
+
Short form: Do not rely on zsh-specific behavior.
|
|
391
|
+
Short form: Do not use `status` as a shell variable; use `exit_code` or `rc`.
|
|
392
|
+
Short form: Do not capture worker PIDs through command substitution or a subshell.
|
|
393
|
+
Short form: Use same-shell `pids+=("$!")` before waiting on every PID.
|
|
394
|
+
Short form: Receipt polling uses `find <receipt-dir> -maxdepth 1 -name 'evg_*.json' -print`.
|
|
395
|
+
Short form: Do not use naked `*.json` globs under zsh; no `no matches found` diagnostics.
|
|
396
|
+
Short form: Do not embed `<<'WORKER_PROMPT'` heredocs inside a quoted `/bin/bash -lc` command string.
|
|
397
|
+
Short form: Multi-worker launchers write prompt files and run `codex ... - < "$worker_prompt_file"`.
|
|
398
|
+
Short form: Do not use `nohup`; keep the worker process attached until receipt or blocker.
|
|
399
|
+
After the auto-executable plan returns, take at most one short planning pass to
|
|
400
|
+
choose the visible/durable worker runtime and build the worker launch packet.
|
|
401
|
+
Do not keep reasoning, re-reading prompts, or restating the workflow instead of
|
|
402
|
+
dispatching. If the parent cannot name the callable worker runtime and prepare
|
|
403
|
+
the first worker launch command/tool call immediately after that pass, stop with
|
|
404
|
+
`blocked: worker_dispatch_deadline_exceeded` before directory setup or mutation.
|
|
267
405
|
After creating receipt directories, dispatch workers immediately; do not perform extended parent reasoning, extra inventory, or prompt rewriting loops.
|
|
406
|
+
Before any campaign shell creation, the parent must dispatch every selected lane
|
|
407
|
+
worker from the current plan and record the visible thread id or
|
|
408
|
+
`receiptArtifactPath` for each selected actionId. The parent must not call
|
|
409
|
+
`create_campaign`, `import_leads`, `confirm_lead_list`, sequence tools, message
|
|
410
|
+
preparation tools, or `setup_evergreen_campaigns` with `mode:"apply"` or any
|
|
411
|
+
other mutating setup mode. In this wrapper, `setup_evergreen_campaigns` is
|
|
412
|
+
plan/verify authority only; customer-visible creation belongs inside lane
|
|
413
|
+
workers through `$sellable:create-campaign`. If a campaign/table id appears for
|
|
414
|
+
a create lane before that lane has a recorded worker runtime and fresh receipt
|
|
415
|
+
path/thread id, stop with `blocked: parent_mutated_before_worker_receipt` and
|
|
416
|
+
do not continue setup in the parent.
|
|
417
|
+
Short form: dispatch every selected lane worker before shell creation.
|
|
418
|
+
Short form: do not call `setup_evergreen_campaigns` with `mode:"apply"` from the parent.
|
|
268
419
|
Use a compact worker prompt: include lane packet JSON, original selectedActionIds,
|
|
269
|
-
original planRevision,
|
|
270
|
-
side-effect caps, and the
|
|
420
|
+
original planRevision, parent postEngagerSenderIds, parent sharedSenderIds,
|
|
421
|
+
receiptArtifactPath, workspace id, sender ids, side-effect caps, and the
|
|
422
|
+
instruction to load packaged prompts through MCP.
|
|
423
|
+
The worker prompt must include the exact filter status rule:
|
|
424
|
+
`filterDecisionReceipt.status:"applied"` only; never `completed`, `confirmed`,
|
|
425
|
+
`done`, or any other alias.
|
|
426
|
+
The worker prompt must include the generated-message write rule: `update_cell`
|
|
427
|
+
is allowed only for the semantic Approved checkbox, never for generated message
|
|
428
|
+
text/body/sample copy. Bad copy requires `revise_message_template_and_rerun` or
|
|
429
|
+
brief/template revision plus Generate Message rerun; any generated-message cell
|
|
430
|
+
override is `blocked: generated_message_cell_override`.
|
|
271
431
|
Do not paste the entire wrapper skill into worker prompts. If the parent cannot
|
|
272
432
|
launch at least one visible/durable worker immediately after directory setup,
|
|
273
433
|
stop with `blocked: worker_dispatch_stalled` before any mutation.
|
|
434
|
+
After launching workers, poll only the expected current-run receipt paths from
|
|
435
|
+
`workerDispatch.receiptArtifactHint`. If no worker receipt file appears within a
|
|
436
|
+
bounded wait, for example 10 minutes in automation, stop with
|
|
437
|
+
`blocked: worker_receipt_timeout`, include the worker ids/final-file paths/stderr
|
|
438
|
+
if available, and do not create or repair campaign shells in the parent.
|
|
274
439
|
Use only the repo-local `workerDispatch.receiptArtifactHint` returned by the
|
|
275
440
|
current lane packet for receipt paths.
|
|
276
441
|
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
442
|
After the receipt-directory `mkdir`, the next shell/tool call must launch the first lane worker.
|
|
278
443
|
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
|
|
280
|
-
and fill only the lane-specific placeholders
|
|
444
|
+
For the local Codex CLI fallback, use this literal durable CLI worker launch
|
|
445
|
+
template and fill only the lane-specific placeholders. For one-off direct worker
|
|
446
|
+
launches you may pipe a heredoc directly to `codex`; for multi-worker shell
|
|
447
|
+
launchers, write the same prompt body to `<worker-prompt-file>` and launch the
|
|
448
|
+
worker with stdin redirected from that file:
|
|
281
449
|
|
|
282
450
|
```
|
|
283
|
-
codex -a never -s danger-full-access exec -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
|
|
451
|
+
codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - <<'WORKER_PROMPT'
|
|
284
452
|
Use $sellable:create-evergreen-campaigns as the governing skill for this one lane worker.
|
|
285
453
|
|
|
286
454
|
Workspace id: <workspaceId>
|
|
287
455
|
Parent planRevision: <planRevision>
|
|
288
456
|
Parent selectedActionIds: <selectedActionIds JSON>
|
|
457
|
+
Parent postEngagerSenderIds: <postEngagerSenderIds JSON>
|
|
458
|
+
Parent sharedSenderIds: <sharedSenderIds JSON>
|
|
289
459
|
Action id: <actionId>
|
|
290
460
|
Lane key: <laneKey>
|
|
291
461
|
Allowed side effects: <allowedSideEffects JSON>
|
|
@@ -297,8 +467,13 @@ Worker lane packet JSON:
|
|
|
297
467
|
Load `$sellable:create-campaign` and nested prompts/assets through Sellable MCP loaders.
|
|
298
468
|
Use mcp__sellable only. Do not use admin tools, direct DB, Prisma, SQL, web search, or browser search.
|
|
299
469
|
Do not launch, start, schedule, send, or use paid InMail.
|
|
470
|
+
For filter proof, durable receipt status must be `filterDecisionReceipt.status:"applied"` only; never `completed`, `confirmed`, `done`, or aliases.
|
|
471
|
+
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`.
|
|
300
472
|
Complete only this lane, write the required durable receipt JSON, and stop.
|
|
301
473
|
WORKER_PROMPT
|
|
474
|
+
|
|
475
|
+
# Multi-worker launcher equivalent:
|
|
476
|
+
codex -a never -s danger-full-access exec --skip-git-repo-check -m <worker-model> -C <repo> -o <worker-final-file> - < <worker-prompt-file>
|
|
302
477
|
```
|
|
303
478
|
|
|
304
479
|
If any placeholder cannot be filled from the current lane packet, do not inspect
|
|
@@ -368,7 +543,14 @@ not a parent-thread summary. The receipt must include:
|
|
|
368
543
|
`senderIds`, `campaignId`, `tableId`, and `createIntent`. Do not use
|
|
369
544
|
`laneActionId`, `lanePacketActionId`, `delegatedPlanRevision`,
|
|
370
545
|
`delegatedActionId`, or freeform `requestedCall` text as a substitute for
|
|
371
|
-
these fields.
|
|
546
|
+
these fields. For create lanes, `setupPlanCall.campaignId` and
|
|
547
|
+
`setupPlanCall.tableId` must be the actual created campaign/table ids after
|
|
548
|
+
creation and readback. If the parent lane packet carried null ids before
|
|
549
|
+
creation, preserve that original packet only in a separate `parentLanePacket`
|
|
550
|
+
object; do not leave `setupPlanCall.campaignId:null` or
|
|
551
|
+
`setupPlanCall.tableId:null`.
|
|
552
|
+
Short form: For create lanes, `setupPlanCall.campaignId` and `setupPlanCall.tableId` must be the actual created campaign/table ids.
|
|
553
|
+
Short form: Do not leave `setupPlanCall.campaignId:null` or `setupPlanCall.tableId:null`.
|
|
372
554
|
- `createCampaignWorkflowReceipt`: proof the worker loaded the actual installed
|
|
373
555
|
`$sellable:create-campaign` wrapper instead of doing ad hoc MCP calls. It must
|
|
374
556
|
include `skillCommand:"$sellable:create-campaign"`,
|
|
@@ -423,8 +605,26 @@ not a parent-thread summary. The receipt must include:
|
|
|
423
605
|
evidence field such as `rowCount`, `rowIdsHash`, or `rowEvidence`; do not
|
|
424
606
|
leave those only in `searchSignalsProof`, `importProof`, `coldFallbackProof`,
|
|
425
607
|
or narrative text for the parent/verifier to infer.
|
|
426
|
-
- `filterDecisionReceipt`: saved/applied filter
|
|
427
|
-
|
|
608
|
+
- `filterDecisionReceipt`: saved/applied ICP filter proof for the current
|
|
609
|
+
campaign/table basis. Customer-visible evergreen lanes must enable ICP
|
|
610
|
+
filtering with `enableICPFilters:true`, call `save_rubrics`, and save at
|
|
611
|
+
least three rubric/filter criteria before Message Drafting. Do not skip
|
|
612
|
+
filtering for evergreen setup. Missing or skipped filter proof is
|
|
613
|
+
`blocked: missing_filter_setup`.
|
|
614
|
+
Before the worker exits, the durable JSON must contain
|
|
615
|
+
`filterDecisionReceipt.status:"applied"`,
|
|
616
|
+
`filterDecisionReceipt.enableICPFilters:true`, the current
|
|
617
|
+
`workflowTableId`, and concrete saved-filter proof such as
|
|
618
|
+
`filterDecisionReceipt.filterIds`, `filterDecisionReceipt.rubricIds`,
|
|
619
|
+
`filterDecisionReceipt.savedRubricCount`, or
|
|
620
|
+
`filterDecisionReceipt.headlineICPCriteria`.
|
|
621
|
+
The exact status string is contractual: use `status:"applied"` only.
|
|
622
|
+
Do not write `status:"completed"`, `status:"confirmed"`, `status:"saved"`,
|
|
623
|
+
`status:"done"`, or any other alias after saving filters; the parent verifier
|
|
624
|
+
rejects those aliases even when saved rubric proof exists.
|
|
625
|
+
Short form: Filter receipt status must be exactly `applied`.
|
|
626
|
+
Short form: Do not write `filterDecisionReceipt.status:"completed"`.
|
|
627
|
+
Short form: Do not write `filterDecisionReceipt.status:"confirmed"`.
|
|
428
628
|
- `messageDraftingReceipt`: the Message Drafting proof described below,
|
|
429
629
|
including packaged `generate-messages` prompt/assets and validation. Raw
|
|
430
630
|
fields like `generateMessagesPromptLoadedToHasMoreFalse`,
|
|
@@ -460,7 +660,10 @@ not a parent-thread summary. The receipt must include:
|
|
|
460
660
|
Before writing the durable receipt, run a receipt self-check. The top-level
|
|
461
661
|
receipt must include top-level `planRevision`, `actionId`, `laneKey`,
|
|
462
662
|
`laneType`, `workspaceId`, and `senderIds`, plus campaign/table/source ids and
|
|
463
|
-
row/message/approval counts.
|
|
663
|
+
row/message/approval counts. It must also include top-level `receiptArtifactPath`,
|
|
664
|
+
top-level `durableReceiptWritten:true`, top-level `receiptRunId`, and top-level
|
|
665
|
+
`receiptWrittenAt`; do not leave `receiptArtifactPath` only under
|
|
666
|
+
`createCampaignWorkflowReceipt` for the parent to patch during verify. Inside
|
|
464
667
|
`createCampaignStepReceipt.messageDraftingReceipt`, `sampleMessages[]` must
|
|
465
668
|
include `rowId`, `generatedMessageText`, `verdict`, and `issues`. Do not
|
|
466
669
|
substitute `message` for `generatedMessageText`. Do not substitute
|
|
@@ -472,6 +675,8 @@ before writing JSON; do not leave only raw objects like
|
|
|
472
675
|
`get_campaign_message_preparation_status`, `attachRecommendedSequenceResult`,
|
|
473
676
|
`finalCampaignRead`, or `finalTableRead`.
|
|
474
677
|
Self-check shorthand: top-level `planRevision`, `actionId`, `laneKey`, `laneType`, `workspaceId`, and `senderIds` must exist before worker completion.
|
|
678
|
+
Self-check shorthand: top-level `receiptArtifactPath`, `durableReceiptWritten:true`, `receiptRunId`, and `receiptWrittenAt` must exist before worker completion.
|
|
679
|
+
Self-check shorthand: top-level `receiptWrittenAt` must exist before worker completion.
|
|
475
680
|
Self-check shorthand: `campaignBriefReceipt.briefHash`,
|
|
476
681
|
`campaignBriefReceipt.deliveryFormat`, `campaignBriefReceipt.tokenRules`,
|
|
477
682
|
`campaignBriefReceipt.hardAvoids`, and `campaignBriefReceipt.sourceUseRules`
|
|
@@ -560,7 +765,12 @@ verification unless the same object also appears inside
|
|
|
560
765
|
"sourceLadderReason": "<why the current source is valid before colder sources>"
|
|
561
766
|
},
|
|
562
767
|
"filterDecisionReceipt": {
|
|
563
|
-
"status": "
|
|
768
|
+
"status": "applied",
|
|
769
|
+
"enableICPFilters": true,
|
|
770
|
+
"filterIds": ["<saved filter/rubric id>"],
|
|
771
|
+
"rubricIds": ["<saved rubric id>"],
|
|
772
|
+
"headlineICPCriteria": ["<saved ICP criterion>", "<saved ICP criterion>", "<saved ICP criterion>"],
|
|
773
|
+
"savedRubricCount": 3,
|
|
564
774
|
"workflowTableId": "<workflow table id>"
|
|
565
775
|
},
|
|
566
776
|
"messageDraftingReceipt": {
|
|
@@ -641,6 +851,25 @@ path itself in the worker thread:
|
|
|
641
851
|
exactly one semantic Approved cell through `select_campaign_cells` and
|
|
642
852
|
`update_cell`.
|
|
643
853
|
Approval shorthand: approve exactly one semantic Approved cell.
|
|
854
|
+
In this message-drafting path, `update_cell` is allowed only for the semantic
|
|
855
|
+
Approved checkbox. Do not use `update_cell` or any row/cell write to edit
|
|
856
|
+
generated message text, sample copy, or final message bodies in automation.
|
|
857
|
+
If generated copy fails review, update the campaign brief/message template
|
|
858
|
+
with `update_campaign_brief` or `revise_message_template_and_rerun`, then
|
|
859
|
+
rerun Generate Message and review current-revision generated output. Receipt
|
|
860
|
+
`sampleMessages` must come from generated current-revision cells after the
|
|
861
|
+
brief/template rerun, not from hand-edited message cell overrides. If a lane
|
|
862
|
+
used a generated-message body override, report
|
|
863
|
+
`blocked: generated_message_cell_override` instead of success.
|
|
864
|
+
Do not repair by overwriting bad generated message cells and then calling the
|
|
865
|
+
overwritten cells `sampleMessages`.
|
|
866
|
+
`messageDraftingReceipt.qualityReview.repairNote`,
|
|
867
|
+
`messageDraftingReceipt.toolsUsed`, or any proof mentioning generated
|
|
868
|
+
message cell repair through `update_cell` is self-incriminating and must be
|
|
869
|
+
`blocked: generated_message_cell_override`.
|
|
870
|
+
Short form: `update_cell` is allowed only for the semantic Approved checkbox.
|
|
871
|
+
Short form: Do not use `update_cell` to edit generated message text.
|
|
872
|
+
Short form: Bad copy requires brief/template revision plus Generate Message rerun.
|
|
644
873
|
4. Poll `get_campaign_message_preparation_status` until no queued/active cells
|
|
645
874
|
remain or a bounded stop reason is returned.
|
|
646
875
|
5. Use `get_campaign_messages_preview` or `select_campaign_cells` to inspect
|
|
@@ -667,6 +896,26 @@ The only accepted statusSource values are exactly `branch` and
|
|
|
667
896
|
`packaged-generate-messages-worker`; descriptive aliases such as
|
|
668
897
|
`package-readback-local-thread` are rejected.
|
|
669
898
|
|
|
899
|
+
Before any provider-specific source mutation for a newly created campaign,
|
|
900
|
+
reread `get_campaign_navigation_state({ campaignId })` and use that product
|
|
901
|
+
navigation state as the source-step authority. Do not jump from a shell directly
|
|
902
|
+
into `contact-search`, and do not jump from a shell directly into
|
|
903
|
+
`signal-discovery`. Advance through the product-visible source-selection step
|
|
904
|
+
first, then load the provider prompt and write only the provider/source fields
|
|
905
|
+
accepted for that current step. Never include sender reassignment fields in
|
|
906
|
+
source-step updates, never include custom narration fields in source-step
|
|
907
|
+
updates, and do not use guessed `currentStep` or watched narration payloads to
|
|
908
|
+
force the flow forward. If `update_campaign` rejects the source transition
|
|
909
|
+
twice, reread navigation/campaign state once; if the campaign is not already on
|
|
910
|
+
the intended source step, stop the lane with
|
|
911
|
+
`blocked: watched_source_transition_blocked` and include the rejected tool
|
|
912
|
+
result plus the readback. Do not loop on rejected `update_campaign` transitions.
|
|
913
|
+
Short form: do not jump from a shell directly into `contact-search`.
|
|
914
|
+
Short form: do not jump from a shell directly into `signal-discovery`.
|
|
915
|
+
Short form: never include sender reassignment fields in source-step updates.
|
|
916
|
+
Short form: never include custom narration fields in source-step updates.
|
|
917
|
+
Short form: do not loop on rejected `update_campaign` transitions.
|
|
918
|
+
|
|
670
919
|
One lane may produce exactly one CampaignOffer/campaign id and one current
|
|
671
920
|
workflow table id. For `intent:"create"`, the first successful
|
|
672
921
|
`create_campaign` result establishes the lane's only allowed campaign/table
|
|
@@ -705,9 +954,14 @@ the prospect's engagement unless the selected source evidence proves that exact
|
|
|
705
954
|
sender authored the post.
|
|
706
955
|
Shared lanes must reject generic product-summary samples that explain the
|
|
707
956
|
product in the same broad words for every row. Shared lanes must reject three
|
|
708
|
-
nearly identical samples after stripping the leading name.
|
|
709
|
-
|
|
710
|
-
|
|
957
|
+
nearly identical samples after stripping the leading name. Shared lanes must
|
|
958
|
+
fail quality review when any reviewed sample has non-empty `issues`; do not
|
|
959
|
+
approve or final-report samples with `verdict:"passed"` and non-empty `issues`.
|
|
960
|
+
If any of these failures appears, revise or rerun the packaged
|
|
961
|
+
create-campaign/generate-messages path from the lane worker before writing a
|
|
962
|
+
success receipt.
|
|
963
|
+
Short form: Shared lanes must fail quality review when any reviewed sample has non-empty `issues`.
|
|
964
|
+
Short form: Do not approve or final-report samples with `verdict:"passed"` and non-empty `issues`.
|
|
711
965
|
The generated-message cells are not prompt proof: `currentRevisionGeneratedMessages`,
|
|
712
966
|
Generate Message column counts, `messagesCount`, or rendered row previews prove
|
|
713
967
|
only that table cells exist from the current brief/template, not that the
|
|
@@ -727,10 +981,109 @@ duplicate-lane blockers before you call the command finished. If verify blocks,
|
|
|
727
981
|
report the blocker and repair only the missing postconditions from the same
|
|
728
982
|
current plan.
|
|
729
983
|
|
|
984
|
+
Before calling verify, the parent should build compact receipt objects from the
|
|
985
|
+
durable receipt files and pass those compact objects to MCP. The compact receipt
|
|
986
|
+
must preserve every verifier-owned field named above, including top-level ids,
|
|
987
|
+
`createCampaignStepReceipt`, `researchSenderReceipt`, canonical
|
|
988
|
+
filter/message/review/sequence/final proof, and at least three concrete sample
|
|
989
|
+
messages. It should omit large raw
|
|
990
|
+
search outputs, long post lists, full row arrays, raw provider responses, and
|
|
991
|
+
debug-only narration fields. Do not pass multi-hundred-kilobyte raw receipt
|
|
992
|
+
objects when a compact canonical receipt has the same proof; large raw verify
|
|
993
|
+
payloads can stall local MCP bridges and make UAT ambiguous.
|
|
994
|
+
Use a small Node JSON compactor for non-trivial compaction. Do not build complex
|
|
995
|
+
inline `jq` filters inside nested quoted shell strings; quote failures are a
|
|
996
|
+
UAT blocker and waste the verification run. The Node compactor must preserve
|
|
997
|
+
every canonical verifier object under `createCampaignStepReceipt`, including
|
|
998
|
+
`setupPlanCall`, `createCampaignWorkflowReceipt`, `researchSenderReceipt`,
|
|
999
|
+
`campaignBriefReceipt`, `sourceDecisionReceipt`, `filterDecisionReceipt`,
|
|
1000
|
+
`messageDraftingReceipt`, `reviewBatchReceipt`, `sequenceReceipt`,
|
|
1001
|
+
`finalPausedSendProof`, and `verifyCall`.
|
|
1002
|
+
When compacting, normalize `finalPausedSendProof.currentStep` and
|
|
1003
|
+
`finalPausedSendProof.campaignStatus` from nested pause/navigation readbacks if
|
|
1004
|
+
the worker receipt stored those values under `pauseCampaignResult`,
|
|
1005
|
+
`navigationReadback`, or `navigationProof`; do not pass an empty
|
|
1006
|
+
`finalPausedSendProof` object to verify.
|
|
1007
|
+
Do not print or `jq .` full receipt JSON into the terminal. For local checks,
|
|
1008
|
+
print only compact summaries such as file, actionId, laneKey, campaignId,
|
|
1009
|
+
filter status, sample count, approved count, and final status.
|
|
1010
|
+
Short form: Parent verify uses compact canonical receipt objects, not raw giant receipts.
|
|
1011
|
+
Short form: Do not dump full receipt JSON with `jq .`.
|
|
1012
|
+
Short form: Do not use complex inline `jq` for receipt compaction; use Node.
|
|
1013
|
+
Short form: Compact receipts must preserve `researchSenderReceipt`.
|
|
1014
|
+
Short form: Compact receipts must preserve direct `finalPausedSendProof.currentStep` and `campaignStatus`.
|
|
1015
|
+
Short form: Never change planRevision/actionId/laneKey while compacting receipts.
|
|
1016
|
+
|
|
1017
|
+
Parent repair dispatch uses the same compact discipline. If the parent sample
|
|
1018
|
+
quality gate fails after a worker receipt, do not launch a repair worker by
|
|
1019
|
+
embedding the full existing receipt JSON, raw row arrays, raw provider output,
|
|
1020
|
+
or the full wrapper skill in the repair prompt. Build a compact repair packet
|
|
1021
|
+
with only: workspace id, original planRevision, selectedActionIds, lane
|
|
1022
|
+
actionId, laneKey, campaignId, tableId, parent sender scope arrays, receipt
|
|
1023
|
+
artifact path, allowed repair side effects, failed sample snippets, failed
|
|
1024
|
+
quality codes, and the banned phrase list. The repair prompt must say
|
|
1025
|
+
`Do not include existing receipt JSON; load current product state through
|
|
1026
|
+
Sellable MCP readbacks and rewrite the durable receipt from fresh readbacks`.
|
|
1027
|
+
It must also say that the worker should verify the packaged Sellable MCP
|
|
1028
|
+
surface is loaded before declaring MCP unavailable, including `get_auth_status`,
|
|
1029
|
+
`get_subskill_prompt`, and the campaign readback tools. If a repair worker still
|
|
1030
|
+
cannot access Sellable MCP, it must write a separate repair-blocked artifact
|
|
1031
|
+
under `repair-blocked/` or its repair final file and must not overwrite the
|
|
1032
|
+
canonical lane receipt. Repair workers must stage successful repaired receipts
|
|
1033
|
+
under `repair-staged/` first; only after fresh MCP readbacks, improved current
|
|
1034
|
+
samples, exactly one approved generated route-proof row, and a local JSON
|
|
1035
|
+
self-check pass may the worker atomically replace the canonical lane receipt.
|
|
1036
|
+
Repair workers must not call `setup_evergreen_campaigns({ mode:"verify" })`
|
|
1037
|
+
or `setup_evergreen_campaigns({ mode:"plan" })`; parent verification and
|
|
1038
|
+
idempotency are parent responsibilities after all selected lane receipts are
|
|
1039
|
+
ready. A stale-plan/action response from any accidental repair-worker verify
|
|
1040
|
+
call is not a product-state blocker and must not prevent a repaired receipt from
|
|
1041
|
+
replacing the canonical receipt when fresh product readbacks and local
|
|
1042
|
+
sample/receipt checks pass.
|
|
1043
|
+
After the repair worker completes the final product readbacks
|
|
1044
|
+
(`get_campaign_messages_preview`, `get_campaign`, navigation/table readback),
|
|
1045
|
+
it must stage and then rewrite the durable receipt immediately before any
|
|
1046
|
+
extended narration, analysis, or final answer. If the repair worker cannot
|
|
1047
|
+
rewrite the durable receipt in one bounded pass, it must exit with
|
|
1048
|
+
`blocked: repair_receipt_write_timeout` without modifying the canonical lane
|
|
1049
|
+
receipt. The parent must treat an unchanged receipt mtime, missing repair final
|
|
1050
|
+
file, missing staged success artifact, or missing updated
|
|
1051
|
+
`messageDraftingReceipt.sampleMessages` after repair as blocked, never success.
|
|
1052
|
+
The parent must also treat a repair-blocked artifact as a failed run, but it
|
|
1053
|
+
must keep the pre-repair canonical receipt available for diagnostics and must
|
|
1054
|
+
not promote the blocked repair artifact as the lane receipt.
|
|
1055
|
+
Short form: repair prompts use compact repair packets, not full receipt JSON.
|
|
1056
|
+
Short form: Do not include existing receipt JSON in repair prompts.
|
|
1057
|
+
Short form: repair workers stage repaired receipts before replacing canonical receipts.
|
|
1058
|
+
Short form: repair blockers never overwrite canonical success receipts.
|
|
1059
|
+
Short form: repair workers do not call setup_evergreen_campaigns verify or plan.
|
|
1060
|
+
Short form: parent owns setup_evergreen_campaigns verify and idempotency.
|
|
1061
|
+
Short form: repair workers write the durable receipt immediately after final readbacks.
|
|
1062
|
+
Short form: missing repair receipt rewrite is `blocked: repair_receipt_write_timeout`.
|
|
1063
|
+
|
|
730
1064
|
Message proof for every customer-visible lane must come from the current
|
|
731
1065
|
campaign/table basis and include at least 3 generated review rows from the
|
|
732
1066
|
packaged `generate-messages` path before completion is reported.
|
|
733
1067
|
Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
1068
|
+
|
|
1069
|
+
The parent must run its own sample-quality gate before final reporting, even
|
|
1070
|
+
when worker receipts say `verdict:"passed"`. For Post Engagers lanes, reject
|
|
1071
|
+
any sample that adds a relevance question, CTA, product line, or extra paragraph
|
|
1072
|
+
after `Thank you for the support on my post about ...`; blocked phrases include
|
|
1073
|
+
`curious`, `open to`, `trying to`, `worth seeing`, `want to see`, and any
|
|
1074
|
+
Sellable/product explanation. For each shared lane, normalize the reviewed
|
|
1075
|
+
sample messages by removing leading greeting/name lines, first names, and
|
|
1076
|
+
whitespace-only differences; reject shared-lane samples when the message body is
|
|
1077
|
+
identical after removing first names or when all samples share the same paragraph
|
|
1078
|
+
skeleton. Also reject final shared-lane samples with `Hey <name>,` letter
|
|
1079
|
+
punctuation, weak relevance hedges, internal workflow vocabulary, self-intros,
|
|
1080
|
+
or any non-empty `issues`. Shared lanes must also reject mechanical
|
|
1081
|
+
product-process wording such as `sequence-prospects`, `dashboard overhead`,
|
|
1082
|
+
`campaign map`, `campaign idea into prospects`, `prospects, filters, messages`,
|
|
1083
|
+
`send-ready copy`, or `reviewed prospect lists`. If the parent finds repeated
|
|
1084
|
+
shared-lane sample copy, report `blocked: repeated_shared_lane_sample_copy`,
|
|
1085
|
+
revise the campaign brief/template through the packaged workflow, rerun Generate
|
|
1086
|
+
Message, and verify current-revision sample messages before final completion.
|
|
734
1087
|
</command_backed_workflow>
|
|
735
1088
|
|
|
736
1089
|
<objective>
|
|
@@ -765,19 +1118,26 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
765
1118
|
Short form: Do not pass the warm template into Shared Signal Discovery or Shared Cold Fallback.
|
|
766
1119
|
Short form: Shared lanes must reject generic product-summary samples.
|
|
767
1120
|
Short form: Shared lanes must reject three nearly identical samples.
|
|
1121
|
+
Short form: Shared lanes must reject low-confidence relevance hedges.
|
|
1122
|
+
Short form: Shared lanes must reject internal workflow vocabulary.
|
|
768
1123
|
Short form: revise or rerun the packaged create-campaign/generate-messages path.
|
|
769
1124
|
- **Post Engagers** first-message style: short, casual, references the
|
|
770
|
-
sender-authored post they engaged with,
|
|
771
|
-
vocabulary, no pitch, no meeting ask
|
|
1125
|
+
sender-authored post they engaged with, and stops after the thank-you
|
|
1126
|
+
line. Use **no internal vocabulary, no pitch, no meeting ask, no product
|
|
1127
|
+
line, and no relevance question** in message one:
|
|
772
1128
|
|
|
773
1129
|
```
|
|
774
1130
|
{{first_name}}
|
|
775
1131
|
|
|
776
1132
|
Hey there
|
|
777
1133
|
|
|
778
|
-
|
|
1134
|
+
Thank you for the support on my post about {{post_topic_line}}
|
|
779
1135
|
```
|
|
780
1136
|
|
|
1137
|
+
Do not add any paragraph after the thank-you line. In particular, do not
|
|
1138
|
+
append `curious, are you trying...`, `open to...`, `worth seeing...`, or
|
|
1139
|
+
Sellable/product copy to a Post Engagers first message.
|
|
1140
|
+
|
|
781
1141
|
- **Shared Signal Discovery** first-message style: short, casual, references
|
|
782
1142
|
the real observed signal/theme or public conversation. It may mention the
|
|
783
1143
|
engagement source only when the source evidence supports it. Do not say
|
|
@@ -791,6 +1151,28 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
791
1151
|
say it. Prefer sender-agnostic company/team language such as "we're
|
|
792
1152
|
helping CX teams..." or "at cxconnect.ai, we help..." and one clear
|
|
793
1153
|
problem question.
|
|
1154
|
+
Before Message Drafting runs, the campaign brief must already include
|
|
1155
|
+
these shared-lane hard avoids and source-use rules. Do not rely on a
|
|
1156
|
+
failed first generation batch to discover that self-intros, generic
|
|
1157
|
+
product summaries, or repeated structure are bad. If the first generated
|
|
1158
|
+
batch violates these rules, rerun, but record that as a repaired UAT path
|
|
1159
|
+
rather than the desired zero-shot path.
|
|
1160
|
+
Do not use low-confidence relevance hedges such as "hope this is
|
|
1161
|
+
relevant" in Shared Signal Discovery samples. Translate source/tool terms
|
|
1162
|
+
into prospect-facing business language; do not put internal workflow
|
|
1163
|
+
vocabulary such as "Codex-style workflow", "MCP", "agent workflows",
|
|
1164
|
+
"Claude Code", or "Claude-style agent workflows" in customer-facing
|
|
1165
|
+
message one. Also avoid generic product-process nouns such as "dashboard",
|
|
1166
|
+
"workflow", "source", "send-ready copy", "reviewed prospect lists",
|
|
1167
|
+
"reviewed pipeline", "leads, filters, messages", "review-ready LinkedIn
|
|
1168
|
+
sequence", "plain-language campaign idea into leads/filters/messages",
|
|
1169
|
+
and "sequence" unless the recipient's own product/category makes that
|
|
1170
|
+
exact word buyer-native.
|
|
1171
|
+
Short form: Shared Signal Discovery uses no self-intro such as "I'm building Sellable".
|
|
1172
|
+
Short form: Shared Signal Discovery uses no self-intro such as "We're building Sellable".
|
|
1173
|
+
Short form: Shared Signal Discovery uses no "I've put together".
|
|
1174
|
+
Short form: no low-confidence relevance hedge such as "hope this is relevant".
|
|
1175
|
+
Short form: no internal workflow vocabulary such as "Codex-style workflow", "MCP", "agent workflows", "Claude Code", or "Claude-style agent workflows".
|
|
794
1176
|
- **Shared Cold Fallback** first-message style: cold, direct, and cohesive.
|
|
795
1177
|
It must not pretend there was engagement, must not say "saw you pop up",
|
|
796
1178
|
and must not use a standalone name line followed by "Hey there" or other
|
|
@@ -805,14 +1187,57 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
805
1187
|
Sellable/Codex/Claude-Code feature summary
|
|
806
1188
|
across prospects. This is a single-message cold path unless the approved
|
|
807
1189
|
create-campaign message workflow proves a better delivery format.
|
|
1190
|
+
Do not open with "hope this is relevant" or a similar low-confidence
|
|
1191
|
+
relevance hedge. Do not use a repeated product-definition paragraph such
|
|
1192
|
+
as "Sellable is a GTM system" across samples; every reviewed cold sample
|
|
1193
|
+
should be specific enough to the role, company, or problem that the three
|
|
1194
|
+
sample messages do not share the same body skeleton.
|
|
1195
|
+
Do not use mechanical Sellable process language such as "campaign idea into
|
|
1196
|
+
prospects, filters, messages, and sequence setup", "sequence-prospects",
|
|
1197
|
+
"dashboard overhead", "campaign map", "send-ready copy", or "reviewed
|
|
1198
|
+
prospect lists" in final cold samples. Say the buyer problem and one plain
|
|
1199
|
+
outcome instead.
|
|
1200
|
+
Before Message Drafting runs, the campaign brief must already forbid
|
|
1201
|
+
self-intros, generic product summaries, opt-out shrugs, product-stack
|
|
1202
|
+
dumps, and repeated template structure. Do not let the first generation
|
|
1203
|
+
batch use "I'm building", "We're building", "I've put together", or
|
|
1204
|
+
similar language and then rely on a cleanup rerun as the normal path.
|
|
808
1205
|
Short form: Shared Cold Fallback must not pass just because the receipt says `generate-messages` loaded.
|
|
809
1206
|
Short form: Shared Cold Fallback uses no self-intro such as "We're building".
|
|
1207
|
+
Short form: Shared Cold Fallback uses no self-intro such as "I'm building Sellable".
|
|
1208
|
+
Short form: Shared Cold Fallback uses no "I've put together".
|
|
810
1209
|
Short form: Shared Cold Fallback uses no opt-out shrug such as "If this isn't relevant, ignore me".
|
|
811
1210
|
Short form: Shared Cold Fallback uses no product-stack dump.
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
1211
|
+
Short form: no low-confidence relevance hedge such as "hope this is relevant".
|
|
1212
|
+
Short form: no repeated product-definition paragraph such as "Sellable is a GTM system".
|
|
1213
|
+
- Customer-visible evergreen lanes must enable ICP filtering before Message
|
|
1214
|
+
Drafting. This applies to Post Engagers, Shared Signal Discovery, and
|
|
1215
|
+
Shared Cold Fallback. Do not skip filtering for evergreen setup, even when
|
|
1216
|
+
the source is warm. Use the normal `$sellable:create-campaign` filter
|
|
1217
|
+
workflow: set or save 3-5 headline ICP criteria, call `save_rubrics`, and
|
|
1218
|
+
persist `enableICPFilters:true` on the campaign before generating
|
|
1219
|
+
messages. Good evergreen filters should be light but real: role/budget
|
|
1220
|
+
relevance, company/market fit, and obvious non-buyer exclusion. For
|
|
1221
|
+
Post Engagers, keep filters permissive enough that warm source rows are not
|
|
1222
|
+
over-pruned, but still save the filter rules. For shared lanes, filter for
|
|
1223
|
+
buyers/operators relevant to the workspace offer and exclude students,
|
|
1224
|
+
job seekers, vendors, and off-topic commenters. The receipt must show
|
|
1225
|
+
`filterDecisionReceipt.status:"applied"`,
|
|
1226
|
+
`filterDecisionReceipt.enableICPFilters:true`, current `workflowTableId`,
|
|
1227
|
+
and saved filter/rubric proof with at least three saved rubric/filter
|
|
1228
|
+
criteria (`filterIds`, `rubricIds`, `headlineICPCriteria`, or
|
|
1229
|
+
`savedRubricCount`). Missing or skipped filter proof is
|
|
1230
|
+
`blocked: missing_filter_setup`.
|
|
1231
|
+
Short form: Customer-visible evergreen lanes must enable ICP filtering.
|
|
1232
|
+
Short form: `enableICPFilters:true`.
|
|
1233
|
+
Short form: Do not skip filtering for evergreen setup.
|
|
1234
|
+
Short form: at least three saved rubric/filter criteria.
|
|
1235
|
+
Short form: missing or skipped filter proof is `blocked: missing_filter_setup`.
|
|
1236
|
+
Short form: run Message Drafting only after saved filters are applied.
|
|
1237
|
+
- Every customer-visible lane must run Message Drafting from the current
|
|
1238
|
+
campaign/table basis after source rows exist. The worker must load the full
|
|
1239
|
+
packaged `generate-messages` prompt, every required asset, and
|
|
1240
|
+
`create-campaign-v2-validation`; if the internal branch handoff is not
|
|
816
1241
|
callable in the packaged runtime, the worker must call
|
|
817
1242
|
`start_campaign_message_preparation` and poll
|
|
818
1243
|
`get_campaign_message_preparation_status` from the lane worker. The
|
|
@@ -842,10 +1267,13 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
842
1267
|
- A source/list decision has been resolved and campaign rows are loaded. If
|
|
843
1268
|
there is no approved source or no rows can be copied, report `blocked` with
|
|
844
1269
|
the missing source detail; do not call the campaign complete.
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
1270
|
+
- The filter step is resolved with saved/applied filters. Customer-visible
|
|
1271
|
+
evergreen lanes must have `enableICPFilters:true`, at least three saved
|
|
1272
|
+
ICP filter/rubric criteria, and a receipt with
|
|
1273
|
+
`filterDecisionReceipt.status:"applied"`. Do not skip filters for
|
|
1274
|
+
evergreen setup. Do not leave customer-visible campaigns at
|
|
1275
|
+
`filter-choice`, `filter-rules`, or `apply-icp-rubric` and report success.
|
|
1276
|
+
Do not proceed to Message Drafting until saved filters are applied.
|
|
849
1277
|
- Message Drafting has run from the current campaign/table basis, using the
|
|
850
1278
|
create-campaign message prompt/assets and validation gate. Updating
|
|
851
1279
|
`currentStep:"messages"` is not proof. Parent-thread handwritten copy is
|
|
@@ -864,13 +1292,17 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
864
1292
|
reviewed sample messages. For Shared Cold Fallback, reject samples that
|
|
865
1293
|
open with a standalone name followed by "Hey there" or a similarly generic
|
|
866
1294
|
greeting. For Shared Cold Fallback, also reject samples with a self-intro
|
|
867
|
-
such as "We're building",
|
|
868
|
-
|
|
1295
|
+
such as "We're building", "I'm building Sellable", or "I've put
|
|
1296
|
+
together", an opt-out shrug such as "If this isn't relevant, ignore me",
|
|
1297
|
+
or a product-stack dump that repeats the same
|
|
869
1298
|
Sellable/Codex/Claude-Code feature summary across prospects. For all
|
|
870
1299
|
shared lanes, reject generic product-summary samples, repeated
|
|
871
|
-
near-identical samples,
|
|
872
|
-
|
|
873
|
-
|
|
1300
|
+
near-identical samples, low-confidence relevance hedges such as "hope this
|
|
1301
|
+
is relevant", internal workflow vocabulary, any sample with non-empty
|
|
1302
|
+
`issues`, and any preserved Post Engagers opener; revise or rerun the packaged
|
|
1303
|
+
create-campaign/generate-messages path before reporting completion. Do not
|
|
1304
|
+
approve or final-report samples with `verdict:"passed"` and non-empty
|
|
1305
|
+
`issues`.
|
|
874
1306
|
- The first review batch exists and at least 3 review rows have generated
|
|
875
1307
|
messages from the approved brief. If fewer than 3 usable rows exist, report
|
|
876
1308
|
the actual count and why.
|
|
@@ -944,7 +1376,9 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
944
1376
|
**Also confirm the delivery format and keep config in sync.** Ask the user whether DM lanes should send multiline (paragraph-per-message) or as a single message. Record the answer as the brief's `Delivery format:` line, and when multiline is chosen, set `actionConfig.sendEachParagraphAsMessage: true` on that campaign's `send_dm` column via `update_column` (config edits run no cells and nothing sends from unlaunched campaigns). Never set the paragraph-split flag on InMail columns — the option does not apply to InMail.
|
|
945
1377
|
6. **Interactive polish mode only: prove the template on one real row.** For ONE campaign that has at least one lead row (add one via `add_on_demand_leads` if every lane is empty and the user provides/approves a test lead), generate a message for exactly one row (`queue_campaign_cells` with `columnRole: "generateMessage"`, `rowSelector: { type: "reviewBatch", limit: 1 }` or the single row's ID), wait for it, then show the user the generated message next to the template — AND show how it would split if paragraph-per-message sending is enabled (list each paragraph as `msg 1:`, `msg 2:`, …) so the user confirms each one reads like a real typed message. Check alignment: tone, structure, no internal vocabulary, correct token substitution, no letter punctuation. Do NOT approve the row or generate for more rows — one sample only.
|
|
946
1378
|
7. **Automation mode template/config audit**: inspect existing send-lane briefs for a `Delivery format:` line and chat-native warm template. If a send lane is missing the line and the prompt allows cleanup, update only the campaign brief metadata with the safest default for that lane (`Delivery format: single message (LinkedIn DM; line breaks remain inside one generated message; no follow-up until reply)`). If cleanup is not allowed, flag it. Do not generate a sample row in automation mode unless the invocation explicitly asks for sample proof. In structure-only automation, do not generate a sample row unless the invocation explicitly asks for sample proof. In customer-visible completion, follow the Customer-Visible Completion Contract instead.
|
|
947
|
-
8. **
|
|
1379
|
+
8. **Final customer-facing completion must include sample messaging**: after customer-visible verify and the idempotency rerun pass, add a `Sample Messaging Review` section to the final answer. For every completed lane, show at least one full generated first message for every completed lane with campaign name, campaign id, row id, and verdict. Extract samples from nested `createCampaignStepReceipt.messageDraftingReceipt.sampleMessages`, not from top-level summaries; extract samples from nested `createCampaignStepReceipt.messageDraftingReceipt.sampleMessages` when building the final answer. Prefer the approved route-proof row when it is quality-valid; otherwise use the best reviewed generated row from the verified receipt. A final `passed` sample must have `issues:[]`; if every reviewed sample has issues, report the lane as needing message revision instead of presenting a passed sample. Never approve or final-report sample text produced by manual `update_cell` body edits. Do not summarize the sample into a copy theme. Show the actual message text so the user can inspect tone and specificity. If any sample is not quite right, tell the user they can ask the AI to update the campaign brief/message template and rerun Generate Message before launch. Never suggest launching, scheduling, or sending as the next step from this command.
|
|
1380
|
+
If the `Sample Messaging Review` section is omitted, the command is incomplete even when the structural campaign setup succeeded.
|
|
1381
|
+
9. **Report the reconcile plan and result** — every slot tagged `reused`, `created`, `repaired`, `flagged`, or `blocked`, plus template/sample details only when that mode ran:
|
|
948
1382
|
|
|
949
1383
|
```
|
|
950
1384
|
Evergreen Reconcile — {date}
|
|
@@ -953,6 +1387,17 @@ Evergreen Reconcile — {date}
|
|
|
953
1387
|
• Sellable.dev - Shared Signal Discovery: repaired (send review ready; 50 rows, 3 generated, 1 approved gate row, sequence attached, paused)
|
|
954
1388
|
• Sellable.dev - Shared Cold Fallback: created (send review ready; 50 rows, 3 generated, 1 approved gate row, sequence attached, paused)
|
|
955
1389
|
All campaigns remain unlaunched. Next: enrich/approve more rows when you want more items ready to schedule.
|
|
1390
|
+
|
|
1391
|
+
Sample Messaging Review
|
|
1392
|
+
• Christian Reyes - Post Engagers (`cmp_...`, row `row_...`, verdict: passed)
|
|
1393
|
+
```
|
|
1394
|
+
{{full generated first message}}
|
|
1395
|
+
```
|
|
1396
|
+
• Sellable.dev - Shared Cold Fallback (`cmp_...`, row `row_...`, verdict: passed)
|
|
1397
|
+
```
|
|
1398
|
+
{{full generated first message}}
|
|
1399
|
+
```
|
|
1400
|
+
If any sample is not quite right, ask the AI to update the campaign brief/message template and rerun Generate Message before launch.
|
|
956
1401
|
```
|
|
957
1402
|
</objective>
|
|
958
1403
|
|
|
@@ -66,18 +66,14 @@ Accepted invocation flags in the same user request:
|
|
|
66
66
|
fresh state reread.
|
|
67
67
|
- `--sender <name-or-id>`: scope to a specific sender; repeat for multiple
|
|
68
68
|
senders.
|
|
69
|
-
- `--until <YYYY-MM-DD>`: fill through that sender-local date, inclusive,
|
|
70
|
-
instead of the default two send-day horizon.
|
|
71
69
|
- `senderIds: <id>, <id>` or `senderNames: <name>, <name>`: explicit selector
|
|
72
70
|
alternatives when the host preserves natural-language arguments better than
|
|
73
71
|
shell-style flags.
|
|
74
|
-
- `untilDate: YYYY-MM-DD`: explicit date selector alternative when the host
|
|
75
|
-
preserves natural-language arguments better than shell-style flags.
|
|
76
72
|
|
|
77
73
|
When the host can call typed MCP tools, start with:
|
|
78
74
|
|
|
79
75
|
```text
|
|
80
|
-
refill_sends({ yolo?: boolean, senders?: string[], senderIds?: string[], senderNames?: string[], horizonSendDays?: number
|
|
76
|
+
refill_sends({ yolo?: boolean, senders?: string[], senderIds?: string[], senderNames?: string[], horizonSendDays?: number })
|
|
81
77
|
```
|
|
82
78
|
|
|
83
79
|
That command helper only normalizes arguments and returns the execution
|
|
@@ -136,16 +132,13 @@ reassignment, or campaigns outside those selected for the eligible sender set.
|
|
|
136
132
|
Stop and re-plan if the route, sender set, ids, caps, blockers, or side-effect
|
|
137
133
|
class drift before mutation.
|
|
138
134
|
|
|
139
|
-
In `--yolo`, the default two-day fill horizon is two send days
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
campaign to fill the gap: prefer recent/future scheduler-owned sends for that
|
|
147
|
-
sender, then strongest recent result evidence, then source health. Do not stop
|
|
148
|
-
after filling only one sender when the request was sender-scoped. If a
|
|
135
|
+
In `--yolo`, the default two-day fill horizon is two send days. For each target
|
|
136
|
+
sender, compute the bounded gap from that sender's healthy daily capacity,
|
|
137
|
+
existing future scheduler-owned scheduled sends, and rows already ready to
|
|
138
|
+
schedule across active campaigns enrolled with that sender. Then pick the best
|
|
139
|
+
same-sender campaign to fill the gap: prefer recent/future scheduler-owned sends
|
|
140
|
+
for that sender, then strongest recent result evidence, then source health. Do
|
|
141
|
+
not stop after filling only one sender when the request was sender-scoped. If a
|
|
149
142
|
same-source copy hits the campaign-table row cap, split the current source into
|
|
150
143
|
a bounded LinkedIn profile source list, confirm only that smaller list into the
|
|
151
144
|
same campaign, and operate on the copied review batch. Do not fall back to
|