@sellable/mcp 0.1.346 → 0.1.347
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,7 +129,22 @@ 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
|
-
Workers return worker receipts.
|
|
132
|
+
Workers return worker receipts. Each customer-visible lane receipt must include
|
|
133
|
+
message proof from `watchNarration.workerDetails.messageDraftBuilder` or the
|
|
134
|
+
worker's equivalent handoff record. Valid message proof names the current
|
|
135
|
+
campaign id, workflowTableId, selected lead-list or source id, filter choice,
|
|
136
|
+
review-batch row ids/hash, and either `statusSource:"branch"` or
|
|
137
|
+
`statusSource:"parent-thread-fallback"`. It must prove the worker loaded the
|
|
138
|
+
full packaged prompt with `get_subskill_prompt({ subskillName:"generate-messages"`
|
|
139
|
+
until `hasMore:false`, loaded the required message assets, and loaded
|
|
140
|
+
`create-campaign-v2-validation` before returning a `messageDraftRecommendation`.
|
|
141
|
+
The generated-message cells are not prompt proof: `currentRevisionGeneratedMessages`,
|
|
142
|
+
Generate Message column counts, `messagesCount`, or rendered row previews prove
|
|
143
|
+
only that table cells exist from the current brief/template, not that the
|
|
144
|
+
create-campaign Message Drafting branch ran. If this receipt is missing, report
|
|
145
|
+
`blocked: missing_message_drafting_receipt` and do not call the lane complete.
|
|
146
|
+
|
|
147
|
+
The parent then calls
|
|
133
148
|
`setup_evergreen_campaigns({ mode:"verify", planRevision, selectedActionIds,
|
|
134
149
|
receipts })` and report only verified completion. If verify blocks, report the
|
|
135
150
|
blocker and repair only the missing postconditions from the same current plan.
|
|
@@ -179,7 +194,14 @@ Parent-thread handwritten copy or setting `currentStep` is not proof.
|
|
|
179
194
|
- Message Drafting has run from the current campaign/table basis, using the
|
|
180
195
|
create-campaign message prompt/assets and validation gate. Updating
|
|
181
196
|
`currentStep:"messages"` is not proof. Parent-thread handwritten copy is
|
|
182
|
-
not a substitute.
|
|
197
|
+
not a substitute. The proof receipt must show
|
|
198
|
+
`get_subskill_prompt({ subskillName:"generate-messages"` was loaded until
|
|
199
|
+
`hasMore:false`, required message assets were loaded, and
|
|
200
|
+
`create-campaign-v2-validation` ran through either
|
|
201
|
+
`workerDetails.messageDraftBuilder` with `statusSource:"branch"` or an
|
|
202
|
+
inline `statusSource:"parent-thread-fallback"` receipt. The generated-message
|
|
203
|
+
cells are not prompt proof; `currentRevisionGeneratedMessages` and row
|
|
204
|
+
previews are only downstream cell evidence.
|
|
183
205
|
- The first review batch exists and at least 3 review rows have generated
|
|
184
206
|
messages from the approved brief. If fewer than 3 usable rows exist, report
|
|
185
207
|
the actual count and why.
|