@sellable/install 0.1.11 → 0.1.12

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.
@@ -15,8 +15,8 @@ import { createInterface } from "node:readline/promises";
15
15
  const DEFAULT_API_URL = "https://app.sellable.dev";
16
16
  const DEFAULT_SERVER_PACKAGE =
17
17
  process.env.SELLABLE_MCP_PACKAGE || "@sellable/mcp";
18
- const CODEX_PLUGIN_VERSION = "0.1.11";
19
- const CODEX_PLUGIN_COMPAT_VERSIONS = ["0.1.8", "0.1.9", "0.1.10"];
18
+ const CODEX_PLUGIN_VERSION = "0.1.12";
19
+ const CODEX_PLUGIN_COMPAT_VERSIONS = ["0.1.8", "0.1.9", "0.1.10", "0.1.11"];
20
20
  const INSTALL_PACKAGE_SPEC = `@sellable/install@${CODEX_PLUGIN_VERSION}`;
21
21
 
22
22
  function usage() {
@@ -519,8 +519,10 @@ loading, or skill file versions.
519
519
 
520
520
  Do not treat the active Sellable workspace as the campaign subject. The
521
521
  workspace only tells you where the campaign will be saved. Before buyer, CTA,
522
- proof, or source questions, identify and confirm who the campaign is launching
523
- for.
522
+ proof, or source questions, identify two things:
523
+
524
+ 1. who/what company this campaign is for, and
525
+ 2. who the LinkedIn messages should send from.
524
526
 
525
527
  If the user supplied a LinkedIn profile, website, domain, company name, or
526
528
  sender name in the invocation, do one lightweight lookup first:
@@ -532,28 +534,56 @@ sender name in the invocation, do one lightweight lookup first:
532
534
  \`mcp__sellable__enrich_sender\`.
533
535
 
534
536
  Then summarize what you found in one or two lines and ask the user to confirm
535
- the launch identity before continuing.
537
+ the campaign subject and sender before continuing.
536
538
 
537
539
  If the user did not provide the launch identity, make the first quick question
538
- panel an identity gate. Ask who we are launching for, with options like:
540
+ panel an identity gate. The point of this gate is not "pick a sender"; it is to
541
+ learn who the user is / what company we are launching for, and who we should
542
+ send from. Before that gate, call \`mcp__sellable__list_senders\` once if it is
543
+ available, only so you can offer connected senders as shortcuts.
544
+
545
+ The customer-facing shape should be:
546
+
547
+ \`\`\`text
548
+ I found these connected senders in {workspace}: {sender names}.
549
+
550
+ First I need to know who this campaign is for and who we’re sending from. If
551
+ one of these connected senders is you, pick them; otherwise paste your LinkedIn
552
+ URL or company website.
553
+ \`\`\`
539
554
 
540
- 1. Use one of my connected Sellable senders
541
- 2. I’ll paste a LinkedIn profile
542
- 3. I’ll paste a company website/domain
543
- 4. Other / custom
555
+ The identity gate should ask:
556
+
557
+ 1. \`Who is this campaign for?\` Options: connected sender names if available,
558
+ \`I’ll paste a LinkedIn profile\`, \`I’ll paste a company website/domain\`,
559
+ \`Other / custom\`.
560
+ 2. \`Who should the LinkedIn messages send from?\` Options: \`same person/company\`,
561
+ connected sender names if available, \`I’ll paste a different sender profile\`,
562
+ \`Other / custom\`.
563
+
564
+ After that answer, do the lightweight lookup. For a connected sender, call
565
+ \`mcp__sellable__enrich_sender\` and identify their current or most recent
566
+ company. For a LinkedIn profile, call
567
+ \`mcp__sellable__fetch_linkedin_profile\` and infer the current or most recent
568
+ company from the profile. Then ask:
569
+
570
+ \`\`\`text
571
+ Cool — I have this as {campaign subject/company}, sending from {sender}. Is that right?
572
+ \`\`\`
544
573
 
545
- After that answer, do the lightweight lookup, confirm the company/sender
546
- context, then ask the campaign setup questions. The setup questions should use
547
- the confirmed company context so they do not feel generic.
574
+ After the user confirms the subject and sender, run one lightweight company lookup
575
+ (\`mcp__sellable__fetch_company\` when possible, otherwise one web lookup), then
576
+ ask the campaign setup questions. The setup questions should use the confirmed
577
+ company context so they do not feel generic.
548
578
 
549
579
  Before the identity gate, use this customer-facing shape:
550
580
 
551
581
  \`\`\`text
552
582
  I’m ready to build the campaign in {workspace}.
553
583
 
554
- First I need to confirm who we’re launching for. If you give me a LinkedIn
555
- profile or company website, I’ll use that to understand the company, then I’ll
556
- confirm it with you before we pick the target, offer, proof, and lead source.
584
+ First I need to confirm who this campaign is for and who we’re sending from. If
585
+ you already have a connected sender, I can use that to infer the company;
586
+ otherwise paste a LinkedIn profile or company website and I’ll look it up.
557
587
 
558
588
  Then I’ll turn that into a campaign brief for you to approve before anything is created.
559
589
  \`\`\`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code and Codex",
6
6
  "bin": {