@sellable/mcp 0.1.301 → 0.1.303
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/README.md +3 -3
- package/dist/generated/column-schema-manifest.js +1 -1
- package/dist/tools/campaign-processing.d.ts +4 -1
- package/dist/tools/campaign-processing.js +11 -2
- package/dist/tools/prompts.js +1 -1
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +19 -16
- package/skills/create-campaign-v2/SKILL.md +17 -7
- package/skills/create-campaign-v2/SOUL.md +15 -11
- package/skills/create-campaign-v2/core/flow.v2.json +1 -1
- package/skills/create-campaign-v2/references/watch-guide-narration.md +13 -14
|
@@ -217,11 +217,11 @@ mark it running only when that branch actually started.
|
|
|
217
217
|
When the user chooses filters, immediately persist `enableICPFilters: true` and
|
|
218
218
|
move to `create-icp-rubric` so the watched app shows Filter Rules while Codex
|
|
219
219
|
defines the rules in chat. After `save_rubrics`, keep the app on Filter Rules so
|
|
220
|
-
the user can read and approve the saved criteria. Once the criteria are
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
220
|
+
the user can read and approve the saved criteria. Once the criteria are
|
|
221
|
+
approved, move the app to Filter Leads with `currentStep: "apply-icp-rubric"`
|
|
222
|
+
and show waiting copy while Message Drafting finishes or the template is
|
|
223
|
+
approved. Do not queue enrichment/filtering or Generate Message cells until
|
|
224
|
+
message approval.
|
|
225
225
|
|
|
226
226
|
Fit + message:
|
|
227
227
|
|
|
@@ -245,7 +245,7 @@ Filters saved + waiting for message approval:
|
|
|
245
245
|
{
|
|
246
246
|
"stage": "fit-message",
|
|
247
247
|
"headline": "Filters saved + waiting for message approval",
|
|
248
|
-
"visibleState": "The browser is showing
|
|
248
|
+
"visibleState": "The browser is showing Filter Leads with saved fit rules.",
|
|
249
249
|
"agentIntent": "Codex is waiting for the message template approval before enrichment, filtering, or Generate Message cells run.",
|
|
250
250
|
"nextAction": "Approve or revise the message template",
|
|
251
251
|
"safety": "Saved filters are ready; row processing stays gated until the message template is approved."
|
|
@@ -264,13 +264,12 @@ Template approved, bounded filter test running:
|
|
|
264
264
|
}
|
|
265
265
|
```
|
|
266
266
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
generated message.
|
|
267
|
+
Before `approve-message`, stay on `apply-icp-rubric` / Filter Leads with no
|
|
268
|
+
enrichment or fit scoring queued. After `approve-message`, keep Filter Leads
|
|
269
|
+
visible while the bounded enrichment and fit scoring run. Move to Messages once
|
|
270
|
+
at least one review row passes and one generated message is ready. Do not wait
|
|
271
|
+
for the rest of the batch or a stronger sample before asking the user to approve
|
|
272
|
+
the generated message.
|
|
274
273
|
|
|
275
274
|
Messages waiting for template:
|
|
276
275
|
|
|
@@ -278,7 +277,7 @@ Messages waiting for template:
|
|
|
278
277
|
{
|
|
279
278
|
"stage": "review-ready",
|
|
280
279
|
"headline": "Waiting for the template",
|
|
281
|
-
"visibleState": "The browser is showing
|
|
280
|
+
"visibleState": "The browser is showing Filter Leads while the saved filters wait for the message template.",
|
|
282
281
|
"agentIntent": "Codex is waiting until the template can be reviewed.",
|
|
283
282
|
"nextAction": "Review template"
|
|
284
283
|
}
|