@sellable/install 0.1.78 → 0.1.79
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
|
@@ -601,12 +601,11 @@ data, compare sources by source volume, sampled ICP fit, activity/warmth
|
|
|
601
601
|
signals, cleanup risk, and confidence basis. If a user asks for a forecast,
|
|
602
602
|
label it explicitly as not estimated from this run.
|
|
603
603
|
|
|
604
|
-
Every approval gate must include
|
|
605
|
-
content. Show
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
substitute for showing the content in chat.
|
|
604
|
+
Every approval gate must include live campaign access after the readable inline
|
|
605
|
+
content. Show a \`Watch link:\` line once the campaign shell exists. In normal
|
|
606
|
+
customer runs, do not show local draft filenames or filesystem paths unless the
|
|
607
|
+
user asks for debug artifacts. The link is for deeper inspection; never use it
|
|
608
|
+
as a substitute for showing the content in chat.
|
|
610
609
|
|
|
611
610
|
Never mention MCP namespaces, prompt chunking, plugin cache paths, missing
|
|
612
611
|
linked skill versions, runbooks, or local skill files in normal customer-facing
|
|
@@ -960,10 +959,10 @@ approval should show who we are targeting, why they should care, the offer/CTA,
|
|
|
960
959
|
proof, lead source hypothesis, message angle, risks/assumptions, and what
|
|
961
960
|
happens after approval.
|
|
962
961
|
|
|
963
|
-
Every approval should also give the user a way to inspect the
|
|
964
|
-
After the readable inline content, include
|
|
965
|
-
|
|
966
|
-
|
|
962
|
+
Every approval should also give the user a way to inspect the live campaign.
|
|
963
|
+
After the readable inline content, include a \`Watch link:\` line when a
|
|
964
|
+
campaign shell exists. Local artifacts are optional debug/UAT diagnostics only;
|
|
965
|
+
do not surface file paths or local draft filenames in normal customer runs.
|
|
967
966
|
|
|
968
967
|
This applies especially to message approvals. Never ask someone to approve a
|
|
969
968
|
message they cannot see. Show the subject, tokenized template, a filled sample
|
package/package.json
CHANGED
|
@@ -66,10 +66,10 @@ allowed-tools:
|
|
|
66
66
|
|
|
67
67
|
Use this as the customer-facing entrypoint for Sellable campaign creation.
|
|
68
68
|
|
|
69
|
-
CampaignOffer state
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
state first. The
|
|
69
|
+
CampaignOffer state and the watch link are the customer-facing source of truth.
|
|
70
|
+
Disk artifacts are optional debug/UAT diagnostics; normal customer runs should
|
|
71
|
+
not create, link, or surface local draft files unless the user explicitly asks
|
|
72
|
+
for them. Resume, gating, and handoff read campaign state first. The
|
|
73
73
|
watchable campaign exists after the short brief; lead import is bounded to the
|
|
74
74
|
first review batch, and enrichment/message generation waits until rubrics and
|
|
75
75
|
the approved message template are saved on the campaign.
|
|
@@ -147,13 +147,12 @@ Use rendered Markdown for user review surfaces, not fenced code blocks. Keep
|
|
|
147
147
|
lines short, use indexed section labels and bullets, and translate internal
|
|
148
148
|
sourcing terms into plain language.
|
|
149
149
|
|
|
150
|
-
Every approval gate must include
|
|
151
|
-
content. Show a short `
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
content in chat.
|
|
150
|
+
Every approval gate must include live campaign access after the readable inline
|
|
151
|
+
content. Show a short `Watch link:` line once the campaign shell exists. In
|
|
152
|
+
normal customer runs, do not show `Open artifact:` lines, raw filesystem paths,
|
|
153
|
+
or local draft filenames. Local artifacts are debug/UAT-only unless the user asks
|
|
154
|
+
for them. The link is for deeper inspection; never use it as a substitute for
|
|
155
|
+
showing the content in chat.
|
|
157
156
|
|
|
158
157
|
Never mention MCP namespaces, prompt chunking, plugin cache paths, missing
|
|
159
158
|
linked skill versions, runbooks, or local skill files in normal customer-facing
|
|
@@ -503,9 +502,16 @@ updates.
|
|
|
503
502
|
`message-validation.md` proves the message-review safety-gate workflow ran,
|
|
504
503
|
`message-review.md` approves the template, rubrics are saved, and the
|
|
505
504
|
approved message set is synced into the campaign brief.
|
|
506
|
-
6.
|
|
505
|
+
6. The main thread owns watch navigation. Call
|
|
506
|
+
`mcp__sellable__update_campaign({ campaignId, currentStep })` before major
|
|
507
|
+
visible work so the user can watch progress in the app: `create-offer` for
|
|
508
|
+
the brief, `pick-provider` or the selected provider step while sourcing,
|
|
509
|
+
`filter-choice` after the 10-row review batch, `messages` or
|
|
510
|
+
`auto-execute-messaging` for message work, `validate-sample` for validation,
|
|
511
|
+
and `awaiting-user-greenlight` for Settings. Do not advance the step backward.
|
|
512
|
+
7. Keep `selectedLeadListId` as the source list and `workflowTableId` as the
|
|
507
513
|
campaign table. Do not use disk files as the post-mint source of truth.
|
|
508
|
-
|
|
514
|
+
8. Do not ask the user to run another command.
|
|
509
515
|
|
|
510
516
|
## Fallback
|
|
511
517
|
|