@sellable/mcp 0.1.144 → 0.1.145
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 +14 -3
- package/agents/source-scout-linkedin-engagement.md +4 -3
- package/agents/source-scout-prospeo-contact.md +1 -1
- package/agents/source-scout-sales-nav.md +3 -2
- package/dist/server.js +29 -59
- package/dist/tools/auth.js +5 -5
- package/dist/tools/leads.js +72 -17
- package/dist/tools/registry.d.ts +4186 -0
- package/dist/tools/registry.js +59 -0
- package/package.json +1 -1
- package/skills/create-campaign/SKILL.md +10 -9
- package/skills/create-campaign-v2/SKILL.md +6 -6
- package/skills/create-campaign-v2/SOUL.md +2 -2
- package/skills/create-campaign-v2/core/auto-execute.README.md +4 -4
- package/skills/create-campaign-v2/core/auto-execute.yaml +4 -4
- package/skills/create-campaign-v2/core/flow.v2.json +2 -2
- package/skills/create-campaign-v2/references/approval-gate-framing.md +1 -1
- package/skills/create-campaign-v2/references/filter-leads.md +42 -0
- package/skills/create-campaign-v2/references/sample-validation-loop.md +13 -13
- package/skills/create-campaign-v2/references/step-13-import-leads.md +9 -6
- package/skills/create-campaign-v2/references/watch-guide-narration.md +2 -2
- package/skills/load-voice/SKILL.md +129 -0
- package/skills/providers/prospeo.md +2 -1
- package/skills/providers/sales-nav.md +4 -2
- package/skills/providers/signal-discovery.md +12 -10
|
@@ -98,11 +98,12 @@ You must estimate:
|
|
|
98
98
|
- expected good-fit prospects per right-content post after dedupe/cleanup
|
|
99
99
|
- `postsNeededForTarget`
|
|
100
100
|
- number of right-content posts needed to reach the target good-fit lead
|
|
101
|
-
count, defaulting to
|
|
101
|
+
count, defaulting to 150 for Signal Discovery unless the campaign says
|
|
102
|
+
otherwise
|
|
102
103
|
- `requiredEngagersToScrape`
|
|
103
|
-
- `ceil(targetGoodFitLeads / sampledFitRate)`; for example
|
|
104
|
-
prospects per 100 engagers means a
|
|
105
|
-
1,
|
|
104
|
+
- `ceil(targetGoodFitLeads / sampledFitRate)`; for example 15 good-fit
|
|
105
|
+
prospects per 100 engagers means a 150-good-fit source target needs about
|
|
106
|
+
1,000 engagers scraped
|
|
106
107
|
- `projectedRange`
|
|
107
108
|
- the conservative range implied by the observed sample
|
|
108
109
|
|
|
@@ -126,7 +127,7 @@ Use conservative logic:
|
|
|
126
127
|
- stale posts
|
|
127
128
|
- adjacent communities that are not actual buyers
|
|
128
129
|
4. Explain the pass-through briefly and explicitly:
|
|
129
|
-
- preferred: "`sampledCount`: 40, `passCount`: 9, `passRate`: ~22%, `goodFitPer100Engagers`: ~22 before cleanup / ~13-16 after cleanup, `requiredEngagersToScrape`: ~1,
|
|
130
|
+
- preferred: "`sampledCount`: 40, `passCount`: 9, `passRate`: ~22%, `goodFitPer100Engagers`: ~22 before cleanup / ~13-16 after cleanup, `requiredEngagersToScrape`: ~940-1,150 for a 150-good-fit target after cleanup, `avgReachableEngagersPerPost`: 240, `goodFitProspectsPerPost`: ~31-38, `postsNeededForTarget`: ~4-5, `recentStrongPostCount`: 15-25, `freshEnoughPostCount`: 8-12, `projectedRange`: 150-190 from selected posts"
|
|
130
131
|
- fallback: "I could not fetch engagers, so this is inferred from post and author quality only"
|
|
131
132
|
5. If the evidence is too weak, say so and return a low-confidence estimate instead of pretending precision.
|
|
132
133
|
6. Do not manually enumerate dozens of engagers in the final answer. Summarize the sample by `sampledCount`, `passCount`, `passRate`, `projectedRange`, and 3-6 representative examples.
|
|
@@ -378,7 +379,8 @@ For `create-campaign-v2` source approval, do not treat the default
|
|
|
378
379
|
`selectionTarget` of 3 posts as enough by itself. Before the final source
|
|
379
380
|
recommendation, estimate source capacity from real sample math:
|
|
380
381
|
|
|
381
|
-
- source target good-fit leads (default
|
|
382
|
+
- source target good-fit leads (default 150 for Signal Discovery unless the
|
|
383
|
+
campaign says otherwise)
|
|
382
384
|
- eligible right-content posts by lane/content type
|
|
383
385
|
- reachable engagers from those posts
|
|
384
386
|
- sampled ICP-fit rate as `n/N` plus an easy percentage/range
|
|
@@ -447,7 +449,7 @@ selections, headlineICPCriteria })`, then call
|
|
|
447
449
|
targetLeadCount, targetEngagerCount, maxPostsToScrape })` for the approved
|
|
448
450
|
source-capacity plan without asking for another yes/no gate. Then
|
|
449
451
|
`confirm_lead_list` imports only the bounded review batch into the campaign
|
|
450
|
-
table. Do not confuse the source
|
|
452
|
+
table. Do not confuse the source-candidate target with the review-batch size.
|
|
451
453
|
|
|
452
454
|
The promotion/select step is required campaign state. Use post IDs from the
|
|
453
455
|
current campaign-scoped search result, not stale IDs copied from a source review
|
|
@@ -460,8 +462,8 @@ the source-list materialization.
|
|
|
460
462
|
```json
|
|
461
463
|
import_leads({
|
|
462
464
|
"campaignOfferId": "cmp_xxx",
|
|
463
|
-
"targetLeadCount":
|
|
464
|
-
"targetEngagerCount":
|
|
465
|
+
"targetLeadCount": 1000,
|
|
466
|
+
"targetEngagerCount": 1000,
|
|
465
467
|
"maxPostsToScrape": 5
|
|
466
468
|
})
|
|
467
469
|
```
|
|
@@ -474,7 +476,7 @@ After the lead list finishes and the user confirms it looks good, call:
|
|
|
474
476
|
confirm_lead_list({
|
|
475
477
|
"campaignOfferId": "cmp_xxx",
|
|
476
478
|
"jobId": "<jobId from import_leads>",
|
|
477
|
-
"targetLeadCount":
|
|
479
|
+
"targetLeadCount": 25
|
|
478
480
|
})
|
|
479
481
|
```
|
|
480
482
|
|