@sellable/mcp 0.1.354 → 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,15 +181,18 @@ 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
|
|
@@ -279,9 +290,8 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
279
290
|
not a substitute. The proof receipt must show
|
|
280
291
|
`get_subskill_prompt({ subskillName:"generate-messages"` was loaded until
|
|
281
292
|
`hasMore:false`, required message assets were loaded, and
|
|
282
|
-
`create-campaign-v2-validation` ran through
|
|
283
|
-
`workerDetails.messageDraftBuilder` with `statusSource:"branch"
|
|
284
|
-
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
|
|
285
295
|
cells are not prompt proof; `currentRevisionGeneratedMessages` and row
|
|
286
296
|
previews are only downstream cell evidence. The proof must include
|
|
287
297
|
`validationResult:"passed"`, a passed quality review, and at least 3
|