@sellable/mcp 0.1.352 → 0.1.353
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/package.json
CHANGED
|
@@ -129,6 +129,13 @@ filter choice, Message Drafting, packaged `generate-messages`, sequence
|
|
|
129
129
|
attachment, and send-review readiness. Do not rebuild those steps ad hoc in the
|
|
130
130
|
parent thread.
|
|
131
131
|
|
|
132
|
+
For any lane with `intent:"create"`, the worker must satisfy the normal
|
|
133
|
+
net-new create-campaign preflight before shell creation: load
|
|
134
|
+
`get_subskill_prompt({ subskillName:"research-sender" })`, run the sender/team
|
|
135
|
+
identity research needed for the brief, call `complete_sender_research(...)`,
|
|
136
|
+
then call `create_campaign`. Do not bypass this with a parent-thread brief or
|
|
137
|
+
by directly setting campaign state.
|
|
138
|
+
|
|
132
139
|
Workers return worker receipts. Each customer-visible lane receipt must include
|
|
133
140
|
one durable `createCampaignStepReceipt` built from actual tool calls or worker receipts,
|
|
134
141
|
not a parent-thread summary. The receipt must include:
|
|
@@ -138,6 +145,9 @@ not a parent-thread summary. The receipt must include:
|
|
|
138
145
|
campaign/table binding or create intent used before work started. For a
|
|
139
146
|
create lane, this receipt must explicitly include `createIntent:true`; for a
|
|
140
147
|
reuse lane, do not report `createIntent:true`.
|
|
148
|
+
- `researchSenderReceipt`: `research-sender` prompt load proof,
|
|
149
|
+
`complete_sender_research` result, sender LinkedIn identity basis, and the
|
|
150
|
+
notes/proof counts used before the net-new `create_campaign` call.
|
|
141
151
|
- `campaignBriefReceipt`: the CampaignOffer/campaign id, current
|
|
142
152
|
workflowTableId, brief hash or updated-at marker, delivery format, token
|
|
143
153
|
rules, hard avoids, source-use rules, and first-message template state.
|