@sellable/mcp 0.1.73 → 0.1.74
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/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/tools/bootstrap.d.ts +15 -1
- package/dist/tools/bootstrap.js +35 -1
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +33 -0
- package/skills/create-campaign-v2/SKILL.md +52 -20
- package/skills/create-campaign-v2/core/flow.v2.json +30 -0
- package/skills/research/config.json +0 -9
package/dist/index-dev.js
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
File without changes
|
|
@@ -19,6 +19,20 @@ type BootstrapBlockingError = {
|
|
|
19
19
|
message: string;
|
|
20
20
|
guidance: string;
|
|
21
21
|
};
|
|
22
|
+
type CampaignFramework = ReturnType<typeof getCampaignFramework>;
|
|
23
|
+
type BootstrapFrameworkSummary = {
|
|
24
|
+
flowVersion: CampaignFramework["flowVersion"];
|
|
25
|
+
policyChars: number;
|
|
26
|
+
flowWorkflow: string | null;
|
|
27
|
+
flowStepCount: number | null;
|
|
28
|
+
providerOrder: string[];
|
|
29
|
+
providerIds: string[];
|
|
30
|
+
pluginIds: string[];
|
|
31
|
+
overrideKeys: string[];
|
|
32
|
+
warningCount: number;
|
|
33
|
+
warnings: string[];
|
|
34
|
+
loadFullFrameworkWith: string;
|
|
35
|
+
};
|
|
22
36
|
type BootstrapCreateCampaignResult = {
|
|
23
37
|
requiredChecks: BootstrapCheck[];
|
|
24
38
|
blockingErrors: BootstrapBlockingError[];
|
|
@@ -28,7 +42,7 @@ type BootstrapCreateCampaignResult = {
|
|
|
28
42
|
flowVersion: "v1" | "v2";
|
|
29
43
|
campaignId: string | null;
|
|
30
44
|
auth: AuthStatus | null;
|
|
31
|
-
framework:
|
|
45
|
+
framework: BootstrapFrameworkSummary | null;
|
|
32
46
|
campaignContext: Awaited<ReturnType<typeof getCampaignContext>> | null;
|
|
33
47
|
subskillCatalog: ListSubskillPromptsResponse | null;
|
|
34
48
|
createCampaignSubskill: Omit<SubskillPromptResponse, "prompt"> | null;
|
package/dist/tools/bootstrap.js
CHANGED
|
@@ -34,6 +34,40 @@ function pushBlockingError(blockingErrors, check, message) {
|
|
|
34
34
|
guidance: toGuidance(check, message),
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
+
function summarizeFramework(framework) {
|
|
38
|
+
const flow = framework.flow;
|
|
39
|
+
const steps = Array.isArray(flow.steps) ? flow.steps : null;
|
|
40
|
+
const providerOrder = Array.isArray(framework.providerRegistry.defaultProviderOrder)
|
|
41
|
+
? framework.providerRegistry.defaultProviderOrder
|
|
42
|
+
: [];
|
|
43
|
+
const providerIds = Array.isArray(framework.providerRegistry.providers)
|
|
44
|
+
? framework.providerRegistry.providers
|
|
45
|
+
.map((provider) => provider.id)
|
|
46
|
+
.filter((id) => typeof id === "string")
|
|
47
|
+
: Object.keys(framework.providers || {});
|
|
48
|
+
const pluginIds = Array.isArray(framework.plugins)
|
|
49
|
+
? framework.plugins
|
|
50
|
+
.map((plugin) => plugin && typeof plugin === "object" && "id" in plugin
|
|
51
|
+
? plugin.id
|
|
52
|
+
: null)
|
|
53
|
+
.filter((id) => typeof id === "string")
|
|
54
|
+
: [];
|
|
55
|
+
return {
|
|
56
|
+
flowVersion: framework.flowVersion,
|
|
57
|
+
policyChars: framework.policy.length,
|
|
58
|
+
flowWorkflow: typeof flow.workflow === "string" ? flow.workflow : null,
|
|
59
|
+
flowStepCount: steps ? steps.length : null,
|
|
60
|
+
providerOrder,
|
|
61
|
+
providerIds,
|
|
62
|
+
pluginIds,
|
|
63
|
+
overrideKeys: Object.keys(framework.overrides || {}),
|
|
64
|
+
warningCount: framework.warnings.length,
|
|
65
|
+
warnings: framework.warnings,
|
|
66
|
+
loadFullFrameworkWith: framework.flowVersion === "v2"
|
|
67
|
+
? 'get_subskill_asset({ subskillName: "create-campaign-v2", assetPath: "core/flow.v2.json", offset?, limit? })'
|
|
68
|
+
: 'get_campaign_framework({ flowVersion: "v1", includePlugins: true })',
|
|
69
|
+
};
|
|
70
|
+
}
|
|
37
71
|
export const bootstrapToolDefinitions = [
|
|
38
72
|
{
|
|
39
73
|
name: "bootstrap_create_campaign",
|
|
@@ -257,7 +291,7 @@ export async function bootstrapCreateCampaign(input = {}) {
|
|
|
257
291
|
flowVersion,
|
|
258
292
|
campaignId,
|
|
259
293
|
auth,
|
|
260
|
-
framework,
|
|
294
|
+
framework: framework ? summarizeFramework(framework) : null,
|
|
261
295
|
campaignContext,
|
|
262
296
|
subskillCatalog,
|
|
263
297
|
createCampaignSubskill: subskillMeta,
|
package/package.json
CHANGED
|
@@ -161,11 +161,44 @@ gates. Never use it to collect open text input like LinkedIn URLs, company
|
|
|
161
161
|
domains, notes, pasted context, campaign ideas, or feedback. For open text, ask
|
|
162
162
|
in normal chat and wait for the user to paste the value.
|
|
163
163
|
|
|
164
|
+
For campaign setup, every structured question is single-choice in both Claude
|
|
165
|
+
Code and Codex. Use mutually exclusive options, set or assume
|
|
166
|
+
`multiSelect: false`, and do not use checkbox or multi-select wording. If the
|
|
167
|
+
user needs a blended/custom answer, route them through `Other / custom` or a
|
|
168
|
+
free-text follow-up in normal chat.
|
|
169
|
+
|
|
164
170
|
Customer-facing language must call this "a couple setup choices" during normal
|
|
165
171
|
campaign progress. Use "quick question panel" only when explaining a missing
|
|
166
172
|
Codex/Claude setup capability. Do not tell customers about `request_user_input`,
|
|
167
173
|
Default mode, plugin caches, prompt loading, or skill file versions.
|
|
168
174
|
|
|
175
|
+
## Host Runtime Functions
|
|
176
|
+
|
|
177
|
+
Treat host capabilities as concrete functions, not prose conventions:
|
|
178
|
+
|
|
179
|
+
- `ask_user`: Claude Code uses `AskUserQuestion`; Codex uses
|
|
180
|
+
`request_user_input`. Use this for multiple-choice intake, campaign-focus
|
|
181
|
+
choices, source decisions, and approvals. Campaign setup questions are
|
|
182
|
+
single-choice only; do not use multi-select or checkbox variants. Never
|
|
183
|
+
render numbered plain-chat choices in an interactive session when the
|
|
184
|
+
structured question function is exposed.
|
|
185
|
+
- `load_subprompt`: call
|
|
186
|
+
`mcp__sellable__get_subskill_prompt({ subskillName, offset?, limit? })` and
|
|
187
|
+
continue chunks until `hasMore` is false.
|
|
188
|
+
- `load_subprompt_asset`: call
|
|
189
|
+
`mcp__sellable__get_subskill_asset({ subskillName, assetPath, offset?, limit? })`
|
|
190
|
+
and continue chunks until `hasMore` is false.
|
|
191
|
+
- `load_source_scout_registry`: call
|
|
192
|
+
`mcp__sellable__get_source_scout_registry({})` before any scout dispatch.
|
|
193
|
+
- `launch_source_scout`: Claude Code uses `Task` with `subagent_type` equal to
|
|
194
|
+
the registry `name`; Codex uses named custom agents such as
|
|
195
|
+
`source-scout-linkedin-engagement`, `source-scout-sales-nav`, and
|
|
196
|
+
`source-scout-prospeo-contact` when subagents are available.
|
|
197
|
+
|
|
198
|
+
If a required interactive host function is missing, stop and explain the
|
|
199
|
+
Sellable install/reload problem. Do not silently simulate structured choices,
|
|
200
|
+
subprompt loading, or source-scout dispatch with local scripts.
|
|
201
|
+
|
|
169
202
|
Never narrate local draft housekeeping to the user. If you create directories,
|
|
170
203
|
save drafts, write artifacts, or persist intermediate state, translate it into
|
|
171
204
|
the campaign benefit: consistent brief, approved lead source, reviewed message,
|
|
@@ -84,10 +84,15 @@ Validated draft directory:
|
|
|
84
84
|
`[features].default_mode_request_user_input = true`, not available in
|
|
85
85
|
`codex exec`). Treat them as equivalent approval/intake gates and persist the
|
|
86
86
|
same draft artifacts after the user answers. Use this structured gate only for
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
87
|
+
single-choice decisions with fixed options or approval gates. Every campaign
|
|
88
|
+
setup gate must be single-choice in both hosts: set or assume
|
|
89
|
+
`multiSelect: false`, use mutually exclusive option labels, and do not ask
|
|
90
|
+
for checkbox or multi-select answers. If a blended answer is useful, present
|
|
91
|
+
the blend as one explicit option or route the user through `Other / custom`
|
|
92
|
+
and a free-text follow-up in chat. Never use it to collect open text input
|
|
93
|
+
like LinkedIn URLs, company domains, notes, pasted context, campaign ideas,
|
|
94
|
+
or feedback. For open text, ask in normal chat and wait for the user to paste
|
|
95
|
+
the value. If an interactive
|
|
91
96
|
Codex session does not expose `request_user_input`, do not silently degrade to
|
|
92
97
|
a plain chat question; stop and tell the user:
|
|
93
98
|
|
|
@@ -234,12 +239,30 @@ Validated draft directory:
|
|
|
234
239
|
|
|
235
240
|
Sender options should include connected sender names if available, `same as
|
|
236
241
|
me`, `I’ll paste a different sender profile`, and `Other / custom`.
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
242
|
+
When the answer can be represented as choices, ask it with the host-native
|
|
243
|
+
structured question gate. Do not render sender or campaign-focus choices as a
|
|
244
|
+
numbered plain-chat list in interactive Claude Code or Codex. Plain chat is
|
|
245
|
+
only for free-text values like a pasted LinkedIn URL, company domain, CSV
|
|
246
|
+
path, or custom explanation.
|
|
247
|
+
|
|
248
|
+
After the user confirms the subject and sender, check whether the company
|
|
249
|
+
context implies more than one campaignable product line, service, or offer.
|
|
250
|
+
If so, ask one structured campaign-focus question before the setup packet
|
|
251
|
+
(for example, "Which Sellable offer is this campaign for?") with no more than
|
|
252
|
+
three specific options plus `Other / custom`. Do not ask this as plain
|
|
253
|
+
numbered chat.
|
|
254
|
+
|
|
255
|
+
Then run one lightweight sender/company research pass before asking buyer,
|
|
256
|
+
offer, proof, or source questions. Prefer loading
|
|
257
|
+
`get_subskill_prompt({ subskillName: "research-sender" })`, running its
|
|
258
|
+
fetch/profile/company/WebSearch batch when those tools are exposed, and
|
|
259
|
+
calling `complete_sender_research`. If WebSearch is unavailable, use the
|
|
260
|
+
available MCP profile/company/post tools, call `complete_sender_research`
|
|
261
|
+
with the evidence counts found, and continue with explicit gaps. The setup
|
|
262
|
+
questions should use the confirmed company context and researched proof /
|
|
263
|
+
positioning options so they do not feel generic. If identity is still
|
|
264
|
+
unavailable, use neutral/custom intake options instead of guessed
|
|
265
|
+
vertical-specific options.
|
|
243
266
|
|
|
244
267
|
- Before the identity gate, use this customer-facing shape:
|
|
245
268
|
|
|
@@ -272,9 +295,10 @@ me`, `I’ll paste a different sender profile`, and `Other / custom`.
|
|
|
272
295
|
draft-directory inspection/creation. `list_senders` is allowed once before the
|
|
273
296
|
first identity gate as a quiet token/sender inference shortcut, and once means
|
|
274
297
|
once: do not call it again after a LinkedIn lookup if it already ran. Do
|
|
275
|
-
draft-directory setup only after the founder answers. After launch identity
|
|
276
|
-
|
|
277
|
-
|
|
298
|
+
draft-directory setup only after the founder answers. After launch identity,
|
|
299
|
+
sender, and any ambiguous campaign focus are confirmed, the setup packet must
|
|
300
|
+
use the structured question gate and ask buyer, offer/CTA, proof, and lead
|
|
301
|
+
source. All four questions must include an `Other / custom` option.
|
|
278
302
|
- After the founder answers the first strategy/source packet, explain the next
|
|
279
303
|
stage only: campaign brief creation and brief approval. Use this shape:
|
|
280
304
|
|
|
@@ -452,10 +476,10 @@ should test for this campaign. Those can run in parallel and usually take
|
|
|
452
476
|
(display: LinkedIn Engagement Scout, powered by the `signal-discovery`
|
|
453
477
|
provider prompt), `source-scout-sales-nav` (Sales Nav Scout), and
|
|
454
478
|
`source-scout-prospeo-contact` (Prospeo Contact Scout). For Claude Code, explicitly
|
|
455
|
-
invoke the generated
|
|
456
|
-
for all credible lanes in one assistant message; they are
|
|
457
|
-
same canonical Sellable agent registry and carry explicit
|
|
458
|
-
allowlists. The parent thread should not preload every provider prompt before
|
|
479
|
+
invoke the generated `source-scout-*` Task/Agent subagents installed by
|
|
480
|
+
`@sellable/install` for all credible lanes in one assistant message; they are
|
|
481
|
+
installed from the same canonical Sellable agent registry and carry explicit
|
|
482
|
+
Sellable MCP tool allowlists. The parent thread should not preload every provider prompt before
|
|
459
483
|
spawning scouts; each scout loads only its own provider prompt. If host
|
|
460
484
|
subagents are unavailable, use independent MCP/tool calls
|
|
461
485
|
in the same model turn or dedicated Sellable MCP tools that perform
|
|
@@ -549,11 +573,19 @@ emphasis, tone, lead-source preference), always make it clear the user can give
|
|
|
549
573
|
a custom answer. Add an explicit `Other / custom` option to each subjective
|
|
550
574
|
question. Do not rely on prose like "you can add detail" as the only custom
|
|
551
575
|
path. Do not add custom options to the final six-choice commit gate.
|
|
576
|
+
Every subjective setup question is single-choice in both Claude Code and
|
|
577
|
+
Codex. Use mutually exclusive options, set or assume `multiSelect: false`, and
|
|
578
|
+
never use checkbox or multi-select wording that invites selecting several
|
|
579
|
+
options. If a blended answer is likely, make the blend a single named option or
|
|
580
|
+
route it through `Other / custom` and a normal-chat follow-up.
|
|
581
|
+
Do not batch setup as a Claude Code multi-select wizard; buyer, offer/CTA,
|
|
582
|
+
proof, and lead source remain single-choice questions even when the host
|
|
583
|
+
displays them in a sequence.
|
|
552
584
|
Use customer-facing question wording:
|
|
553
585
|
|
|
554
|
-
- target prospects: `Who should be the target prospects for this campaign
|
|
555
|
-
- main CTA / offer: `What should the main CTA or offer be
|
|
556
|
-
- proof emphasis: `Which proof point would most increase this buyer's confidence in {{company}}
|
|
586
|
+
- target prospects: `Who should be the target prospects for this campaign?`
|
|
587
|
+
- main CTA / offer: `What should the main CTA or offer be?`
|
|
588
|
+
- proof emphasis: `Which proof point would most increase this buyer's confidence in {{company}}?`
|
|
557
589
|
- lead source: `How should we get the people for this campaign?`
|
|
558
590
|
|
|
559
591
|
Ask the lead-source question as the last question in the first strategy
|
|
@@ -127,6 +127,35 @@
|
|
|
127
127
|
"mustNotInferFromNameOnly": true,
|
|
128
128
|
"fallback": "ask identity gate first; use neutral/custom intake options only when identity remains unavailable"
|
|
129
129
|
},
|
|
130
|
+
{
|
|
131
|
+
"action": "confirm_ambiguous_campaign_focus_with_structured_gate",
|
|
132
|
+
"when": "after_identity_before_founder_strategy_source_packet",
|
|
133
|
+
"allowedTools": ["AskUserQuestion", "request_user_input"],
|
|
134
|
+
"questionType": "single-choice only; plain chat only for free-text custom detail",
|
|
135
|
+
"multiSelect": false,
|
|
136
|
+
"maxOptions": 4,
|
|
137
|
+
"requiredOption": "Other / custom",
|
|
138
|
+
"chatRenderRule": "If the sender/company context has multiple campaignable product lines, services, or offers, ask exactly one single-choice structured campaign-focus question before buyer/offer/proof/source. Do not ask numbered plain-chat choices when the structured question tool is available. Do not use checkbox or multi-select wording."
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"action": "run_sender_company_research_before_strategy_packet",
|
|
142
|
+
"target": "research-sender",
|
|
143
|
+
"when": "after_identity_and_campaign_focus_before_founder_strategy_source_packet",
|
|
144
|
+
"allowedTools": [
|
|
145
|
+
"get_subskill_prompt",
|
|
146
|
+
"fetch_linkedin_profile",
|
|
147
|
+
"fetch_company",
|
|
148
|
+
"fetch_linkedin_posts",
|
|
149
|
+
"fetch_company_posts",
|
|
150
|
+
"WebFetch",
|
|
151
|
+
"WebSearch",
|
|
152
|
+
"ToolSearch",
|
|
153
|
+
"complete_sender_research"
|
|
154
|
+
],
|
|
155
|
+
"requiredCompletion": "complete_sender_research",
|
|
156
|
+
"fallback": "If WebSearch is unavailable, use available MCP profile/company/post tools, call complete_sender_research with observed counts, and carry explicit proof gaps into the setup packet.",
|
|
157
|
+
"chatRenderRule": "Use researched company positioning and proof options in the buyer/offer/proof/source setup packet; do not ask generic strategy questions from company name alone."
|
|
158
|
+
},
|
|
130
159
|
{
|
|
131
160
|
"action": "render_post_intake_progress_preamble",
|
|
132
161
|
"after": "founder_strategy_source_packet_answered",
|
|
@@ -194,6 +223,7 @@
|
|
|
194
223
|
],
|
|
195
224
|
"forbiddenOptionLabelReason": "Provider/source mechanics are internal to the 'Find people for me' path; first-time users should choose the job they need done, not the scouting provider.",
|
|
196
225
|
"customInput": true,
|
|
226
|
+
"multiSelect": false,
|
|
197
227
|
"lastQuestionInFirstStrategyBatch": true
|
|
198
228
|
}
|
|
199
229
|
],
|