@sellable/install 0.1.36 → 0.1.38

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.
@@ -11,10 +11,32 @@ import {
11
11
  import { homedir } from "node:os";
12
12
  import { dirname, join, relative } from "node:path";
13
13
  import { stdout as output } from "node:process";
14
+ import { fileURLToPath } from "node:url";
14
15
 
15
16
  const DEFAULT_API_URL = "https://app.sellable.dev";
16
17
  const DEFAULT_SERVER_PACKAGE =
17
18
  process.env.SELLABLE_MCP_PACKAGE || "@sellable/mcp@latest";
19
+
20
+ function getInstallVersion() {
21
+ try {
22
+ const here = dirname(fileURLToPath(import.meta.url));
23
+ const pkg = JSON.parse(readFileSync(join(here, "..", "package.json"), "utf8"));
24
+ return pkg.version || "unknown";
25
+ } catch {
26
+ return "unknown";
27
+ }
28
+ }
29
+
30
+ function getMcpVersion() {
31
+ try {
32
+ const r = spawnSync("npm", ["view", "@sellable/mcp", "version"], {
33
+ encoding: "utf8",
34
+ timeout: 5000,
35
+ });
36
+ if (r.status === 0 && r.stdout) return r.stdout.trim();
37
+ } catch {}
38
+ return "latest";
39
+ }
18
40
  const CODEX_PLUGIN_VERSION = "0.1.27";
19
41
  const CODEX_PLUGIN_COMPAT_VERSIONS = [
20
42
  "0.1.8",
@@ -1034,39 +1056,6 @@ function codexPluginSkills() {
1034
1056
  skillMd: createCampaignSkillMd(),
1035
1057
  soulMd: createCampaignSoulMd(),
1036
1058
  },
1037
- {
1038
- dir: "sellable-engage",
1039
- displayName: "Sellable Engage",
1040
- description: "Discover posts and draft comments for a comment campaign",
1041
- skillMd: genericSellableSkillMd({
1042
- name: "engage",
1043
- title: "Sellable Engage",
1044
- description:
1045
- "Find high-signal LinkedIn posts and draft thoughtful engagement comments, then load approved comments into the sender's comment campaign.",
1046
- }),
1047
- },
1048
- {
1049
- dir: "sellable-interview",
1050
- displayName: "Sellable Interview",
1051
- description: "Build a commenting style guide and ICP profile",
1052
- skillMd: genericSellableSkillMd({
1053
- name: "interview",
1054
- title: "Sellable Interview",
1055
- description:
1056
- "Voice-first interview to build your commenting style guide and ICP profile.",
1057
- }),
1058
- },
1059
- {
1060
- dir: "sellable-workflow-sequences",
1061
- displayName: "Sellable Workflow Sequences",
1062
- description: "Create workflow tables and attach outbound sequences",
1063
- skillMd: genericSellableSkillMd({
1064
- name: "workflow-sequences",
1065
- title: "Sellable Workflow Sequences",
1066
- description:
1067
- "Create workflow tables via Sellable MCP, attach outbound sequence templates, and avoid manual sequence-column runCondition mistakes.",
1068
- }),
1069
- },
1070
1059
  ];
1071
1060
  }
1072
1061
 
@@ -1455,6 +1444,12 @@ function printNextSteps(installedHosts) {
1455
1444
  ` LinkedIn: ${C.cyan}https://www.linkedin.com/in/csreyes92/${C.reset} ${C.grey}(DM Christian directly)${C.reset}`
1456
1445
  );
1457
1446
  console.log("");
1447
+ const installV = getInstallVersion();
1448
+ const mcpV = getMcpVersion();
1449
+ console.log(
1450
+ ` ${C.grey}@sellable/install v${installV} · @sellable/mcp v${mcpV} · Codex plugin v${CODEX_PLUGIN_VERSION}${C.reset}`
1451
+ );
1452
+ console.log("");
1458
1453
  }
1459
1454
 
1460
1455
  async function main() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/install",
3
- "version": "0.1.36",
3
+ "version": "0.1.38",
4
4
  "type": "module",
5
5
  "description": "One-command installer for Sellable MCP in Claude Code and Codex",
6
6
  "bin": {