@sellable/mcp 0.1.107 → 0.1.108

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.
@@ -66,7 +66,9 @@ export const sequencerToolDefinitions = [
66
66
  description: "Attach the tier-recommended sequence template to a campaign. " +
67
67
  "Delegates template selection to the backend's existing tier-aware selector " +
68
68
  "(selectTemplateForTiers), which picks `If Open Profile -> INMAIL_OPEN, else INVITE` " +
69
- "for premium/Sales Nav senders and `INVITE -> accepted -> DM` otherwise. " +
69
+ "for Sales Nav/Recruiter senders and `INVITE -> accepted -> DM` for Basic, Premium, or mixed sender sets. " +
70
+ "Paid InMail Campaign is not auto-selected because it can spend InMail credits; " +
71
+ "use attach_sequence with an explicit paid-InMail template only after the user opts in. " +
70
72
  "Prefer this over attach_sequence during the create-campaign-v2 autonomous tail — " +
71
73
  "it removes the risk of hand-authoring an invalid template mid-long-context. " +
72
74
  "Use attach_sequence directly only when the caller needs a custom non-recommended cadence.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.107",
3
+ "version": "0.1.108",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -2192,6 +2192,7 @@
2192
2192
  "requiredVisibleContent": [
2193
2193
  "connect or select a LinkedIn sender",
2194
2194
  "Slack reply review",
2195
+ "Sales Nav vs Premium sequence recommendation, with Paid InMail Campaign only on explicit opt-in",
2195
2196
  "nothing starts until the user confirms launch"
2196
2197
  ],
2197
2198
  "onNoAvailableSender": "surface settings link and wait for sender_connection_required",
@@ -45,9 +45,12 @@ order (all before waiting for the user):
45
45
  currentStep: "sequence" })` to attach the sender via the v3 senders route and
46
46
  move the watch link to Sequence.
47
47
  8. Call `attach_recommended_sequence({ campaignId, currentStep: "send" })` to
48
- bind the tier-aware recommended sequence. If that response does not persist
49
- `currentStep: "send"`, call `update_campaign({ campaignId, currentStep:
50
- "send" })`.
48
+ bind the tier-aware recommended sequence. Explain the sequence choice in the
49
+ handoff: Sales Nav/Recruiter senders get the Sales Nav Open Profile
50
+ strategy, Basic/Premium/mixed senders get the Premium invite-to-DM strategy,
51
+ and Paid InMail Campaign is only an explicit paid-InMail opt-in because it
52
+ can spend InMail credits. If that response does not persist `currentStep:
53
+ "send"`, call `update_campaign({ campaignId, currentStep: "send" })`.
51
54
  9. Re-surface the `watchUrl` using the exact block in
52
55
  `references/watch-link-handoff.md`.
53
56
  10. Surface the `handoff.orientation` string from `auto-execute.yaml`
@@ -459,7 +459,11 @@ Shape:
459
459
  currentStep: "sequence" })` to attach the sender through the v3 senders
460
460
  route and orient the watch link to Sequence.
461
461
  8. Call `attach_recommended_sequence({ campaignId, currentStep: "send" })`
462
- (bind the tier-recommended sequence to the campaign). If the tool response
462
+ (bind the tier-recommended sequence to the campaign). Explain the sequence
463
+ choice plainly: Sales Nav/Recruiter senders get the Sales Nav Open Profile
464
+ strategy, Basic/Premium/mixed senders get the Premium invite-to-DM strategy,
465
+ and Paid InMail Campaign is available only as an explicit paid-InMail
466
+ opt-in because it can spend InMail credits. If the tool response
463
467
  does not persist `currentStep: "send"`, call
464
468
  `update_campaign({ campaignId, currentStep: "send" })`.
465
469
  9. Re-surface the `watchUrl` using `references/watch-link-handoff.md`.