@sellable/mcp 0.1.211 → 0.1.212
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.
|
@@ -70,15 +70,17 @@ required message reference cannot be loaded through the MCP asset loader, return
|
|
|
70
70
|
6. Combine the strongest opener, product line, mechanism line, proof treatment,
|
|
71
71
|
and CTA into one reusable template.
|
|
72
72
|
7. Define token fill rules and fallbacks, then render one good sample.
|
|
73
|
-
8. Before returning, load the validation prompt
|
|
73
|
+
8. Before returning, load the validation prompt and any validation assets it
|
|
74
|
+
requires:
|
|
74
75
|
|
|
75
76
|
`get_subskill_prompt({ subskillName: "create-campaign-v2-validation" })`
|
|
76
77
|
|
|
77
78
|
Use it only as a validation contract for the candidate message in this live
|
|
78
|
-
campaign branch.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
campaign branch. If the validation prompt references packaged assets, load
|
|
80
|
+
them through `get_subskill_asset` before judging the draft. Do not write
|
|
81
|
+
dry-mode artifacts. Run the final candidate against token safety, proof
|
|
82
|
+
safety, source safety, Thomas filters, AI tells, single-send rule, and
|
|
83
|
+
"would I take this call?". If it fails, revise once and validate again.
|
|
82
84
|
9. Keep the work provisional until the user chooses `Use Template` in Messages.
|
|
83
85
|
|
|
84
86
|
## Owned Output
|
package/package.json
CHANGED
|
@@ -285,9 +285,11 @@ rule, and 3-5 sample workflow-table rows with `rowId`, name, title, company, and
|
|
|
285
285
|
signal. Optional: campaign name, `selectedLeadListId`, and filter choice. Do not
|
|
286
286
|
paste copied row counts, brief hashes, review-batch hashes, full row ID lists,
|
|
287
287
|
broad row data, or local debug artifacts into the spawn prompt. Message Drafting
|
|
288
|
-
must load the current campaign brief/context, full `generate-messages`
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
must load the current campaign brief/context, the full `generate-messages`
|
|
289
|
+
prompt, every message asset referenced by that prompt, and
|
|
290
|
+
`create-campaign-v2-validation` plus any validation assets it references.
|
|
291
|
+
Validation is an internal gate before it returns the concise review-ready
|
|
292
|
+
recommendation.
|
|
291
293
|
|
|
292
294
|
Use rendered Markdown for user review surfaces, not fenced code blocks. Keep
|
|
293
295
|
lines short, use indexed section labels and bullets, and translate internal
|
|
@@ -761,7 +763,8 @@ updates.
|
|
|
761
763
|
prompt, every referenced message asset through
|
|
762
764
|
`mcp__sellable__get_subskill_asset`, and before returning
|
|
763
765
|
`mcp__sellable__get_subskill_prompt({ subskillName: "create-campaign-v2-validation" })`
|
|
764
|
-
|
|
766
|
+
plus any validation assets it references through
|
|
767
|
+
`mcp__sellable__get_subskill_asset` as the internal validation gate.
|
|
765
768
|
In Codex, YOLO/autonomous mode counts as campaign-scoped permission to use
|
|
766
769
|
this single Message Drafting background agent. If the user has not enabled
|
|
767
770
|
YOLO and has not explicitly asked for background agents, subagents, parallel
|
|
@@ -782,9 +785,10 @@ updates.
|
|
|
782
785
|
synthesize local validation artifacts from general knowledge. The handoff to
|
|
783
786
|
Message Drafting should pass lean basis only, not hashes, counts, or a long
|
|
784
787
|
row-id list; the branch loads current brief/context, the full
|
|
785
|
-
`generate-messages` prompt, all referenced assets,
|
|
786
|
-
`create-campaign-v2-validation
|
|
787
|
-
concerns, or a QA receipt on the normal happy
|
|
788
|
+
`generate-messages` prompt, all referenced message assets,
|
|
789
|
+
`create-campaign-v2-validation`, and any validation assets it references. Do
|
|
790
|
+
not render fallback sample, concerns, or a QA receipt on the normal happy
|
|
791
|
+
path.
|
|
788
792
|
6. Create the campaign shell early with the v1 brief so the user can open the
|
|
789
793
|
watch link and see useful setup state immediately. Materialize the approved
|
|
790
794
|
source list, copy confirmed rows into the campaign, and internally process the
|