@sellable/install 0.1.95 → 0.1.96
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
|
@@ -687,7 +687,7 @@ After every \`update_campaign({ campaignId, currentStep })\`, use
|
|
|
687
687
|
\`get_campaign_navigation_state\` when available as a compact orientation check:
|
|
688
688
|
match the saved campaign state to the expected watch-link step, explain the
|
|
689
689
|
current state in one sentence, and only then continue. Sender selection belongs
|
|
690
|
-
at Settings after message approval and
|
|
690
|
+
at Settings after message approval and 15-row validation. After message
|
|
691
691
|
validation, use Settings to help the user connect or select a LinkedIn sender.
|
|
692
692
|
Explain Slack reply review before launch. After sender selection, attach the
|
|
693
693
|
recommended sequence and move the watched UI to Send. Do not start the campaign
|
|
@@ -935,13 +935,22 @@ updates.
|
|
|
935
935
|
5. Create the campaign shell early with the v1 brief so the user can open the
|
|
936
936
|
watch link and see useful setup state immediately. Import only the first
|
|
937
937
|
bounded review batch after the source is attached to the campaign; do not
|
|
938
|
-
queue workflow cells, attach a sequence, or start until
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
approved message set is synced into the campaign
|
|
942
|
-
|
|
938
|
+
queue workflow cells, attach a sequence, or start until filter choice is
|
|
939
|
+
resolved, Messages has shown Use Template / AI Generated, template/token
|
|
940
|
+
rules are approved when Use Template is chosen, rubrics are saved when
|
|
941
|
+
filters are enabled, and the approved message set is synced into the campaign
|
|
942
|
+
brief. Product Generate Message cells must not run from the background
|
|
943
|
+
template path before that template/token approval. AI Generated uses the
|
|
944
|
+
product's AI-generated path and cancels or ignores the background template
|
|
945
|
+
draft.
|
|
946
|
+
6. The main thread owns watch navigation: use \`filter-choice\` after the 15-row
|
|
947
|
+
review batch, \`messages\` for the Use Template / AI Generated mode choice,
|
|
948
|
+
\`auto-execute-messaging\` for approved message work or the product's
|
|
949
|
+
AI-generated path, and \`awaiting-user-greenlight\` for the final handoff.
|
|
950
|
+
\`validate-sample\` is recovery/legacy only if reached.
|
|
951
|
+
7. Keep \`selectedLeadListId\` as the source list and \`workflowTableId\` as the
|
|
943
952
|
campaign table. Do not use disk files as the post-mint source of truth.
|
|
944
|
-
|
|
953
|
+
8. Do not ask the user to run another command.
|
|
945
954
|
|
|
946
955
|
## Fallback
|
|
947
956
|
|
package/package.json
CHANGED
|
@@ -71,8 +71,10 @@ Disk artifacts are optional debug/UAT diagnostics; normal customer runs should
|
|
|
71
71
|
not create, link, or surface local draft files unless the user explicitly asks
|
|
72
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
|
-
first review batch,
|
|
75
|
-
|
|
74
|
+
first review batch. After that, the user chooses whether to use filters or skip,
|
|
75
|
+
then Messages first shows Use Template and AI Generated. The Message Draft
|
|
76
|
+
Builder may work in the background, but template review waits for the filter
|
|
77
|
+
path and an explicit Use Template choice.
|
|
76
78
|
|
|
77
79
|
## Opening Turn Contract
|
|
78
80
|
|
|
@@ -145,9 +147,13 @@ registry pattern for the two post-lead branches. The create-campaign-v2 subskill
|
|
|
145
147
|
calls `get_post_find_leads_scout_registry`, then launches the returned
|
|
146
148
|
filter-leads scout and message-generation scout together when real subagents are
|
|
147
149
|
available and the current session exposes the returned names. Message
|
|
148
|
-
generation
|
|
149
|
-
|
|
150
|
-
|
|
150
|
+
generation is the provisional Message Draft Builder: it may start after the
|
|
151
|
+
review batch exists, including while the user is on filter choice, but template
|
|
152
|
+
review cannot start until the user answers filter choice and chooses Use
|
|
153
|
+
Template in Messages. AI Generated is an explicit opt-out that cancels or
|
|
154
|
+
ignores the background template draft. If the post-lead agents are absent, the
|
|
155
|
+
main thread still orchestrates the same branches from the compact context with
|
|
156
|
+
MCP tools/assets.
|
|
151
157
|
|
|
152
158
|
Use rendered Markdown for user review surfaces, not fenced code blocks. Keep
|
|
153
159
|
lines short, use indexed section labels and bullets, and translate internal
|
|
@@ -200,7 +206,7 @@ After every `update_campaign({ campaignId, currentStep })`, use
|
|
|
200
206
|
`get_campaign_navigation_state` when available as a compact orientation check:
|
|
201
207
|
match the saved campaign state to the expected watch-link step, explain the
|
|
202
208
|
current state in one sentence, and only then continue. Sender selection belongs
|
|
203
|
-
at Settings after message approval and
|
|
209
|
+
at Settings after message approval and 15-row validation. After message
|
|
204
210
|
validation, use Settings to help the user connect or select a LinkedIn sender.
|
|
205
211
|
Explain Slack reply review before launch. After sender selection, attach the
|
|
206
212
|
recommended sequence and move the watched UI to Send. Do not start the campaign
|
|
@@ -567,21 +573,25 @@ updates.
|
|
|
567
573
|
5. Create the campaign shell early with the v1 brief so the user can open the
|
|
568
574
|
watch link and see useful setup state immediately. Import only the first
|
|
569
575
|
bounded review batch after the source is attached to the campaign; do not
|
|
570
|
-
queue workflow cells, attach a sequence, or start until
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
approved message set is synced into the campaign
|
|
576
|
+
queue workflow cells, attach a sequence, or start until the filter choice is
|
|
577
|
+
resolved, Messages has shown Use Template / AI Generated, template/token
|
|
578
|
+
rules are approved when Use Template is chosen, rubrics are saved when
|
|
579
|
+
filters are enabled, and the approved message set is synced into the campaign
|
|
580
|
+
brief. Product Generate Message cells must not run from the background
|
|
581
|
+
template path before that template/token approval.
|
|
574
582
|
Do not ask the user to approve the brief before shell creation unless they
|
|
575
583
|
explicitly requested a no-write draft; the shell itself is the review surface.
|
|
576
584
|
6. The main thread owns watch navigation. Call
|
|
577
585
|
`mcp__sellable__update_campaign({ campaignId, currentStep })` before major
|
|
578
586
|
visible work so the user can watch progress in the app: `create-offer` for
|
|
579
587
|
the brief, `pick-provider` or the selected provider step while sourcing,
|
|
580
|
-
`filter-choice` after the
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
588
|
+
`filter-choice` after the 15-row review batch, `messages` for the Use
|
|
589
|
+
Template / AI Generated mode choice, `auto-execute-messaging` for approved
|
|
590
|
+
message work or the product's AI-generated path, `awaiting-user-greenlight`
|
|
591
|
+
for the final handoff, `settings` for sender selection, `sequence` after
|
|
592
|
+
sender attach, and `send` once the recommended sequence is attached.
|
|
593
|
+
`validate-sample` is recovery/legacy only if reached. Do not advance the
|
|
594
|
+
step backward.
|
|
585
595
|
7. Keep `selectedLeadListId` as the source list and `workflowTableId` as the
|
|
586
596
|
campaign table. Do not use disk files as the post-mint source of truth.
|
|
587
597
|
8. Do not ask the user to run another command.
|