@sellable/mcp 0.1.415 → 0.1.417

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.415",
3
+ "version": "0.1.417",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -1024,16 +1024,31 @@ artifact path, allowed repair side effects, failed sample snippets, failed
1024
1024
  quality codes, and the banned phrase list. The repair prompt must say
1025
1025
  `Do not include existing receipt JSON; load current product state through
1026
1026
  Sellable MCP readbacks and rewrite the durable receipt from fresh readbacks`.
1027
+ It must also say that the worker should verify the packaged Sellable MCP
1028
+ surface is loaded before declaring MCP unavailable, including `get_auth_status`,
1029
+ `get_subskill_prompt`, and the campaign readback tools. If a repair worker still
1030
+ cannot access Sellable MCP, it must write a separate repair-blocked artifact
1031
+ under `repair-blocked/` or its repair final file and must not overwrite the
1032
+ canonical lane receipt. Repair workers must stage successful repaired receipts
1033
+ under `repair-staged/` first; only after fresh MCP readbacks, improved current
1034
+ samples, exactly one approved generated route-proof row, and a local JSON
1035
+ self-check pass may the worker atomically replace the canonical lane receipt.
1027
1036
  After the repair worker completes the final product readbacks
1028
1037
  (`get_campaign_messages_preview`, `get_campaign`, navigation/table readback),
1029
- it must rewrite the durable receipt immediately before any extended narration,
1030
- analysis, or final answer. If the repair worker cannot rewrite the durable
1031
- receipt in one bounded pass, it must exit with
1032
- `blocked: repair_receipt_write_timeout`. The parent must treat an unchanged
1033
- receipt mtime, missing repair final file, or missing updated
1038
+ it must stage and then rewrite the durable receipt immediately before any
1039
+ extended narration, analysis, or final answer. If the repair worker cannot
1040
+ rewrite the durable receipt in one bounded pass, it must exit with
1041
+ `blocked: repair_receipt_write_timeout` without modifying the canonical lane
1042
+ receipt. The parent must treat an unchanged receipt mtime, missing repair final
1043
+ file, missing staged success artifact, or missing updated
1034
1044
  `messageDraftingReceipt.sampleMessages` after repair as blocked, never success.
1045
+ The parent must also treat a repair-blocked artifact as a failed run, but it
1046
+ must keep the pre-repair canonical receipt available for diagnostics and must
1047
+ not promote the blocked repair artifact as the lane receipt.
1035
1048
  Short form: repair prompts use compact repair packets, not full receipt JSON.
1036
1049
  Short form: Do not include existing receipt JSON in repair prompts.
1050
+ Short form: repair workers stage repaired receipts before replacing canonical receipts.
1051
+ Short form: repair blockers never overwrite canonical success receipts.
1037
1052
  Short form: repair workers write the durable receipt immediately after final readbacks.
1038
1053
  Short form: missing repair receipt rewrite is `blocked: repair_receipt_write_timeout`.
1039
1054