@sellable/mcp 0.1.141 → 0.1.143
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/README.md +5 -4
- package/agents/post-find-leads-message-scout.md +3 -3
- package/agents/registry.json +1 -5
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/server.js +29 -59
- package/dist/tools/auth.js +5 -5
- package/dist/tools/leads.d.ts +47 -5
- package/dist/tools/leads.js +93 -16
- package/dist/tools/navigation.js +6 -1
- package/dist/tools/registry.d.ts +4186 -0
- package/dist/tools/registry.js +59 -0
- package/dist/tools/rubrics.js +15 -14
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +37 -26
- package/skills/create-campaign-brief/SKILL.md +4 -0
- package/skills/create-campaign-v2/SKILL.md +25 -15
- package/skills/create-campaign-v2/SOUL.md +23 -22
- package/skills/create-campaign-v2/core/flow.v2.json +65 -11
- package/skills/create-campaign-v2/core/policy.md +35 -39
- package/skills/create-campaign-v2/references/draft-lifecycle.md +20 -104
- package/skills/create-campaign-v2/references/filter-leads.md +199 -525
- package/skills/create-campaign-v2/references/message-review-safety-gate.md +20 -14
- package/skills/create-campaign-v2/references/watch-guide-narration.md +3 -1
- package/skills/find-leads/SKILL.md +3 -3
- package/skills/research/config.json +0 -9
|
@@ -17,20 +17,26 @@ instead of pulling the long prompt into the main thread.
|
|
|
17
17
|
|
|
18
18
|
## Required Workflow
|
|
19
19
|
|
|
20
|
-
1. Read
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
20
|
+
1. Read the live campaign basis: campaign id, campaign revision or
|
|
21
|
+
`campaignUpdatedAt`, campaign brief content, selected source decision,
|
|
22
|
+
selected lead list/source state, `workflowTableId`, imported review-batch
|
|
23
|
+
row ids/hash, and any saved rubric/filter summary supplied by the parent.
|
|
24
|
+
2. Pick 2-3 sample rows from the imported review-batch rows, preferring rows
|
|
25
|
+
that pass the saved rubrics or are likely to pass. Do not invent new rows.
|
|
26
|
+
3. Build the message from the approved campaign brief, selected source context,
|
|
27
|
+
sampled rows, and explicit user answers. Use only proof that appears in that
|
|
28
|
+
live basis. Unsupported reply-rate, meeting-rate, ROI, revenue, and
|
|
29
|
+
customer-logo claims are blocked.
|
|
30
|
+
4. Return a compact message recommendation to the parent thread. Do not write
|
|
31
|
+
local markdown/json artifacts in normal customer runs; emit debug artifacts
|
|
32
|
+
only when the parent explicitly asks for debug/UAT output.
|
|
33
|
+
5. Render the customer-facing message review in chat before asking for approval.
|
|
34
|
+
After approval, the parent persists template and token rules into campaign
|
|
35
|
+
state with `update_campaign_brief`.
|
|
30
36
|
6. Ask exactly `approve-message` or `revise-messaging`. Do not import, queue,
|
|
31
37
|
attach sequence, or start before `approve-message`.
|
|
32
38
|
|
|
33
|
-
## Required
|
|
39
|
+
## Required Message Recommendation Sections
|
|
34
40
|
|
|
35
41
|
- `Status`
|
|
36
42
|
- `Mode`
|
|
@@ -51,8 +57,8 @@ instead of pulling the long prompt into the main thread.
|
|
|
51
57
|
- `Findings`
|
|
52
58
|
- `Recommendation`
|
|
53
59
|
|
|
54
|
-
Keep this
|
|
55
|
-
the full framework.
|
|
60
|
+
Keep this recommendation concise. It should prove the reasoning path, not
|
|
61
|
+
reproduce the full framework.
|
|
56
62
|
|
|
57
63
|
## Message Quality Gates
|
|
58
64
|
|
|
@@ -83,7 +89,7 @@ but the [topic] thread felt close enough to send`. Otherwise omit the
|
|
|
83
89
|
- If the message is plausible but not ready to send, set
|
|
84
90
|
`Recommendation: revise-messaging`.
|
|
85
91
|
|
|
86
|
-
## Customer-Facing
|
|
92
|
+
## Customer-Facing Message Review
|
|
87
93
|
|
|
88
94
|
Render this in chat before asking:
|
|
89
95
|
|
|
@@ -214,7 +214,9 @@ and do not say filtering the batch before rubrics and message approval are
|
|
|
214
214
|
saved. Only show worker statuses as running if those branches actually started.
|
|
215
215
|
When the user chooses filters, immediately persist `enableICPFilters: true` and
|
|
216
216
|
move to `create-icp-rubric` so the watched app shows Filter Rules while Codex
|
|
217
|
-
defines the rules in chat.
|
|
217
|
+
defines the rules in chat. After `save_rubrics`, move to `apply-icp-rubric`
|
|
218
|
+
so the watched app shows Filter Leads with saved rules before message approval
|
|
219
|
+
unlocks any enrichment or filtering.
|
|
218
220
|
|
|
219
221
|
Fit + message:
|
|
220
222
|
|
|
@@ -132,9 +132,9 @@ The kickoff doc is the resume surface. Re-open it before repeating discovery wor
|
|
|
132
132
|
- Before the first provider prompt, search, source scout, or signal-discovery
|
|
133
133
|
call, show the user a compact source plan and get approval. The plan must say
|
|
134
134
|
which campaign-specific options are plausible, which lane you recommend
|
|
135
|
-
first,
|
|
136
|
-
|
|
137
|
-
|
|
135
|
+
first, the exact evidence you expect to test for this ICP/offer, what
|
|
136
|
+
fallback lane you will use if the evidence is thin, and that approval
|
|
137
|
+
authorizes scouting/search only.
|
|
138
138
|
- When enough context exists, try 1-2 alternate hypotheses if the first lane is too weak or noisy.
|
|
139
139
|
- Directional preview does not require a sender, campaign, or selected lead list. Start with count/sample exploration first; only attach searches to a campaign when the user is ready to import.
|
|
140
140
|
- If the user already has a LinkedIn-profile CSV, treat that as a direct lead-list path and skip discovery.
|