@sellable/mcp 0.1.353 → 0.1.355
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
|
@@ -127,7 +127,15 @@ and postconditions. Workers must use the create-campaign workflow and
|
|
|
127
127
|
create-campaign workflow/subskills for campaign creation/setup, source/import,
|
|
128
128
|
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
|
-
parent thread.
|
|
130
|
+
parent thread. The parent thread is only the planner, dispatcher, verifier, and
|
|
131
|
+
receipt collector: it must not call `create_campaign`, `import_leads`,
|
|
132
|
+
`start_campaign_message_preparation`, `update_cell`, or sequence-attach tools
|
|
133
|
+
for a lane that was assigned to a worker. When the host supports branch
|
|
134
|
+
execution, Task/subagent, or separate Codex threads, assign one lane packet per
|
|
135
|
+
worker and run the lane workers in parallel. If the host cannot run parallel
|
|
136
|
+
workers, report `blocked: missing_parallel_lane_worker_runtime` instead of
|
|
137
|
+
silently doing all lane creation sequentially in the parent thread.
|
|
138
|
+
Short form: the parent thread is the planner, dispatcher, verifier, and receipt collector.
|
|
131
139
|
|
|
132
140
|
For any lane with `intent:"create"`, the worker must satisfy the normal
|
|
133
141
|
net-new create-campaign preflight before shell creation: load
|
|
@@ -173,21 +181,29 @@ If any required field is missing, report
|
|
|
173
181
|
`blocked: missing_create_campaign_step_receipt` for that lane and do not call it
|
|
174
182
|
complete.
|
|
175
183
|
|
|
176
|
-
Each customer-visible lane receipt must also include
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
review-batch row ids/hash, and
|
|
181
|
-
`statusSource:"parent-thread-fallback"
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
184
|
+
Each customer-visible lane receipt must also include message proof from
|
|
185
|
+
`watchNarration.workerDetails.messageDraftBuilder` or the worker's equivalent
|
|
186
|
+
branch handoff record. Valid evergreen message proof names the current campaign
|
|
187
|
+
id, workflowTableId, selected lead-list or source id, filter choice, and
|
|
188
|
+
review-batch row ids/hash, and it must use `statusSource:"branch"`.
|
|
189
|
+
`statusSource:"parent-thread-fallback"` is not accepted for evergreen
|
|
190
|
+
customer-visible completion because it can be a parent summary rather than proof
|
|
191
|
+
that the create-campaign Message Drafting branch actually ran. The proof must
|
|
192
|
+
show the worker loaded the full packaged prompt with
|
|
193
|
+
`get_subskill_prompt({ subskillName:"generate-messages"` until `hasMore:false`,
|
|
194
|
+
loaded the required message assets, and loaded `create-campaign-v2-validation`
|
|
195
|
+
before returning a `messageDraftRecommendation`.
|
|
185
196
|
The receipt must also include `validationResult:"passed"`, a passed
|
|
186
197
|
quality-review object, and at least 3 concrete reviewed sample messages with
|
|
187
198
|
row ids, generated message text, pass verdicts, and no issues. Shared Cold
|
|
188
199
|
Fallback samples must not open with a standalone name line followed by
|
|
189
200
|
"Hey there" or another generic greeting; that pattern means the lane did not
|
|
190
201
|
finish the create-campaign message workflow to customer quality.
|
|
202
|
+
Shared Signal Discovery samples must not use sender-owned post-engager language
|
|
203
|
+
such as "my post", "thanks for showing support", "saw you pop up", or any copy
|
|
204
|
+
that implies the sending sender authored the source post or personally received
|
|
205
|
+
the prospect's engagement unless the selected source evidence proves that exact
|
|
206
|
+
sender authored the post.
|
|
191
207
|
The generated-message cells are not prompt proof: `currentRevisionGeneratedMessages`,
|
|
192
208
|
Generate Message column counts, `messagesCount`, or rendered row previews prove
|
|
193
209
|
only that table cells exist from the current brief/template, not that the
|
|
@@ -228,12 +244,15 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
228
244
|
the real observed signal/theme or public conversation. It may mention the
|
|
229
245
|
engagement source only when the source evidence supports it. Do not say
|
|
230
246
|
"my post" unless the selected source post was actually authored by the
|
|
231
|
-
sending sender.
|
|
247
|
+
sending sender. Do not thank the prospect for showing support, reacting,
|
|
248
|
+
commenting, or popping up unless this is a sender-owned Post Engagers lane
|
|
249
|
+
with sender-authored source evidence.
|
|
232
250
|
- **Shared Cold Fallback** first-message style: cold, direct, and cohesive.
|
|
233
251
|
It must not pretend there was engagement, must not say "saw you pop up",
|
|
234
252
|
and must not use a standalone name line followed by "Hey there" or other
|
|
235
253
|
generic greeting. It should open with a light role/company/problem
|
|
236
|
-
observation
|
|
254
|
+
observation, avoid awkward phrases like "looks like a team where", and ask
|
|
255
|
+
one clear problem question. This is a single-message
|
|
237
256
|
cold path unless the approved create-campaign message workflow proves a
|
|
238
257
|
better delivery format.
|
|
239
258
|
- Every customer-visible lane must run Message Drafting from the current
|
|
@@ -271,9 +290,8 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
271
290
|
not a substitute. The proof receipt must show
|
|
272
291
|
`get_subskill_prompt({ subskillName:"generate-messages"` was loaded until
|
|
273
292
|
`hasMore:false`, required message assets were loaded, and
|
|
274
|
-
`create-campaign-v2-validation` ran through
|
|
275
|
-
`workerDetails.messageDraftBuilder` with `statusSource:"branch"
|
|
276
|
-
inline `statusSource:"parent-thread-fallback"` receipt. The generated-message
|
|
293
|
+
`create-campaign-v2-validation` ran through
|
|
294
|
+
`workerDetails.messageDraftBuilder` with `statusSource:"branch"`. The generated-message
|
|
277
295
|
cells are not prompt proof; `currentRevisionGeneratedMessages` and row
|
|
278
296
|
previews are only downstream cell evidence. The proof must include
|
|
279
297
|
`validationResult:"passed"`, a passed quality review, and at least 3
|