@sellable/mcp 0.1.360 → 0.1.361

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.360",
3
+ "version": "0.1.361",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -183,9 +183,10 @@ not a parent-thread summary. The receipt must include:
183
183
  workflowTableId, brief hash or updated-at marker, delivery format, token
184
184
  rules, hard avoids, source-use rules, and first-message template state.
185
185
  - `sourceDecisionReceipt`: selected source/list id, provider, cursor/inventory
186
- state, import/copy caps, dedupe/DNC/provider exclusions, row ids or row-count
187
- evidence, and the reason no colder source was used before the current source
188
- was proven exhausted or insufficient.
186
+ state, import/copy caps, explicit `dedupeDncProviderExclusions:true` or an
187
+ equivalent exclusions object, row ids or row-count evidence (`rowCount`,
188
+ `readyRowCount`, or `rowEvidence`), and the reason no colder source was used
189
+ before the current source was proven exhausted or insufficient.
189
190
  - `filterDecisionReceipt`: saved/applied filter ids or explicit skip-filter
190
191
  decision with current campaign/table basis.
191
192
  - `messageDraftingReceipt`: the Message Drafting proof described below,
@@ -206,6 +207,15 @@ not a parent-thread summary. The receipt must include:
206
207
  planRevision, selectedActionIds, receipts })` call/result used before the
207
208
  parent reports completion.
208
209
 
210
+ Verification always uses the original execution planRevision and original
211
+ selectedActionIds from the plan packets that were dispatched before mutation.
212
+ The parent must preserve the original selectedActionIds exactly.
213
+ Do not replace them with a later reuse planRevision/actionIds after the
214
+ campaigns exist. After workers complete, attach or patch `verifyCall` on each
215
+ lane receipt with that original execution planRevision, original
216
+ selectedActionIds, same sender scopes, and the verify result. Only after verify
217
+ succeeds should the parent perform the idempotency rerun.
218
+
209
219
  If any required field is missing, report
210
220
  `blocked: missing_create_campaign_step_receipt` for that lane and do not call it
211
221
  complete.
@@ -286,12 +296,11 @@ create-campaign Message Drafting branch ran. If this receipt is missing, report
286
296
  The parent then calls
287
297
  `setup_evergreen_campaigns({ mode:"verify", postEngagerSenderIds,
288
298
  sharedSenderIds, planRevision, selectedActionIds, receipts })` using the same
289
- sender scopes as the plan call, and reports only verified completion. A verify
290
- call without the same sender scopes can recompute an empty or different plan and
291
- is invalid proof. After verify succeeds, rerun
299
+ sender scopes as the plan call and the original execution planRevision/actionIds,
300
+ and reports only verified completion. A verify call without the same sender scopes can recompute an empty or different plan and is invalid proof. A verify call that uses a later reuse planRevision instead of the original execution planRevision is also invalid proof. Only after verify succeeds, rerun
292
301
  `setup_evergreen_campaigns({ mode:"plan", postEngagerSenderIds,
293
302
  sharedSenderIds, yolo:true })` without explicit campaign/table bindings. That
294
- idempotency plan must return `intent:"reuse"` for every completed lane and no
303
+ idempotency rerun must return `intent:"reuse"` for every completed lane and no
295
304
  duplicate-lane blockers before you call the command finished. If verify blocks,
296
305
  report the blocker and repair only the missing postconditions from the same
297
306
  current plan.