@sellable/install 0.1.193 → 0.1.195
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
CHANGED
|
@@ -601,6 +601,8 @@ const CREATE_CAMPAIGN_ALLOWED_TOOLS = [
|
|
|
601
601
|
"mcp__sellable__search_prospeo",
|
|
602
602
|
"mcp__sellable__search_prospeo_companies",
|
|
603
603
|
"mcp__sellable__confirm_prospeo_company_accounts",
|
|
604
|
+
"mcp__sellable__search_harvest_jobs",
|
|
605
|
+
"mcp__sellable__confirm_harvest_job_companies",
|
|
604
606
|
"mcp__sellable__search_signals",
|
|
605
607
|
"mcp__sellable__fetch_post_engagers",
|
|
606
608
|
"mcp__sellable__enrich_with_prospeo",
|
|
@@ -630,6 +632,7 @@ const CREATE_CAMPAIGN_ALLOWED_TOOLS = [
|
|
|
630
632
|
"mcp__sellable__get_rows",
|
|
631
633
|
"mcp__sellable__get_rows_minimal",
|
|
632
634
|
"mcp__sellable__get_table_rows",
|
|
635
|
+
"mcp__sellable__list_dnc_entries",
|
|
633
636
|
"mcp__sellable__load_csv_dnc_entries",
|
|
634
637
|
"mcp__sellable__load_csv_linkedin_leads",
|
|
635
638
|
"mcp__sellable__load_csv_domains",
|
package/package.json
CHANGED
|
@@ -29,6 +29,8 @@ allowed-tools:
|
|
|
29
29
|
- mcp__sellable__search_prospeo
|
|
30
30
|
- mcp__sellable__search_prospeo_companies
|
|
31
31
|
- mcp__sellable__confirm_prospeo_company_accounts
|
|
32
|
+
- mcp__sellable__search_harvest_jobs
|
|
33
|
+
- mcp__sellable__confirm_harvest_job_companies
|
|
32
34
|
- mcp__sellable__search_signals
|
|
33
35
|
- mcp__sellable__fetch_post_engagers
|
|
34
36
|
- mcp__sellable__enrich_with_prospeo
|
|
@@ -58,6 +60,7 @@ allowed-tools:
|
|
|
58
60
|
- mcp__sellable__get_rows
|
|
59
61
|
- mcp__sellable__get_rows_minimal
|
|
60
62
|
- mcp__sellable__get_table_rows
|
|
63
|
+
- mcp__sellable__list_dnc_entries
|
|
61
64
|
- mcp__sellable__load_csv_dnc_entries
|
|
62
65
|
- mcp__sellable__load_csv_linkedin_leads
|
|
63
66
|
- mcp__sellable__load_csv_domains
|
|
@@ -101,6 +104,11 @@ are for known-account targeting only, not DNC. Campaign creation already
|
|
|
101
104
|
includes a `DNC Check` column that checks domain and LinkedIn profile before
|
|
102
105
|
message generation.
|
|
103
106
|
|
|
107
|
+
If the user asks to show/check the current DNC list, count, list names, or first
|
|
108
|
+
page before importing, call `list_dnc_entries`. Confirm the active workspace
|
|
109
|
+
name and ID in the response before any write. This is Sellable's workspace DNC
|
|
110
|
+
list used by DNC Check.
|
|
111
|
+
|
|
104
112
|
## Opening Turn Contract
|
|
105
113
|
|
|
106
114
|
On the first visible response after this skill is invoked, do not narrate
|
|
@@ -221,6 +229,14 @@ are likely. Sales Nav is useful for recent LinkedIn activity, role/title
|
|
|
221
229
|
precision, and referral paths, but it does not provide hiring-by-role filters;
|
|
222
230
|
say that distinction plainly in the source-plan gate.
|
|
223
231
|
|
|
232
|
+
When the brief asks for current LinkedIn job-post intent, such as companies
|
|
233
|
+
hiring Power BI developers this month, use Harvest jobs as the account source:
|
|
234
|
+
`search_harvest_jobs -> confirm_harvest_job_companies -> search_prospeo`.
|
|
235
|
+
First write and review the Harvest job artifact. Then confirm selected Harvest
|
|
236
|
+
job IDs into a `domainFilterId`; Prospeo remains the people-search provider.
|
|
237
|
+
Do not paste LinkedIn company URLs as domains. Do not fetch full job details for
|
|
238
|
+
every search row by default; selected batches only.
|
|
239
|
+
|
|
224
240
|
For company lookalikes, best-customer lookalikes, "companies like X",
|
|
225
241
|
lookalike accounts, companies that use AI, companies with API/SSO/Chrome
|
|
226
242
|
extension, news/award/integration/key-customer filters, or account discovery
|