@sellable/install 0.1.703 → 0.1.705
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/bin/sellable-install.mjs +4 -0
- package/container/Dockerfile +7 -7
- package/container/README.md +1 -1
- package/lib/sellable-agent/external-runtime-builder.mjs +1 -1
- package/lib/sellable-agent/fly-customer-image/Dockerfile +3 -3
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +2 -2
- package/lib/sellable-agent/host-bootstrap.mjs +2 -2
- package/lib/sellable-agent/host-worker.mjs +2 -2
- package/lib/sellable-agent/profile-materializer.mjs +2 -2
- package/lib/sellable-agent/provisioning-adapter.mjs +2 -2
- package/package.json +1 -1
- package/skill-templates/create-campaign.md +29 -0
package/bin/sellable-install.mjs
CHANGED
|
@@ -1146,6 +1146,10 @@ const CREATE_CAMPAIGN_ALLOWED_TOOLS = [
|
|
|
1146
1146
|
"mcp__sellable__attach_sequence",
|
|
1147
1147
|
"mcp__sellable__attach_recommended_sequence",
|
|
1148
1148
|
"mcp__sellable__start_campaign",
|
|
1149
|
+
"mcp__sellable__add_to_inmail_campaign",
|
|
1150
|
+
"mcp__sellable__add_to_connection_campaign",
|
|
1151
|
+
"mcp__sellable__get_or_create_direct_campaign_table",
|
|
1152
|
+
"mcp__sellable__start_direct_campaign",
|
|
1149
1153
|
];
|
|
1150
1154
|
|
|
1151
1155
|
const FIND_LEADS_ALLOWED_TOOLS = [
|
package/container/Dockerfile
CHANGED
|
@@ -3,13 +3,13 @@ FROM ${HERMES_IMAGE}
|
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
7
|
-
ARG MCP_PACKAGE=@sellable/mcp@0.1.
|
|
6
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.705
|
|
7
|
+
ARG MCP_PACKAGE=@sellable/mcp@0.1.911
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
|
-
ARG MCP_INTEGRITY=sha512-
|
|
9
|
+
ARG MCP_INTEGRITY=sha512-HBm62YPW1kv836X+ZYf748g8SLbfEdrp4lAbhkQjwsTcJm9nxHu0qa346F/N2xTgsEqMGVk8L0B4sA5rv0TMCg==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
12
|
-
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.705" \
|
|
12
|
+
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.911" \
|
|
13
13
|
&& test -n "${INSTALLER_INTEGRITY}" \
|
|
14
14
|
&& test "$(npm view "${INSTALLER_PACKAGE}" dist.integrity)" = "${INSTALLER_INTEGRITY}" \
|
|
15
15
|
&& test "$(npm view "${MCP_PACKAGE}" dist.integrity)" = "${MCP_INTEGRITY}" \
|
|
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.703" \
|
|
|
23
23
|
&& mkdir -p /opt/sellable-agent/install-root /opt/sellable-agent/mcp-root \
|
|
24
24
|
&& npm install --prefix /opt/sellable-agent/install-root --omit=dev --ignore-scripts --no-audit --no-fund "${INSTALLER_PACKAGE}" \
|
|
25
25
|
&& npm install --prefix /opt/sellable-agent/mcp-root --omit=dev --ignore-scripts --no-audit --no-fund "${MCP_PACKAGE}" \
|
|
26
|
-
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.
|
|
26
|
+
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.705' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.911') throw new Error('package identity rejected');" \
|
|
27
27
|
&& node --input-type=module -e "import { buildExternalRuntimeClosure } from '/opt/sellable-agent/install-root/node_modules/@sellable/install/lib/sellable-agent/external-runtime-builder.mjs'; const built = buildExternalRuntimeClosure({ mcpPackageRoot: '/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp', mcpNodeModulesRoot: '/opt/sellable-agent/mcp-root/node_modules', hermesSourceRoot: '/opt/hermes', ownerUid: 0, ownerGid: 0 }); if (!built.closureDigest) throw new Error('runtime closure rejected');" \
|
|
28
|
-
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.
|
|
28
|
+
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.705', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.911', mcpIntegrity: process.argv[2] }; writeFileSync('/opt/sellable-agent/release.json', JSON.stringify(release) + '\\n', { mode: 0o444 }); chmodSync('/opt/sellable-agent/release.json', 0o444);" "${INSTALLER_INTEGRITY}" "${MCP_INTEGRITY}" \
|
|
29
29
|
&& npm cache clean --force
|
|
30
30
|
|
|
31
31
|
COPY entrypoint.sh /usr/local/bin/sellable-agent-container-entrypoint
|
package/container/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
This image is a dedicated Agent worker/runtime boundary beside an existing Hermes dashboard. It never replaces or reconfigures the dashboard container.
|
|
4
4
|
|
|
5
5
|
Build from this directory after
|
|
6
|
-
`@sellable/install@0.1.
|
|
6
|
+
`@sellable/install@0.1.705` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
|
|
29
29
|
const MANIFEST_VERSION = "sellable-agent-external-runtime-closure/v1";
|
|
30
30
|
const MCP_PACKAGE = "@sellable/mcp";
|
|
31
|
-
const MCP_VERSION = "0.1.
|
|
31
|
+
const MCP_VERSION = "0.1.911";
|
|
32
32
|
const SAFE_COMPONENT = /^[A-Za-z0-9@._+-]+$/;
|
|
33
33
|
const HERMES_EXCLUDES = new Set([".git", ".playwright", "node_modules"]);
|
|
34
34
|
|
|
@@ -6,9 +6,9 @@ USER root
|
|
|
6
6
|
|
|
7
7
|
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
|
|
8
8
|
|
|
9
|
-
ARG MCP_PACKAGE=@sellable/mcp@0.1.
|
|
10
|
-
ARG MCP_INTEGRITY=sha512-
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
9
|
+
ARG MCP_PACKAGE=@sellable/mcp@0.1.911
|
|
10
|
+
ARG MCP_INTEGRITY=sha512-HBm62YPW1kv836X+ZYf748g8SLbfEdrp4lAbhkQjwsTcJm9nxHu0qa346F/N2xTgsEqMGVk8L0B4sA5rv0TMCg==
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.705
|
|
12
12
|
ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
|
|
13
13
|
ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
|
|
14
14
|
ARG TUS_JS_CLIENT_VERSION=4.3.1
|
|
@@ -105,9 +105,9 @@ const RUNTIME_GENERATION = Number(
|
|
|
105
105
|
const BOOT_SESSION_ID = randomUUID();
|
|
106
106
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.4";
|
|
107
107
|
const INSTALLER_PACKAGE =
|
|
108
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
108
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.705";
|
|
109
109
|
const MCP_PACKAGE =
|
|
110
|
-
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.
|
|
110
|
+
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.911";
|
|
111
111
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
112
112
|
"/usr/local/share/sellable-agent/default-profile-bundle";
|
|
113
113
|
const DEFAULT_PROFILE_CRON_PYTHON = [
|
|
@@ -38,8 +38,8 @@ import { installAgentHostServices } from "./service-installer.mjs";
|
|
|
38
38
|
const PACKAGE_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "../..");
|
|
39
39
|
const VERSION = "sellable-agent-host-bootstrap/v1";
|
|
40
40
|
const RECEIPT_VERSION = "sellable-agent-host-registration/v1";
|
|
41
|
-
const INSTALLER_PACKAGE = "@sellable/install@0.1.
|
|
42
|
-
const MCP_PACKAGE = "@sellable/mcp@0.1.
|
|
41
|
+
const INSTALLER_PACKAGE = "@sellable/install@0.1.705";
|
|
42
|
+
const MCP_PACKAGE = "@sellable/mcp@0.1.911";
|
|
43
43
|
const HERMES_VERSION = "0.18.0";
|
|
44
44
|
const SHA256 = /^[a-f0-9]{64}$/;
|
|
45
45
|
const SHA256_16 = /^[a-f0-9]{16}$/;
|
|
@@ -1547,8 +1547,8 @@ export function compileClaimToProfileDesired(activeClaim, config) {
|
|
|
1547
1547
|
pinned.hermesCli !== "hermes" ||
|
|
1548
1548
|
pinned.hermesVersion !== "0.18.0" ||
|
|
1549
1549
|
pinned.installerPackage !==
|
|
1550
|
-
"@sellable/install@0.1.
|
|
1551
|
-
pinned.mcpPackage !== "@sellable/mcp@0.1.
|
|
1550
|
+
"@sellable/install@0.1.705" ||
|
|
1551
|
+
pinned.mcpPackage !== "@sellable/mcp@0.1.911" ||
|
|
1552
1552
|
!Array.isArray(policy.toolInclude) ||
|
|
1553
1553
|
policy.toolInclude.length === 0 ||
|
|
1554
1554
|
!Number.isSafeInteger(slack.generation) ||
|
|
@@ -283,8 +283,8 @@ function validateDesired(desired) {
|
|
|
283
283
|
desired.hermesCli !== "hermes" ||
|
|
284
284
|
desired.hermesVersion !== "0.18.0" ||
|
|
285
285
|
desired.installerPackage !==
|
|
286
|
-
"@sellable/install@0.1.
|
|
287
|
-
desired.mcpPackage !== "@sellable/mcp@0.1.
|
|
286
|
+
"@sellable/install@0.1.705" ||
|
|
287
|
+
desired.mcpPackage !== "@sellable/mcp@0.1.911" ||
|
|
288
288
|
!Array.isArray(desired.toolInclude) ||
|
|
289
289
|
desired.toolInclude.length === 0 ||
|
|
290
290
|
desired.toolInclude.some((tool) => !/^[a-z][a-z0-9_]{0,127}$/.test(tool)) ||
|
|
@@ -26,8 +26,8 @@ import { deriveContainedProfileId } from "./profile-materializer.mjs";
|
|
|
26
26
|
|
|
27
27
|
export const PROVISIONING_ACTION = "PROVISION_HERMES_PROFILE";
|
|
28
28
|
export const PINNED_INSTALL_PACKAGE =
|
|
29
|
-
"@sellable/install@0.1.
|
|
30
|
-
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.
|
|
29
|
+
"@sellable/install@0.1.705";
|
|
30
|
+
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.911";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|
|
33
33
|
);
|
package/package.json
CHANGED
|
@@ -77,6 +77,10 @@ allowed-tools:
|
|
|
77
77
|
- mcp__sellable__attach_sequence
|
|
78
78
|
- mcp__sellable__attach_recommended_sequence
|
|
79
79
|
- mcp__sellable__start_campaign
|
|
80
|
+
- mcp__sellable__add_to_inmail_campaign
|
|
81
|
+
- mcp__sellable__add_to_connection_campaign
|
|
82
|
+
- mcp__sellable__get_or_create_direct_campaign_table
|
|
83
|
+
- mcp__sellable__start_direct_campaign
|
|
80
84
|
---
|
|
81
85
|
|
|
82
86
|
# Sellable Create Campaign
|
|
@@ -86,6 +90,30 @@ It bootstraps auth and host capabilities, then loads the internal
|
|
|
86
90
|
the internal campaign workflow prompt and `core/flow.v2.json` through MCP. Keep
|
|
87
91
|
this wrapper thin; the packaged workflow is the operational source of truth.
|
|
88
92
|
|
|
93
|
+
## Direct Manual-Copy Campaign Routing
|
|
94
|
+
|
|
95
|
+
Route a bounded one-off request to the direct campaign tools when the user
|
|
96
|
+
already supplies the recipients and exact message copy. For InMail, require a
|
|
97
|
+
LinkedIn URL, Subject, and Message per row, select the intended sender, then use
|
|
98
|
+
`add_to_inmail_campaign`. For a connection-plus-DM request, use
|
|
99
|
+
`add_to_connection_campaign`. These tools create or reuse the canonical typed
|
|
100
|
+
execution-queue table; do not call `create_campaign`,
|
|
101
|
+
`create_on_demand_campaign`, or a connection helper first.
|
|
102
|
+
|
|
103
|
+
Do not create a normal Campaign Builder Generate Message column, rewrite the
|
|
104
|
+
approved manual copy, or repair the typed direct table merely because its
|
|
105
|
+
message is stored in a plain `Message` text column. That is the owned schema for
|
|
106
|
+
`inmail_campaign` and `connection_campaign` tables.
|
|
107
|
+
|
|
108
|
+
Show the bounded recipients and exact copy for review before adding rows. Never
|
|
109
|
+
call `start_direct_campaign` until the user explicitly approves launch. When
|
|
110
|
+
approved, start the same direct type used by the add tool; do not call
|
|
111
|
+
`start_campaign` for that table.
|
|
112
|
+
|
|
113
|
+
Billing diagnostics are not launch authority. Honor a billing error returned by
|
|
114
|
+
the actual add/start mutation, but never interpret `billing_required`
|
|
115
|
+
diagnostics as an enforced block when the billing rollout gate is disabled.
|
|
116
|
+
|
|
89
117
|
## Inbox Reply Tool Boundary
|
|
90
118
|
|
|
91
119
|
Inbox reply tools are outside campaign creation. If a user asks to search,
|
|
@@ -291,6 +319,7 @@ only from a source that can describe this turn:
|
|
|
291
319
|
context. Do not infer an ID from the friendly name, do not infer effort from
|
|
292
320
|
`alwaysThinkingEnabled`, and do not show this self-report to the user during
|
|
293
321
|
normal campaign setup.
|
|
322
|
+
|
|
294
323
|
- Do not run a nested `claude -p`, inspect `~/.claude/settings.json`, or read
|
|
295
324
|
Claude CLI defaults as proof of the user's active Claude Code session. Those
|
|
296
325
|
checks can validate a new child session or saved defaults, but not this
|