@sellable/install 0.1.149 → 0.1.150
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.
|
@@ -37,14 +37,13 @@ the branch input.
|
|
|
37
37
|
|
|
38
38
|
## Required First Steps
|
|
39
39
|
|
|
40
|
-
1. Load the
|
|
40
|
+
1. Load the full normal-path message prompt:
|
|
41
41
|
|
|
42
|
-
`get_subskill_prompt({ subskillName: "generate-messages
|
|
42
|
+
`get_subskill_prompt({ subskillName: "generate-messages" })`
|
|
43
43
|
|
|
44
|
-
2. Use that prompt as the drafting contract.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
safety/checklist instructions as a substitute for the message prompt.
|
|
44
|
+
2. Use that prompt as the drafting contract. Do not use any alternate prompt,
|
|
45
|
+
examples-only shortcut, or create-campaign safety/checklist instructions as a
|
|
46
|
+
substitute for the full message prompt.
|
|
48
47
|
3. Draft only from the campaign brief, selected source context, and initial
|
|
49
48
|
campaign-table execution slice rows supplied by the parent.
|
|
50
49
|
4. Keep the work provisional until the user chooses `Use Template` in Messages.
|
|
@@ -57,8 +56,8 @@ Return the following to the parent thread:
|
|
|
57
56
|
- token fill rules and fallbacks
|
|
58
57
|
- one rendered good-fill sample for a plausible passing campaign-table row
|
|
59
58
|
- one omit/fallback sample when the row signal is not safe
|
|
60
|
-
- pass/fail notes against the generate-messages
|
|
61
|
-
-
|
|
59
|
+
- pass/fail notes against the generate-messages quality gates
|
|
60
|
+
- message-draft runtime status: `ready`, `blocked`, `retry-needed`, or `stale`
|
|
62
61
|
- basis token containing campaign revision/updatedAt, brief hash,
|
|
63
62
|
`selectedLeadListId`, `workflowTableId`, execution-slice row ids/hash, filter
|
|
64
63
|
choice, and rubric/filter basis when present
|
|
@@ -78,7 +77,7 @@ When reporting branch runtime proof, use this shape under
|
|
|
78
77
|
- `runId` or `fallbackId`
|
|
79
78
|
- `startedAt` and `updatedAt`
|
|
80
79
|
- `basisToken` and `basis`
|
|
81
|
-
- optional `
|
|
80
|
+
- optional `messageDraftOutputRef`, `messageDraftOutput`, and `error`
|
|
82
81
|
|
|
83
82
|
Do not tell the UI to show Message Draft Builder as running unless this proof
|
|
84
83
|
exists and points at the current non-empty campaign-table execution slice.
|
|
@@ -137,7 +136,7 @@ enablement`, or omit it.
|
|
|
137
136
|
|
|
138
137
|
Return a concise status with:
|
|
139
138
|
|
|
140
|
-
- prompt basis loaded: `generate-messages
|
|
139
|
+
- prompt basis loaded: `generate-messages`
|
|
141
140
|
- live campaign basis used
|
|
142
141
|
- proposed template
|
|
143
142
|
- token fill rules/fallbacks
|
|
@@ -43,7 +43,7 @@ sales Claude`; do not treat broad anchor-only lanes like `Claude Code`, `MCP`,
|
|
|
43
43
|
5. Promote the first narrow sample set when campaign-attached. If a
|
|
44
44
|
`campaignOfferId` was supplied, call `select_promising_posts({
|
|
45
45
|
campaignOfferId, selectionMode: "replace", selections, headlineICPCriteria,
|
|
46
|
-
currentStep: "signal-discovery" })` before sampling so the watched Signal
|
|
46
|
+
scrapePlanMode: "all-selected", currentStep: "signal-discovery" })` before sampling so the watched Signal
|
|
47
47
|
Discovery table shows the promoted posts and the exact posts being tested.
|
|
48
48
|
Do not move the campaign to `confirm-lead-list`; `import_leads` owns that
|
|
49
49
|
visible transition after source approval.
|
package/bin/sellable-install.mjs
CHANGED
|
@@ -1110,8 +1110,8 @@ updates.
|
|
|
1110
1110
|
3. Follow that prompt and workflow config exactly.
|
|
1111
1111
|
4. For message generation, use the \`post-find-leads-message-scout\` agent when
|
|
1112
1112
|
available. The worker and parent-thread fallback must load
|
|
1113
|
-
\`mcp__sellable__get_subskill_prompt({ subskillName: "generate-messages
|
|
1114
|
-
|
|
1113
|
+
\`mcp__sellable__get_subskill_prompt({ subskillName: "generate-messages" })\`.
|
|
1114
|
+
Do not use any alternate or examples-only message prompt. Message review requires Message Draft Builder output:
|
|
1115
1115
|
do not draft from a checklist, local markdown artifact, or parent-thread
|
|
1116
1116
|
intuition. Use campaign state, campaign brief content, selected source state,
|
|
1117
1117
|
and initial campaign-table execution slice rows as the source of truth; do not read stale
|
package/package.json
CHANGED
|
@@ -270,8 +270,13 @@ only an internal approval proof.
|
|
|
270
270
|
|
|
271
271
|
For campaign-attached Signal Discovery sampling, promote/select the exact posts
|
|
272
272
|
with `select_promising_posts` before `fetch_post_engagers` so the user can see
|
|
273
|
-
which posts are being sampled in the watched app.
|
|
274
|
-
|
|
273
|
+
which posts are being sampled in the watched app. Use
|
|
274
|
+
`selectionMode: "replace"` for a fresh absolute promoted set and
|
|
275
|
+
`selectionMode: "add"` only when intentionally expanding existing promoted
|
|
276
|
+
posts. Use `scrapePlanMode: "all-selected"` when the approval/import should use
|
|
277
|
+
every promoted post; use `scrapePlanMode: "capacity-target"` only when source
|
|
278
|
+
math should import the smallest set that covers a target. The watch guide should
|
|
279
|
+
say that we are checking people from these posts to confirm the right people are
|
|
275
280
|
actually engaging and the source is viable.
|
|
276
281
|
|
|
277
282
|
After confirmed source rows exist in the campaign table, use the same registry pattern for
|
|
@@ -755,8 +760,8 @@ updates.
|
|
|
755
760
|
3. Follow that prompt and workflow config exactly.
|
|
756
761
|
4. For message generation, use the `post-find-leads-message-scout` agent when
|
|
757
762
|
available. The worker and parent-thread fallback must load
|
|
758
|
-
`mcp__sellable__get_subskill_prompt({ subskillName: "generate-messages
|
|
759
|
-
|
|
763
|
+
`mcp__sellable__get_subskill_prompt({ subskillName: "generate-messages" })`.
|
|
764
|
+
Do not use any alternate or examples-only message prompt. Message review requires Message Draft Builder output:
|
|
760
765
|
do not draft from a checklist, local markdown artifact, or parent-thread
|
|
761
766
|
intuition. Use campaign state, campaign brief content, selected source state, and
|
|
762
767
|
initial campaign-table execution slice rows as the source of truth; do not read stale local
|