@sellable/mcp 0.1.352 → 0.1.354
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.
|
|
@@ -178,6 +188,11 @@ row ids, generated message text, pass verdicts, and no issues. Shared Cold
|
|
|
178
188
|
Fallback samples must not open with a standalone name line followed by
|
|
179
189
|
"Hey there" or another generic greeting; that pattern means the lane did not
|
|
180
190
|
finish the create-campaign message workflow to customer quality.
|
|
191
|
+
Shared Signal Discovery samples must not use sender-owned post-engager language
|
|
192
|
+
such as "my post", "thanks for showing support", "saw you pop up", or any copy
|
|
193
|
+
that implies the sending sender authored the source post or personally received
|
|
194
|
+
the prospect's engagement unless the selected source evidence proves that exact
|
|
195
|
+
sender authored the post.
|
|
181
196
|
The generated-message cells are not prompt proof: `currentRevisionGeneratedMessages`,
|
|
182
197
|
Generate Message column counts, `messagesCount`, or rendered row previews prove
|
|
183
198
|
only that table cells exist from the current brief/template, not that the
|
|
@@ -218,12 +233,15 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
218
233
|
the real observed signal/theme or public conversation. It may mention the
|
|
219
234
|
engagement source only when the source evidence supports it. Do not say
|
|
220
235
|
"my post" unless the selected source post was actually authored by the
|
|
221
|
-
sending sender.
|
|
236
|
+
sending sender. Do not thank the prospect for showing support, reacting,
|
|
237
|
+
commenting, or popping up unless this is a sender-owned Post Engagers lane
|
|
238
|
+
with sender-authored source evidence.
|
|
222
239
|
- **Shared Cold Fallback** first-message style: cold, direct, and cohesive.
|
|
223
240
|
It must not pretend there was engagement, must not say "saw you pop up",
|
|
224
241
|
and must not use a standalone name line followed by "Hey there" or other
|
|
225
242
|
generic greeting. It should open with a light role/company/problem
|
|
226
|
-
observation
|
|
243
|
+
observation, avoid awkward phrases like "looks like a team where", and ask
|
|
244
|
+
one clear problem question. This is a single-message
|
|
227
245
|
cold path unless the approved create-campaign message workflow proves a
|
|
228
246
|
better delivery format.
|
|
229
247
|
- Every customer-visible lane must run Message Drafting from the current
|