@leadbay/mcp 0.24.2 → 0.27.0
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/CHANGELOG.md +12 -0
- package/README.md +4 -2
- package/dist/bin.js +724 -255
- package/dist/http-server.js +874 -276
- package/dist/installer-electron.js +1 -1
- package/dist/installer-gui.js +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -183,6 +183,34 @@ var init_client = __esm({
|
|
|
183
183
|
defaultLensCachedAt = null;
|
|
184
184
|
mePayload = null;
|
|
185
185
|
mePayloadCachedAt = null;
|
|
186
|
+
// Monotonic sequence bumped whenever the telemetry preference is decided by a
|
|
187
|
+
// fresher signal — an explicit stamp (setCachedTelemetryEnabled) or the START
|
|
188
|
+
// of a telemetry read (resolveMe / fetchTelemetryEnabled). A read snapshots it
|
|
189
|
+
// and only writes telemetryEnabledCache if the sequence is UNCHANGED when it
|
|
190
|
+
// completes, so (a) a stamp landing mid-read wins over the stale read and (b)
|
|
191
|
+
// an older overlapping read that resolves last can't clobber a newer read's
|
|
192
|
+
// value (product#3879, Codex P1).
|
|
193
|
+
telemetryStateSeq = 0;
|
|
194
|
+
// The telemetry preference lives in its OWN field, separate from mePayload,
|
|
195
|
+
// so it survives invalidateMe() (Codex P1). Otherwise a leadbay_set_telemetry
|
|
196
|
+
// disable would be forgotten the moment the very next same-session tool
|
|
197
|
+
// invalidates the /me cache (refine_prompt, my_lenses, set_active_lens, …),
|
|
198
|
+
// dropping cachedTelemetryEnabled() back to undefined and letting the hosted
|
|
199
|
+
// suppression predicate fall through to a stale "enabled". undefined = never
|
|
200
|
+
// observed; the last read/stamp always wins and persists across /me churn.
|
|
201
|
+
telemetryEnabledCache = void 0;
|
|
202
|
+
// True when telemetryEnabledCache came from an EXPLICIT user stamp
|
|
203
|
+
// (leadbay_set_telemetry via setCachedTelemetryEnabled), as opposed to a
|
|
204
|
+
// /users/me read. A stamp is the user's direct choice for THIS request and is
|
|
205
|
+
// the single most authoritative signal — it outranks even a fail-closed
|
|
206
|
+
// verdict from a timed-out/errored read, so a same-request opt-IN takes effect
|
|
207
|
+
// even when a background refresh just failed closed (Codex P2). Reset to false
|
|
208
|
+
// whenever a read writes the cache or the tenant switches.
|
|
209
|
+
telemetryEnabledFromStamp = false;
|
|
210
|
+
// Counts explicit user stamps only. Unlike telemetryStateSeq, read-starts do
|
|
211
|
+
// not move it, so callers can distinguish "a same-message stamp happened" from
|
|
212
|
+
// "a background refresh merely started" when demoting stale opt-in stamps.
|
|
213
|
+
telemetryStampStateSeq = 0;
|
|
186
214
|
tasteProfile = null;
|
|
187
215
|
tasteProfileCachedAt = null;
|
|
188
216
|
// Simple semaphore for concurrency limiting.
|
|
@@ -218,20 +246,28 @@ var init_client = __esm({
|
|
|
218
246
|
get lastMeta() {
|
|
219
247
|
return this._lastMeta;
|
|
220
248
|
}
|
|
221
|
-
|
|
222
|
-
// one the client was constructed with.
|
|
223
|
-
setBaseUrl(baseUrl, region) {
|
|
224
|
-
this._baseUrl = baseUrl.replace(/\/+$/, "");
|
|
225
|
-
this._region = region ?? (baseUrl === REGIONS.us ? "us" : baseUrl === REGIONS.fr ? "fr" : "custom");
|
|
249
|
+
clearTenantScopedCaches() {
|
|
226
250
|
this.defaultLensId = null;
|
|
227
251
|
this.defaultLensCachedAt = null;
|
|
228
252
|
this.mePayload = null;
|
|
229
253
|
this.mePayloadCachedAt = null;
|
|
230
254
|
this.tasteProfile = null;
|
|
231
255
|
this.tasteProfileCachedAt = null;
|
|
256
|
+
this.telemetryEnabledCache = void 0;
|
|
257
|
+
this.telemetryEnabledFromStamp = false;
|
|
258
|
+
this.telemetryStateSeq++;
|
|
259
|
+
this.telemetryStampStateSeq++;
|
|
260
|
+
}
|
|
261
|
+
// Used by login when region auto-detect picks a different backend than the
|
|
262
|
+
// one the client was constructed with.
|
|
263
|
+
setBaseUrl(baseUrl, region) {
|
|
264
|
+
this._baseUrl = baseUrl.replace(/\/+$/, "");
|
|
265
|
+
this._region = region ?? (baseUrl === REGIONS.us ? "us" : baseUrl === REGIONS.fr ? "fr" : "custom");
|
|
266
|
+
this.clearTenantScopedCaches();
|
|
232
267
|
}
|
|
233
268
|
setToken(token) {
|
|
234
269
|
this.token = token;
|
|
270
|
+
this.clearTenantScopedCaches();
|
|
235
271
|
}
|
|
236
272
|
get isAuthenticated() {
|
|
237
273
|
return this.token !== null;
|
|
@@ -512,17 +548,139 @@ var init_client = __esm({
|
|
|
512
548
|
if (!force && this.mePayload !== null && this.mePayloadCachedAt !== null && now - this.mePayloadCachedAt < ME_CACHE_TTL_MS) {
|
|
513
549
|
return this.mePayload;
|
|
514
550
|
}
|
|
551
|
+
const seqAtStart = ++this.telemetryStateSeq;
|
|
515
552
|
const me = await this.request("GET", "/users/me");
|
|
516
553
|
this.mePayload = me;
|
|
517
554
|
this.mePayloadCachedAt = now;
|
|
555
|
+
if (this.telemetryStateSeq === seqAtStart && me.telemetry_enabled !== void 0) {
|
|
556
|
+
this.telemetryEnabledCache = me.telemetry_enabled;
|
|
557
|
+
this.telemetryEnabledFromStamp = false;
|
|
558
|
+
}
|
|
518
559
|
return me;
|
|
519
560
|
}
|
|
561
|
+
// Lightweight cross-session telemetry-preference read for the hosted SSE
|
|
562
|
+
// per-message refresh (product#3879, Codex P2). UNLIKE resolveMe() this does
|
|
563
|
+
// NOT touch mePayload / the general /me cache — so a slow background refresh
|
|
564
|
+
// can never repopulate a stale last_requested_lens over a tool's mutation, and
|
|
565
|
+
// it never serves the 60s /me cache (always a fresh read). It reads the SAME
|
|
566
|
+
// /users/me endpoint (telemetry_enabled lives there) but only reconciles the
|
|
567
|
+
// dedicated telemetry field, under the same sequence guard as resolveMe.
|
|
568
|
+
//
|
|
569
|
+
// It deliberately bypasses request() and therefore never writes _lastMeta
|
|
570
|
+
// (Codex P2): the refresh shares the tool's client, and request() rewrites
|
|
571
|
+
// _lastMeta on every call. Without isolation, a refresh completing between a
|
|
572
|
+
// tool's real backend call and that tool copying client.lastMeta into its
|
|
573
|
+
// result (e.g. pull-leads' _meta.latency_ms) could make the metadata describe
|
|
574
|
+
// GET /users/me instead of the tool call.
|
|
575
|
+
//
|
|
576
|
+
// Returns the observed preference: true/false, or undefined when the backend
|
|
577
|
+
// omitted the field (older backend → caller treats as enabled default).
|
|
578
|
+
async fetchTelemetryEnabled() {
|
|
579
|
+
const seqAtStart = ++this.telemetryStateSeq;
|
|
580
|
+
if (process.env.LEADBAY_MOCK === "1") {
|
|
581
|
+
const metaBefore = this._lastMeta;
|
|
582
|
+
try {
|
|
583
|
+
const me = this.mockRequest("GET", "/users/me");
|
|
584
|
+
const observed = me.telemetry_enabled;
|
|
585
|
+
if (this.telemetryStateSeq === seqAtStart && observed !== void 0) {
|
|
586
|
+
this.telemetryEnabledCache = observed;
|
|
587
|
+
this.telemetryEnabledFromStamp = false;
|
|
588
|
+
}
|
|
589
|
+
return observed;
|
|
590
|
+
} finally {
|
|
591
|
+
this._lastMeta = metaBefore;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
if (!this.token) {
|
|
595
|
+
throw this.makeError("NOT_AUTHENTICATED", "Not logged in to Leadbay", "Set LEADBAY_TOKEN in your MCP client config, or run: npx -y -p @leadbay/mcp@latest installer", "/users/me");
|
|
596
|
+
}
|
|
597
|
+
await this.acquireSemaphore();
|
|
598
|
+
try {
|
|
599
|
+
const res = await this.httpsRequestWithRetry("GET", `${this._baseUrl}${API_PREFIX}/users/me`, { Authorization: `Bearer ${this.token}` }, void 0);
|
|
600
|
+
if (res.status < 200 || res.status >= 300) {
|
|
601
|
+
throw this.mapErrorResponse(res.status, res.body, "/users/me", res.headers);
|
|
602
|
+
}
|
|
603
|
+
const me = JSON.parse(res.body);
|
|
604
|
+
const observed = me.telemetry_enabled;
|
|
605
|
+
if (this.telemetryStateSeq === seqAtStart && observed !== void 0) {
|
|
606
|
+
this.telemetryEnabledCache = observed;
|
|
607
|
+
this.telemetryEnabledFromStamp = false;
|
|
608
|
+
}
|
|
609
|
+
return observed;
|
|
610
|
+
} finally {
|
|
611
|
+
this.releaseSemaphore();
|
|
612
|
+
}
|
|
613
|
+
}
|
|
520
614
|
// Force re-fetch on next resolveMe(). Call from any tool that mutates a
|
|
521
|
-
// /me-cached field (last_requested_lens, billing, etc.).
|
|
615
|
+
// /me-cached field (last_requested_lens, billing, etc.). Deliberately does
|
|
616
|
+
// NOT clear telemetryEnabledCache — the opt-out preference is orthogonal to
|
|
617
|
+
// /me staleness and must survive invalidation (Codex P1).
|
|
522
618
|
invalidateMe() {
|
|
523
619
|
this.mePayload = null;
|
|
524
620
|
this.mePayloadCachedAt = null;
|
|
525
621
|
}
|
|
622
|
+
// Synchronous read of the last-cached telemetry preference, without a fetch.
|
|
623
|
+
// Returns undefined when /users/me hasn't been resolved (or was invalidated).
|
|
624
|
+
// The hosted telemetry suppression predicate reads this AT CAPTURE TIME so a
|
|
625
|
+
// leadbay_set_telemetry disable within the same request suppresses that very
|
|
626
|
+
// request's tracking — the opt-out action isn't itself the last tracked event
|
|
627
|
+
// (product#3879). resolveMe() keeps mePayload populated after a write, so this
|
|
628
|
+
// reflects the post-write state.
|
|
629
|
+
cachedTelemetryEnabled() {
|
|
630
|
+
return this.telemetryEnabledCache;
|
|
631
|
+
}
|
|
632
|
+
// True when the cached preference came from an explicit user stamp (a
|
|
633
|
+
// leadbay_set_telemetry toggle), not a read. The hosted suppression predicate
|
|
634
|
+
// treats a stamp as the single most-authoritative signal — it outranks a
|
|
635
|
+
// fail-closed verdict from a failed background read, so a same-request opt-IN
|
|
636
|
+
// takes effect even when a refresh just timed out (product#3879, Codex P2).
|
|
637
|
+
cachedTelemetryStamped() {
|
|
638
|
+
return this.telemetryEnabledFromStamp && this.telemetryEnabledCache !== void 0;
|
|
639
|
+
}
|
|
640
|
+
// Monotonic sequence exposed so callers can tell whether a telemetry stamp
|
|
641
|
+
// happened AFTER a reference point (e.g. an SSE message start). Bumped by every
|
|
642
|
+
// stamp and every telemetry read-start; see telemetryStateSeq.
|
|
643
|
+
telemetrySeq() {
|
|
644
|
+
return this.telemetryStateSeq;
|
|
645
|
+
}
|
|
646
|
+
// Monotonic sequence moved only by explicit user stamps. Used by the SSE
|
|
647
|
+
// refresh failure path to demote stale opt-in stamps without mistaking a
|
|
648
|
+
// read-start sequence bump for a same-message opt-in.
|
|
649
|
+
telemetryStampSeq() {
|
|
650
|
+
return this.telemetryStampStateSeq;
|
|
651
|
+
}
|
|
652
|
+
// Demote the cached preference from "explicit stamp" to ordinary read-level
|
|
653
|
+
// authority WITHOUT changing its value. A stamp is scoped to the request that
|
|
654
|
+
// made it (Codex P2): once a LATER SSE message's refresh produces a
|
|
655
|
+
// fail-closed verdict (timeout/error), that earlier stamp must no longer
|
|
656
|
+
// outrank it, or a session that once enabled would keep emitting through every
|
|
657
|
+
// subsequent unreadable refresh.
|
|
658
|
+
//
|
|
659
|
+
// `onlyIfStampSeqAtMost` guards against demoting a stamp made by the CURRENT
|
|
660
|
+
// message (Codex P2): pass the STAMP sequence captured at message start; if a
|
|
661
|
+
// stamp has bumped it beyond the snapshot, that stamp is same-message (a fresh
|
|
662
|
+
// opt-in) and must be preserved. Read-starts do not affect this guard.
|
|
663
|
+
clearTelemetryStampOrigin(onlyIfStampSeqAtMost) {
|
|
664
|
+
if (onlyIfStampSeqAtMost !== void 0 && this.telemetryStampStateSeq > onlyIfStampSeqAtMost) {
|
|
665
|
+
return;
|
|
666
|
+
}
|
|
667
|
+
this.telemetryEnabledFromStamp = false;
|
|
668
|
+
}
|
|
669
|
+
// Deterministically stamp the cached telemetry preference to a known value,
|
|
670
|
+
// WITHOUT a fetch. leadbay_set_telemetry calls this right after a successful
|
|
671
|
+
// POST /users/telemetry so the suppression predicate reflects the new state
|
|
672
|
+
// even if the follow-up refresh fails (product#3879) — a disable must never
|
|
673
|
+
// fail open and let the opt-out request emit error telemetry. Creates a
|
|
674
|
+
// minimal cache entry if /users/me was never resolved.
|
|
675
|
+
setCachedTelemetryEnabled(enabled) {
|
|
676
|
+
this.telemetryStateSeq++;
|
|
677
|
+
this.telemetryStampStateSeq++;
|
|
678
|
+
this.telemetryEnabledCache = enabled;
|
|
679
|
+
this.telemetryEnabledFromStamp = true;
|
|
680
|
+
if (this.mePayload) {
|
|
681
|
+
this.mePayload = { ...this.mePayload, telemetry_enabled: enabled };
|
|
682
|
+
}
|
|
683
|
+
}
|
|
526
684
|
async resolveDefaultLens() {
|
|
527
685
|
const now = Date.now();
|
|
528
686
|
if (this.defaultLensId !== null && this.defaultLensCachedAt !== null && now - this.defaultLensCachedAt < LENS_CACHE_TTL_MS) {
|
|
@@ -5476,7 +5634,7 @@ var init_notifications = __esm({
|
|
|
5476
5634
|
});
|
|
5477
5635
|
|
|
5478
5636
|
// ../core/dist/tool-descriptions.generated.js
|
|
5479
|
-
var leadbay_account_history, leadbay_account_status, leadbay_acknowledge_notification, leadbay_add_contact, leadbay_add_leads_to_campaign, leadbay_add_note, leadbay_adjust_audience, leadbay_agent_memory_capture, leadbay_agent_memory_recall, leadbay_agent_memory_review, leadbay_answer_clarification, leadbay_artifact_kit, leadbay_bulk_enrich_status, leadbay_bulk_qualify_leads, leadbay_campaign_call_sheet, leadbay_campaign_progression, leadbay_clear_selection, leadbay_clear_user_prompt, leadbay_create_campaign, leadbay_create_custom_field, leadbay_create_lens, leadbay_create_lens_draft, leadbay_create_topup_link, leadbay_delete_custom_field, leadbay_deselect_leads, leadbay_discover_leads, leadbay_dislike_lead, leadbay_dismiss_clarification, leadbay_enrich_contacts, leadbay_enrich_titles, leadbay_extend_lens, leadbay_followups_map, leadbay_get_clarification, leadbay_get_contacts, leadbay_get_enrichment_job_titles, leadbay_get_epilogue_responses, leadbay_get_lead_activities, leadbay_get_lead_custom_fields, leadbay_get_lead_notes, leadbay_get_lead_profile, leadbay_get_lens_filter, leadbay_get_lens_scoring, leadbay_get_prospecting_actions, leadbay_get_qualification_questions, leadbay_get_quota, leadbay_get_selection_ids, leadbay_get_taste_profile, leadbay_get_user_prompt, leadbay_get_web_fetch, leadbay_import_and_qualify, leadbay_import_leads, leadbay_import_status, leadbay_launch_bulk_enrichment, leadbay_like_lead, leadbay_list_campaigns, leadbay_list_lenses, leadbay_list_locations, leadbay_list_mappable_fields, leadbay_list_sectors, leadbay_login, leadbay_my_lenses, leadbay_new_lens, leadbay_open_billing_portal, leadbay_pick_clarification, leadbay_pin_contact, leadbay_prepare_outreach, leadbay_preview_bulk_enrichment, leadbay_promote_lens, leadbay_pull_followups, leadbay_pull_leads, leadbay_qualify_lead, leadbay_qualify_status, leadbay_recall_ordered_titles, leadbay_refine_prompt, leadbay_remove_contact, leadbay_remove_epilogue, leadbay_remove_leads_from_campaign, leadbay_remove_pushback, leadbay_report_friction, leadbay_report_outreach, leadbay_research_lead_by_id, leadbay_research_lead_by_name_fuzzy, leadbay_resolve_import_rows, leadbay_scan_portfolio_signals, leadbay_seed_candidates, leadbay_select_leads, leadbay_send_feedback, leadbay_set_active_lens, leadbay_set_epilogue_status, leadbay_set_pushback, leadbay_set_qualification_questions, leadbay_set_user_prompt, leadbay_team_activity, leadbay_tour_plan, leadbay_unpin_contact, leadbay_update_contact, leadbay_update_custom_field, leadbay_update_lens, leadbay_update_lens_filter;
|
|
5637
|
+
var leadbay_account_history, leadbay_account_status, leadbay_acknowledge_notification, leadbay_add_contact, leadbay_add_leads_to_campaign, leadbay_add_note, leadbay_adjust_audience, leadbay_agent_memory_capture, leadbay_agent_memory_recall, leadbay_agent_memory_review, leadbay_answer_clarification, leadbay_artifact_kit, leadbay_bulk_enrich_status, leadbay_bulk_qualify_leads, leadbay_campaign_call_sheet, leadbay_campaign_progression, leadbay_clear_selection, leadbay_clear_user_prompt, leadbay_create_campaign, leadbay_create_custom_field, leadbay_create_lens, leadbay_create_lens_draft, leadbay_create_topup_link, leadbay_delete_custom_field, leadbay_deselect_leads, leadbay_discover_leads, leadbay_dislike_lead, leadbay_dismiss_clarification, leadbay_enrich_contacts, leadbay_enrich_titles, leadbay_extend_lens, leadbay_followups_map, leadbay_get_clarification, leadbay_get_contacts, leadbay_get_enrichment_job_titles, leadbay_get_epilogue_responses, leadbay_get_lead_activities, leadbay_get_lead_custom_fields, leadbay_get_lead_notes, leadbay_get_lead_profile, leadbay_get_lens_filter, leadbay_get_lens_scoring, leadbay_get_prospecting_actions, leadbay_get_qualification_questions, leadbay_get_quota, leadbay_get_selection_ids, leadbay_get_taste_profile, leadbay_get_user_prompt, leadbay_get_web_fetch, leadbay_import_and_qualify, leadbay_import_leads, leadbay_import_status, leadbay_launch_bulk_enrichment, leadbay_like_lead, leadbay_list_campaigns, leadbay_list_lenses, leadbay_list_locations, leadbay_list_mappable_fields, leadbay_list_sectors, leadbay_login, leadbay_my_lenses, leadbay_new_lens, leadbay_open_billing_portal, leadbay_pick_clarification, leadbay_pin_contact, leadbay_prepare_outreach, leadbay_preview_bulk_enrichment, leadbay_promote_lens, leadbay_pull_followups, leadbay_pull_leads, leadbay_qualify_lead, leadbay_qualify_status, leadbay_recall_ordered_titles, leadbay_refine_prompt, leadbay_remove_contact, leadbay_remove_epilogue, leadbay_remove_leads_from_campaign, leadbay_remove_pushback, leadbay_report_friction, leadbay_report_outreach, leadbay_research_lead_by_id, leadbay_research_lead_by_name_fuzzy, leadbay_resolve_import_rows, leadbay_scan_portfolio_signals, leadbay_seed_candidates, leadbay_select_leads, leadbay_send_feedback, leadbay_set_active_lens, leadbay_set_epilogue_status, leadbay_set_pushback, leadbay_set_qualification_questions, leadbay_set_telemetry, leadbay_set_user_prompt, leadbay_team_activity, leadbay_tour_plan, leadbay_unpin_contact, leadbay_update_contact, leadbay_update_custom_field, leadbay_update_lens, leadbay_update_lens_filter;
|
|
5480
5638
|
var init_tool_descriptions_generated = __esm({
|
|
5481
5639
|
"../core/dist/tool-descriptions.generated.js"() {
|
|
5482
5640
|
"use strict";
|
|
@@ -7052,6 +7210,8 @@ WHEN NOT TO USE: discovery (use leadbay_pull_leads); single-lead deep dive (use
|
|
|
7052
7210
|
|
|
7053
7211
|
Budgets: \`total_budget_ms\` caps wall-clock; \`per_lead_budget_ms\` caps each lead's poll. For short transport timeouts, pass \`wait_for_completion:false\` and poll \`leadbay_import_status\`. Outputs \`qualified[]\`, \`still_running[]\`, \`not_imported[]\`, \`qualify_id\` (resumable handle). Idempotent within a 5-min window. \`dry_run:'preview'\` returns mapping hints + custom-field candidates without importing.
|
|
7054
7212
|
|
|
7213
|
+
\`not_imported\` rows with \`reason:"uncrawled"\` are **pending a background crawl**, NOT failures: Leadbay just hasn't matched/crawled that domain yet and will add the lead asynchronously (the label doesn't verify the URL resolves \u2014 don't call the site bad, but don't certify it valid either). Surface them as pending; the leads populate in the user's Leadbay account as the crawl completes (no tool here fetches them on demand \u2014 \`leadbay_import_status\` returns status/progress only, and \`leadbay_pull_leads\` reads the active lens's wishlist so an imported lead outside that lens may not appear). To pull those specific companies back through the MCP, re-run the import later. A large \`uncrawled\` share on a fresh list is normal.
|
|
7214
|
+
|
|
7055
7215
|
This tool MUTATES state. The caller (agent or human-in-the-loop) is responsible for confirming intent before invocation; the MCP server does not soft-prompt for confirmation. See \`annotations.destructiveHint\`.
|
|
7056
7216
|
|
|
7057
7217
|
|
|
@@ -7063,18 +7223,42 @@ Requires: LEADBAY_MCP_WRITE=1 (MCP) or exposeWrite=true (OpenClaw); admin role;
|
|
|
7063
7223
|
|
|
7064
7224
|
The response carries either a completed result or an async handle. Render a brief summary; do NOT enumerate every imported lead.
|
|
7065
7225
|
|
|
7226
|
+
**Dry run first:** if the result has \`dry_run:true\` (or ANY \`not_imported\` row has \`reason: "dry_run"\`), this was a VALIDATION pass \u2014 nothing was committed. Render \`"\u{1F50E} Dry run \u2014 V rows validated OK, nothing imported yet. Re-run without dry_run to commit."\` where V = the count of \`dry_run\` rows. If malformed rows are ALSO present (\`reason: "malformed"\`), list those separately as \`"\u26A0 M rows can't be imported as-is: <row \xB7 malformed>"\` so the validation count is never swallowed. Do NOT use the pending-crawl/need-attention bucket header below for a dry run (those buckets are for a real committed import).
|
|
7227
|
+
|
|
7228
|
+
Otherwise, partition \`not_imported\` by \`reason\` into these buckets before you write the header:
|
|
7229
|
+
|
|
7230
|
+
- **Pending crawl** \u2014 \`reason: "uncrawled"\` **AND the row has a \`domain\`**: Leadbay just hasn't crawled that domain yet and will add the lead asynchronously. These are NOT failures. (The label doesn't verify the URL resolves \u2014 don't claim the site is bad, but don't certify it's valid either. See the note below.)
|
|
7231
|
+
- **Need attention** \u2014 everything else that didn't import:
|
|
7232
|
+
- \`reason: "uncrawled"\` but the row has **no \`domain\`** (name/CRM-id-only row): there is nothing for Leadbay to crawl, so it will NOT self-resolve \u2014 count these under need-attention, not pending crawl, and tell the user to supply a company website/identity and re-import.
|
|
7233
|
+
- \`reason\` \u2208 \`malformed\` / \`internal_error\` / \`no_match\` / \`ambiguous\`: genuinely un-actionable or needs a follow-up call.
|
|
7234
|
+
|
|
7066
7235
|
**Header \u2014 single line, choose by status:**
|
|
7067
7236
|
|
|
7068
|
-
- Completed: \`"\u2713 Import complete \u2014 N
|
|
7237
|
+
- Completed: \`"\u2713 Import complete \u2014 N imported \xB7 P pending crawl \xB7 Q need attention"\` (drop any segment whose count is 0)
|
|
7069
7238
|
- Running: \`"\u23F3 Import running \u2014 handle_id <id>; poll leadbay_import_status"\`
|
|
7070
7239
|
- Pending qualification (\`leadbay_import_and_qualify\`): \`"\u2713 Imported N leads \xB7 qualifying M of them \u2014 qualify_id <id>"\`
|
|
7071
7240
|
|
|
7072
|
-
|
|
7241
|
+
Count \`uncrawled\` rows as **pending**, never as failures \u2014 never say "M failed" when the M is mostly/entirely uncrawled rows.
|
|
7242
|
+
|
|
7243
|
+
**When the "need attention" or pending-crawl rows are non-empty**, follow the header with a small bulleted list (\u2264 5 items): \`<row identifier or domain> \xB7 <reason>\`. Label each row by its real reason \u2014 "pending crawl" for \`uncrawled\`, and the specific reason otherwise. Frame pending rows reassuringly (Leadbay is crawling them; the leads it adds will populate in the user's Leadbay account as the crawl completes \u2014 see the semantics note below for where they show up), not as errors. The full \`not_imported\` breakdown is already in THIS response \u2014 list from it directly; then \`"*+N more (see the full not_imported list in the response)*"\`.
|
|
7073
7244
|
|
|
7074
7245
|
**When the user's request implied a downstream use** ("import then prep outreach for them"), emit \`Imported leadIds: <up to 5 ids, then '+N more'>\` \u2014 just the ids. Let the next composite render the leads.
|
|
7075
7246
|
|
|
7076
7247
|
Defer the full list of imported leads to \`leadbay_pull_leads\` or \`leadbay_research_lead_by_id\` in NEXT STEPS.
|
|
7077
7248
|
|
|
7249
|
+
**\`uncrawled\` is NOT a failed import \u2014 it means "pending a crawl".** A row lands \`uncrawled\` when Leadbay hasn't matched or crawled that domain **yet** \u2014 the row simply didn't match an existing lead at import time and isn't a public-mailbox domain. It does NOT mean the import failed, and it is NOT a verdict that the website is broken (the tool doesn't check whether the URL resolves \u2014 so don't claim the site is bad, but don't guarantee it's valid either).
|
|
7250
|
+
|
|
7251
|
+
**One caveat \u2014 \`uncrawled\` only means "pending" when the row actually had a website.** A row imported by name / CRM id / registry number only (no \`LEAD_WEBSITE\` mapped) that finds no existing match ALSO lands \`uncrawled\`, but there's no domain for Leadbay to crawl \u2014 so it will NOT self-resolve via a late crawl. For those name-only rows, don't give the "Leadbay is crawling it" reassurance; tell the user to supply a company website (or another resolvable identity) and re-import. So: \`uncrawled\` + a website \u2192 genuinely pending a background crawl; \`uncrawled\` + no website \u2192 the user needs to add an identity, it won't crawl on its own. The import itself completed successfully; Leadbay then crawls the domain in the background and adds the lead asynchronously (a *late import*), so most of these rows resolve on their own within minutes to hours. Where do those late-added leads show up? **In the user's Leadbay account as the crawl completes.** \`leadbay_import_status\` does NOT return them \u2014 it only refreshes status/progress. There's no bulk "list the leads this import just added" call: \`leadbay_pull_leads\` reads the active lens's wishlist, so an imported lead not admitted to that lens won't appear there. For **one specific company by name**, \`leadbay_research_lead_by_name_fuzzy\` searches across the visible Leadbay corpus (not lens-scoped) and can surface it once crawled \u2014 a reasonable check for a named company. Otherwise tell the user the leads will populate in Leadbay over the next minutes\u2013hours; to pull those specific companies back through the MCP in bulk, **re-run the same import later** (the now-crawled domains match). Do NOT promise \`leadbay_pull_leads\` or \`import_status\` will list the late additions.
|
|
7252
|
+
|
|
7253
|
+
So when reporting an import: count \`uncrawled\` rows as **pending**, never as failures. Do NOT tell the user these rows "failed", were "rejected", had "bad/unreachable websites", or point to a backend problem \u2014 that is wrong and needlessly erodes trust in the whole lead set. A high \`uncrawled\` share on a fresh list is normal and expected, not a red flag.
|
|
7254
|
+
|
|
7255
|
+
How the OTHER reasons map to the "Need attention" bucket (see the render block above) \u2014 none of these should be lumped in with \`uncrawled\`/pending, but each is still surfaced to the user, not suppressed:
|
|
7256
|
+
|
|
7257
|
+
- \`malformed\` (row couldn't be parsed) and \`internal_error\` (a real backend error) are genuine failures \u2014 flag them plainly.
|
|
7258
|
+
- \`no_match\` on a public-mailbox domain (gmail.com, outlook.com, \u2026) means no company domain was resolvable from that row \u2014 surface it so the user can supply a real company domain. Not a crawler failure.
|
|
7259
|
+
- \`ambiguous\` rows matched several candidates \u2014 surface them as needing disambiguation via \`leadbay_resolve_import_rows\`. Not a failure, but the user still needs to act.
|
|
7260
|
+
|
|
7261
|
+
|
|
7078
7262
|
|
|
7079
7263
|
---
|
|
7080
7264
|
|
|
@@ -7102,8 +7286,9 @@ User picks \u2192 call the matching \`Calls\` tool. Constraints: 2\u20134 mutual
|
|
|
7102
7286
|
|------------------------------------------------|---------------------------------------------------------------|--------------------------------------------------------|
|
|
7103
7287
|
| Status: running | "Check progress" | leadbay_import_status(handle_id) |
|
|
7104
7288
|
| Status: complete, imports succeeded | "Run AI qualification on the imported leads" | leadbay_bulk_qualify_leads([leadIds]) \u2014 or use leadbay_import_and_qualify next time |
|
|
7289
|
+
| Pending-crawl (\`uncrawled\`) rows present | "Re-run the import for those domains later, once Leadbay has crawled them" | leadbay_import_leads (re-run with just the uncrawled domains, later \u2014 they re-reconcile once crawled). NOTE: not a live-fetch of the added leads; those populate in the user's Leadbay account as the crawl completes |
|
|
7105
7290
|
| Ambiguous / unresolved rows present | "Resolve the ambiguous rows" | leadbay_resolve_import_rows(records, identity_mappings)|
|
|
7106
|
-
|
|
|
7291
|
+
| \`malformed\` / bad-mapping rows present | "Check the org's mappable fields and remap the bad rows" | leadbay_list_mappable_fields |
|
|
7107
7292
|
| User wants to see the imported leads | "See the imported leads in your view" | leadbay_pull_leads |
|
|
7108
7293
|
| User had follow-up intent for the imports | "Prep outreach for [a specific imported lead]" | leadbay_prepare_outreach(leadId) |
|
|
7109
7294
|
`;
|
|
@@ -7111,6 +7296,8 @@ User picks \u2192 call the matching \`Calls\` tool. Constraints: 2\u20134 mutual
|
|
|
7111
7296
|
|
|
7112
7297
|
TWO MODES: (A) Domain-list shortcut \u2014 pass \`domains: [{domain, name?}]\`. The tool builds a 2-column CSV (LEAD_NAME, LEAD_WEBSITE) and imports with the default mapping. (B) Custom records + mapping \u2014 pass \`records: [{Col1, Col2, ...}]\` plus \`mappings.fields: {Col1: 'LEAD_NAME', ...}\`. \`mappings.fields\` must include LEADBAY_ID, CRM_ID, SIREN, LEAD_NAME, or LEAD_WEBSITE (resolver needs at least one identity key). Pass exactly one of \`domains\` / \`records\`. Reserved column \`MCP_ROW_ID\` cannot appear in records/mappings \u2014 the tool injects it for stable reconciliation.
|
|
7113
7298
|
|
|
7299
|
+
\`not_imported\` rows with \`reason:"uncrawled"\` are **pending a background crawl**, NOT failures: Leadbay just hasn't matched/crawled that domain yet and will add the lead asynchronously (the label doesn't verify the URL resolves \u2014 don't call the site bad, but don't certify it valid either). Surface them as pending; the leads populate in the user's Leadbay account as the crawl completes (no tool here fetches them on demand \u2014 \`leadbay_import_status\` returns status/progress only, and \`leadbay_pull_leads\` reads the active lens's wishlist so an imported lead outside that lens may not appear). To pull those specific companies back through the MCP, re-run the import later. A large \`uncrawled\` share on a fresh list is normal.
|
|
7300
|
+
|
|
7114
7301
|
MUTATES USER STATE: each call creates a row in the user's CRM-imports list (visible in the web UI) and touches onboarding state. Suitable for occasional automation, NOT for high-cadence (>5 calls/day). Imported leads are NOT auto-promoted to the user's Monitor view; lens-scoring threshold decides. For messy files call leadbay_resolve_import_rows first, then pass \`records_for_import\`/\`mappings_for_import\` here. Agents should inspect every column, build a preservation plan, and pass an explicit final mapping. For each meaningful column decide standard field, CONTACT_* field, Leadbay note, custom field, derived helper, or skip with a reason. For contact-only exports, derive a company-domain column from CONTACT_EMAIL only when it's a real business domain. Multiple rows can share the same LEADBAY_ID and import as separate contacts on that lead. Custom fields use \`CUSTOM.<id>\` in \`mappings.fields\` or the \`mappings.custom_fields\` shorthand. For source-system deep links create a custom field via leadbay_create_custom_field first (prefer EXTERNAL_ID + url_template). Preserve meaningful per-lead notes by calling leadbay_add_note after import returns lead IDs.
|
|
7115
7302
|
|
|
7116
7303
|
WHEN TO USE: you have a list of company domains from another system (CRM, analytics, email correspondents) and need stable Leadbay leadIds; or CRM-shaped rows with custom columns and want to drive the wizard with explicit field mappings.
|
|
@@ -7128,18 +7315,42 @@ Requires: LEADBAY_MCP_WRITE=1 (MCP) or exposeWrite=true (OpenClaw); admin role o
|
|
|
7128
7315
|
|
|
7129
7316
|
The response carries either a completed result or an async handle. Render a brief summary; do NOT enumerate every imported lead.
|
|
7130
7317
|
|
|
7318
|
+
**Dry run first:** if the result has \`dry_run:true\` (or ANY \`not_imported\` row has \`reason: "dry_run"\`), this was a VALIDATION pass \u2014 nothing was committed. Render \`"\u{1F50E} Dry run \u2014 V rows validated OK, nothing imported yet. Re-run without dry_run to commit."\` where V = the count of \`dry_run\` rows. If malformed rows are ALSO present (\`reason: "malformed"\`), list those separately as \`"\u26A0 M rows can't be imported as-is: <row \xB7 malformed>"\` so the validation count is never swallowed. Do NOT use the pending-crawl/need-attention bucket header below for a dry run (those buckets are for a real committed import).
|
|
7319
|
+
|
|
7320
|
+
Otherwise, partition \`not_imported\` by \`reason\` into these buckets before you write the header:
|
|
7321
|
+
|
|
7322
|
+
- **Pending crawl** \u2014 \`reason: "uncrawled"\` **AND the row has a \`domain\`**: Leadbay just hasn't crawled that domain yet and will add the lead asynchronously. These are NOT failures. (The label doesn't verify the URL resolves \u2014 don't claim the site is bad, but don't certify it's valid either. See the note below.)
|
|
7323
|
+
- **Need attention** \u2014 everything else that didn't import:
|
|
7324
|
+
- \`reason: "uncrawled"\` but the row has **no \`domain\`** (name/CRM-id-only row): there is nothing for Leadbay to crawl, so it will NOT self-resolve \u2014 count these under need-attention, not pending crawl, and tell the user to supply a company website/identity and re-import.
|
|
7325
|
+
- \`reason\` \u2208 \`malformed\` / \`internal_error\` / \`no_match\` / \`ambiguous\`: genuinely un-actionable or needs a follow-up call.
|
|
7326
|
+
|
|
7131
7327
|
**Header \u2014 single line, choose by status:**
|
|
7132
7328
|
|
|
7133
|
-
- Completed: \`"\u2713 Import complete \u2014 N
|
|
7329
|
+
- Completed: \`"\u2713 Import complete \u2014 N imported \xB7 P pending crawl \xB7 Q need attention"\` (drop any segment whose count is 0)
|
|
7134
7330
|
- Running: \`"\u23F3 Import running \u2014 handle_id <id>; poll leadbay_import_status"\`
|
|
7135
7331
|
- Pending qualification (\`leadbay_import_and_qualify\`): \`"\u2713 Imported N leads \xB7 qualifying M of them \u2014 qualify_id <id>"\`
|
|
7136
7332
|
|
|
7137
|
-
|
|
7333
|
+
Count \`uncrawled\` rows as **pending**, never as failures \u2014 never say "M failed" when the M is mostly/entirely uncrawled rows.
|
|
7334
|
+
|
|
7335
|
+
**When the "need attention" or pending-crawl rows are non-empty**, follow the header with a small bulleted list (\u2264 5 items): \`<row identifier or domain> \xB7 <reason>\`. Label each row by its real reason \u2014 "pending crawl" for \`uncrawled\`, and the specific reason otherwise. Frame pending rows reassuringly (Leadbay is crawling them; the leads it adds will populate in the user's Leadbay account as the crawl completes \u2014 see the semantics note below for where they show up), not as errors. The full \`not_imported\` breakdown is already in THIS response \u2014 list from it directly; then \`"*+N more (see the full not_imported list in the response)*"\`.
|
|
7138
7336
|
|
|
7139
7337
|
**When the user's request implied a downstream use** ("import then prep outreach for them"), emit \`Imported leadIds: <up to 5 ids, then '+N more'>\` \u2014 just the ids. Let the next composite render the leads.
|
|
7140
7338
|
|
|
7141
7339
|
Defer the full list of imported leads to \`leadbay_pull_leads\` or \`leadbay_research_lead_by_id\` in NEXT STEPS.
|
|
7142
7340
|
|
|
7341
|
+
**\`uncrawled\` is NOT a failed import \u2014 it means "pending a crawl".** A row lands \`uncrawled\` when Leadbay hasn't matched or crawled that domain **yet** \u2014 the row simply didn't match an existing lead at import time and isn't a public-mailbox domain. It does NOT mean the import failed, and it is NOT a verdict that the website is broken (the tool doesn't check whether the URL resolves \u2014 so don't claim the site is bad, but don't guarantee it's valid either).
|
|
7342
|
+
|
|
7343
|
+
**One caveat \u2014 \`uncrawled\` only means "pending" when the row actually had a website.** A row imported by name / CRM id / registry number only (no \`LEAD_WEBSITE\` mapped) that finds no existing match ALSO lands \`uncrawled\`, but there's no domain for Leadbay to crawl \u2014 so it will NOT self-resolve via a late crawl. For those name-only rows, don't give the "Leadbay is crawling it" reassurance; tell the user to supply a company website (or another resolvable identity) and re-import. So: \`uncrawled\` + a website \u2192 genuinely pending a background crawl; \`uncrawled\` + no website \u2192 the user needs to add an identity, it won't crawl on its own. The import itself completed successfully; Leadbay then crawls the domain in the background and adds the lead asynchronously (a *late import*), so most of these rows resolve on their own within minutes to hours. Where do those late-added leads show up? **In the user's Leadbay account as the crawl completes.** \`leadbay_import_status\` does NOT return them \u2014 it only refreshes status/progress. There's no bulk "list the leads this import just added" call: \`leadbay_pull_leads\` reads the active lens's wishlist, so an imported lead not admitted to that lens won't appear there. For **one specific company by name**, \`leadbay_research_lead_by_name_fuzzy\` searches across the visible Leadbay corpus (not lens-scoped) and can surface it once crawled \u2014 a reasonable check for a named company. Otherwise tell the user the leads will populate in Leadbay over the next minutes\u2013hours; to pull those specific companies back through the MCP in bulk, **re-run the same import later** (the now-crawled domains match). Do NOT promise \`leadbay_pull_leads\` or \`import_status\` will list the late additions.
|
|
7344
|
+
|
|
7345
|
+
So when reporting an import: count \`uncrawled\` rows as **pending**, never as failures. Do NOT tell the user these rows "failed", were "rejected", had "bad/unreachable websites", or point to a backend problem \u2014 that is wrong and needlessly erodes trust in the whole lead set. A high \`uncrawled\` share on a fresh list is normal and expected, not a red flag.
|
|
7346
|
+
|
|
7347
|
+
How the OTHER reasons map to the "Need attention" bucket (see the render block above) \u2014 none of these should be lumped in with \`uncrawled\`/pending, but each is still surfaced to the user, not suppressed:
|
|
7348
|
+
|
|
7349
|
+
- \`malformed\` (row couldn't be parsed) and \`internal_error\` (a real backend error) are genuine failures \u2014 flag them plainly.
|
|
7350
|
+
- \`no_match\` on a public-mailbox domain (gmail.com, outlook.com, \u2026) means no company domain was resolvable from that row \u2014 surface it so the user can supply a real company domain. Not a crawler failure.
|
|
7351
|
+
- \`ambiguous\` rows matched several candidates \u2014 surface them as needing disambiguation via \`leadbay_resolve_import_rows\`. Not a failure, but the user still needs to act.
|
|
7352
|
+
|
|
7353
|
+
|
|
7143
7354
|
|
|
7144
7355
|
---
|
|
7145
7356
|
|
|
@@ -7167,14 +7378,15 @@ User picks \u2192 call the matching \`Calls\` tool. Constraints: 2\u20134 mutual
|
|
|
7167
7378
|
|------------------------------------------------|---------------------------------------------------------------|--------------------------------------------------------|
|
|
7168
7379
|
| Status: running | "Check progress" | leadbay_import_status(handle_id) |
|
|
7169
7380
|
| Status: complete, imports succeeded | "Run AI qualification on the imported leads" | leadbay_bulk_qualify_leads([leadIds]) \u2014 or use leadbay_import_and_qualify next time |
|
|
7381
|
+
| Pending-crawl (\`uncrawled\`) rows present | "Re-run the import for those domains later, once Leadbay has crawled them" | leadbay_import_leads (re-run with just the uncrawled domains, later \u2014 they re-reconcile once crawled). NOTE: not a live-fetch of the added leads; those populate in the user's Leadbay account as the crawl completes |
|
|
7170
7382
|
| Ambiguous / unresolved rows present | "Resolve the ambiguous rows" | leadbay_resolve_import_rows(records, identity_mappings)|
|
|
7171
|
-
|
|
|
7383
|
+
| \`malformed\` / bad-mapping rows present | "Check the org's mappable fields and remap the bad rows" | leadbay_list_mappable_fields |
|
|
7172
7384
|
| User wants to see the imported leads | "See the imported leads in your view" | leadbay_pull_leads |
|
|
7173
7385
|
| User had follow-up intent for the imports | "Prep outreach for [a specific imported lead]" | leadbay_prepare_outreach(leadId) |
|
|
7174
7386
|
`;
|
|
7175
|
-
leadbay_import_status = `Retrieve the current
|
|
7387
|
+
leadbay_import_status = `Retrieve the current **status/progress** of a lead import. Pass \`handle_id\` \u2014 returned by either \`leadbay_import_leads\` OR \`leadbay_import_and_qualify\` when called with \`wait_for_completion:false\` \u2014 to resolve the stored result (leads + not_imported) once that async run has completed in this MCP instance. **If you were given a \`handle_id\`, poll with it, not with \`importIds[]\`** \u2014 only the \`handle_id\` path returns the stored result/not_imported breakdown. Pass \`importIds[]\` (a completed import returns \`importIds\`; \`leadbay_import_and_qualify\` returns \`import_ids\`) only when you don't have a handle, to refresh the backend wizard rows' phase + record counts. Note: the \`importIds[]\` path returns status/progress only \u2014 it does NOT re-reconcile records or return refreshed leads/not_imported. This status call performs a single refresh pass and never polls in a loop.
|
|
7176
7388
|
|
|
7177
|
-
WHEN TO USE: after leadbay_import_leads
|
|
7389
|
+
WHEN TO USE: after an async import (\`leadbay_import_leads\` OR \`leadbay_import_and_qualify\` with \`wait_for_completion:false\`) returns \`{status:'running', handle_id}\`, poll with that \`handle_id\`; OR to check whether a finished import is still processing. This tool does NOT surface the leads Leadbay adds later for pending-crawl (\`uncrawled\`) rows \u2014 those populate in the user's Leadbay account as the crawl completes; no tool here fetches them on demand (re-run the import to pull them back through the MCP).
|
|
7178
7390
|
|
|
7179
7391
|
WHEN NOT TO USE: for qualification handles returned as \`qualify_id\` \u2014 use leadbay_qualify_status for those; or when you still want the legacy blocking behavior from leadbay_import_leads with \`wait_for_completion=true\`.
|
|
7180
7392
|
|
|
@@ -7196,19 +7408,39 @@ After the status line, propose the obvious refresh / progress-check / recovery a
|
|
|
7196
7408
|
|
|
7197
7409
|
Specifically for import status:
|
|
7198
7410
|
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
|
|
7411
|
+
This tool returns \`status\`, \`importIds\`, and \`progress\` ({phase, records_processed, records_total}). It carries a \`result\` object (with \`leads\` + \`not_imported\`) ONLY when resolving an async \`handle_id\` whose run completed in this MCP instance \u2014 the \`importIds[]\` status-check path does NOT return \`result\`. **Render only from the fields actually present; never invent counts.**
|
|
7412
|
+
|
|
7413
|
+
Caveat on \`progress\`: \`records_processed\` counts only the rows that MATCHED an existing lead (backend \`imported_records\`), not every row that finished processing \u2014 so for a complete import whose rows are mostly/all \`uncrawled\` (pending crawl), \`records_processed\` is legitimately low or 0. Never read a low \`records_processed\` on a \`complete\` import as "stuck" or "failed": once \`status:"complete"\`, processing is done; the pending-crawl rows just matched no existing lead yet.
|
|
7414
|
+
|
|
7415
|
+
- Running \u2192 \`"\u23F3 Import still running \u2014 phase <phase>; check back in ~M minutes."\` (use the phase; don't turn the matched-count into an "X/Y processed" progress bar).
|
|
7416
|
+
- Complete, **no \`result\`** (the usual \`importIds\` status check) \u2192 \`"\u2713 Import complete."\` Do NOT append a \`records_processed/records_total\` fraction (it undercounts pending-crawl rows and looks stuck) and do NOT report pending-crawl / need-attention bucket counts \u2014 the row-level \`not_imported\` breakdown isn't in this response.
|
|
7417
|
+
- Complete, **\`result\` present AND it was a dry run** (\`result.dry_run:true\`, or every \`result.not_imported\` row has \`reason:"dry_run"\`) \u2192 this resolved handle was a VALIDATION pass, nothing committed. Render \`"\u{1F50E} Dry run complete \u2014 V rows validated, nothing imported. Re-run without dry_run to commit."\` \u2014 do NOT render it as a real import completion or use the pending/attention buckets.
|
|
7418
|
+
- Complete, **\`result\` present** (async handle resolved, real import) \u2192 then, and only then, partition \`result.not_imported\` as in the shared import-result render block below \u2014 \`"\u2713 Import complete \u2014 N imported \xB7 P pending crawl \xB7 Q need attention"\` where **pending crawl** is \`uncrawled\` rows that HAVE a \`domain\` (not failures) and no-\`domain\` \`uncrawled\` rows fall under need-attention. Drop any zero segment.
|
|
7419
|
+
- Error / failed \u2192 \`"\u26A0 Import failed: <error>. See leadbay_resolve_import_rows for diagnosis."\` \u2014 reserve this ONLY for a true transport/backend error on the import itself, never for \`uncrawled\` rows.
|
|
7420
|
+
|
|
7421
|
+
**\`uncrawled\` is NOT a failed import \u2014 it means "pending a crawl".** A row lands \`uncrawled\` when Leadbay hasn't matched or crawled that domain **yet** \u2014 the row simply didn't match an existing lead at import time and isn't a public-mailbox domain. It does NOT mean the import failed, and it is NOT a verdict that the website is broken (the tool doesn't check whether the URL resolves \u2014 so don't claim the site is bad, but don't guarantee it's valid either).
|
|
7422
|
+
|
|
7423
|
+
**One caveat \u2014 \`uncrawled\` only means "pending" when the row actually had a website.** A row imported by name / CRM id / registry number only (no \`LEAD_WEBSITE\` mapped) that finds no existing match ALSO lands \`uncrawled\`, but there's no domain for Leadbay to crawl \u2014 so it will NOT self-resolve via a late crawl. For those name-only rows, don't give the "Leadbay is crawling it" reassurance; tell the user to supply a company website (or another resolvable identity) and re-import. So: \`uncrawled\` + a website \u2192 genuinely pending a background crawl; \`uncrawled\` + no website \u2192 the user needs to add an identity, it won't crawl on its own. The import itself completed successfully; Leadbay then crawls the domain in the background and adds the lead asynchronously (a *late import*), so most of these rows resolve on their own within minutes to hours. Where do those late-added leads show up? **In the user's Leadbay account as the crawl completes.** \`leadbay_import_status\` does NOT return them \u2014 it only refreshes status/progress. There's no bulk "list the leads this import just added" call: \`leadbay_pull_leads\` reads the active lens's wishlist, so an imported lead not admitted to that lens won't appear there. For **one specific company by name**, \`leadbay_research_lead_by_name_fuzzy\` searches across the visible Leadbay corpus (not lens-scoped) and can surface it once crawled \u2014 a reasonable check for a named company. Otherwise tell the user the leads will populate in Leadbay over the next minutes\u2013hours; to pull those specific companies back through the MCP in bulk, **re-run the same import later** (the now-crawled domains match). Do NOT promise \`leadbay_pull_leads\` or \`import_status\` will list the late additions.
|
|
7424
|
+
|
|
7425
|
+
So when reporting an import: count \`uncrawled\` rows as **pending**, never as failures. Do NOT tell the user these rows "failed", were "rejected", had "bad/unreachable websites", or point to a backend problem \u2014 that is wrong and needlessly erodes trust in the whole lead set. A high \`uncrawled\` share on a fresh list is normal and expected, not a red flag.
|
|
7426
|
+
|
|
7427
|
+
How the OTHER reasons map to the "Need attention" bucket (see the render block above) \u2014 none of these should be lumped in with \`uncrawled\`/pending, but each is still surfaced to the user, not suppressed:
|
|
7428
|
+
|
|
7429
|
+
- \`malformed\` (row couldn't be parsed) and \`internal_error\` (a real backend error) are genuine failures \u2014 flag them plainly.
|
|
7430
|
+
- \`no_match\` on a public-mailbox domain (gmail.com, outlook.com, \u2026) means no company domain was resolvable from that row \u2014 surface it so the user can supply a real company domain. Not a crawler failure.
|
|
7431
|
+
- \`ambiguous\` rows matched several candidates \u2014 surface them as needing disambiguation via \`leadbay_resolve_import_rows\`. Not a failure, but the user still needs to act.
|
|
7432
|
+
|
|
7202
7433
|
|
|
7203
7434
|
---
|
|
7204
7435
|
|
|
7205
7436
|
## NEXT STEPS
|
|
7206
7437
|
|
|
7207
|
-
| Observation
|
|
7208
|
-
|
|
7209
|
-
| Status: complete
|
|
7210
|
-
|
|
|
7211
|
-
| Status:
|
|
7438
|
+
| Observation | Suggest | Calls |
|
|
7439
|
+
|--------------------------------------|------------------------------------------------------|--------------------------------|
|
|
7440
|
+
| Status: complete | "See the imported (matched) leads" | leadbay_pull_leads |
|
|
7441
|
+
| Pending-crawl (\`uncrawled\`) rows | "Re-run the import for those domains later, once Leadbay has crawled them" | leadbay_import_leads (re-run with just the uncrawled domains, later \u2014 they re-reconcile once crawled). The added leads otherwise populate in the user's Leadbay account as the crawl completes; no live-fetch here |
|
|
7442
|
+
| Status: running | "Check again in N minutes" | leadbay_import_status \u2014 re-call|
|
|
7443
|
+
| Status: error / failed (true error) | "Diagnose the failure" | leadbay_resolve_import_rows |
|
|
7212
7444
|
`;
|
|
7213
7445
|
leadbay_launch_bulk_enrichment = `Launch a bulk-enrichment job against the current selection. The backend requires \`email=true\` OR \`phone=true\` (both can be true). Returns 204 with no body \u2014 there is no bulk_id and no per-job status endpoint. Track results by polling individual leads via leadbay_get_contacts after ~60s; a contact is done for this run only when the REQUESTED channel landed (requested \`email\` and/or \`phone_number\` present), not \`contact.enrichment.done\` alone (that flag is already true for a contact enriched on the other channel earlier). \`dry_run:true\` returns the call shape without contacting the backend.
|
|
7214
7446
|
|
|
@@ -8367,55 +8599,94 @@ This tool MUTATES state. The caller (agent or human-in-the-loop) is responsible
|
|
|
8367
8599
|
`;
|
|
8368
8600
|
leadbay_report_friction = `## WHEN TO USE
|
|
8369
8601
|
|
|
8370
|
-
Trigger phrases: "
|
|
8602
|
+
Trigger phrases: "report this problem", "tell the Leadbay team this didn't work", "this is broken, let them know", "file a report about this", "flag this to Leadbay".
|
|
8371
8603
|
|
|
8372
8604
|
**Memory:** recall + capture via \`leadbay_agent_memory_*\` tools.
|
|
8373
8605
|
|
|
8374
|
-
Do NOT use for: "log outreach" \u2192 \`leadbay_report_outreach\`; "thumbs up / down" \u2192 \`leadbay_like_lead\`; "snooze / pushback" \u2192 \`leadbay_set_pushback\`.
|
|
8606
|
+
Do NOT use for: "user vents about follow-ups but has not asked to report anything \u2014 keep solving the ask they actually made" \u2192 \`leadbay_pull_followups\`; "user vents about a company or result but has not asked to report anything \u2014 answer the underlying question" \u2192 \`leadbay_research_lead_by_name_fuzzy\`; "general feedback, praise, or a feature request the user wants sent" \u2192 \`leadbay_send_feedback\`; "log outreach" \u2192 \`leadbay_report_outreach\`; "thumbs up / down" \u2192 \`leadbay_like_lead\`; "snooze / pushback" \u2192 \`leadbay_set_pushback\`.
|
|
8375
8607
|
|
|
8376
|
-
Prefer when: user
|
|
8608
|
+
Prefer when: the user has asked for a specific Leadbay problem to be reported, or has said yes to your offer to report one. Frustration on its own is NOT a trigger \u2014 offer first, and only call this if they agree.
|
|
8377
8609
|
|
|
8378
8610
|
Examples that SHOULD invoke this tool:
|
|
8379
|
-
- "
|
|
8380
|
-
- "
|
|
8381
|
-
- "
|
|
8611
|
+
- "Report this to the Leadbay team \u2014 searching Wisconsin returns nothing."
|
|
8612
|
+
- "Yes, please let them know the enrichment came back empty."
|
|
8613
|
+
- "Can you flag to Leadbay that the region filter is wrong?"
|
|
8382
8614
|
|
|
8383
8615
|
Examples that should NOT invoke this tool (sound similar, route elsewhere):
|
|
8616
|
+
- "Ugh, this never finds what I'm looking for."
|
|
8384
8617
|
- "I sent the intro email to Acme \u2014 log it."
|
|
8385
8618
|
- "Thumbs down on this lead, wrong industry."
|
|
8386
|
-
- "Snooze this lead for 3 months."
|
|
8387
8619
|
|
|
8388
8620
|
## RENDER (quick)
|
|
8389
8621
|
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8622
|
+
Ask the user before calling \u2014 never fire this on your own. Show the
|
|
8623
|
+
one-line confirmation from the result's \`message\` (e.g. "\u2713 Shared with
|
|
8624
|
+
the Leadbay team"). If \`reported\` is false the report was NOT delivered
|
|
8625
|
+
\u2014 tell the user that plainly, never imply it was sent. If the user
|
|
8626
|
+
declines, don't call the tool at all.
|
|
8394
8627
|
|
|
8395
8628
|
---
|
|
8396
8629
|
|
|
8397
|
-
|
|
8630
|
+
Report a concrete Leadbay problem to the team \u2014 a tool that returned nothing when
|
|
8631
|
+
the user expected hits, a result that answered the wrong question, a capability
|
|
8632
|
+
that doesn't exist yet. The backend only sees explicit errors (4xx, 5xx, business-error
|
|
8633
|
+
envelopes); it never sees "that search came back empty again". This tool closes
|
|
8634
|
+
that gap, **with the user's agreement**.
|
|
8635
|
+
|
|
8636
|
+
## CONSENT \u2014 ask first, always visible
|
|
8637
|
+
|
|
8638
|
+
**Never call this tool unprompted.** One of two things must happen first:
|
|
8398
8639
|
|
|
8399
|
-
|
|
8640
|
+
1. The user asks you to report something ("tell the team", "report this"), or
|
|
8641
|
+
2. You notice a problem worth reporting and **offer once** \u2014 *"Want me to report
|
|
8642
|
+
this to the Leadbay team?"* \u2014 and they say yes.
|
|
8400
8643
|
|
|
8401
|
-
|
|
8644
|
+
The report is the **user's** message, not yours \u2014 never paraphrase their
|
|
8645
|
+
complaint into a report they never saw, and never quote them without agreement.
|
|
8402
8646
|
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8647
|
+
**Don't ask twice.** If the user already stated the problem in the same breath
|
|
8648
|
+
as the request ("Wisconsin returns nothing \u2014 report this"), their words ARE the
|
|
8649
|
+
message: send it, and show them exactly what you sent. Only go back to them when
|
|
8650
|
+
you genuinely lack a message to send \u2014 you'd otherwise have to invent the
|
|
8651
|
+
wording \u2014 or when they asked you to report something you'd have to guess at.
|
|
8652
|
+
Optional fields (\`tool_called\`, \`severity\`) are never worth a round-trip: omit
|
|
8653
|
+
what you don't know. If they decline, or don't answer, don't call the tool.
|
|
8409
8654
|
|
|
8410
|
-
|
|
8655
|
+
After a successful call, show the one-line confirmation. The user should always
|
|
8656
|
+
know a report was sent and what it said. Never send silently.
|
|
8657
|
+
|
|
8658
|
+
## Result
|
|
8411
8659
|
|
|
8412
|
-
|
|
8660
|
+
- \`reported: true\` \u2192 it reached the Leadbay team. Show the confirmation from \`message\`.
|
|
8661
|
+
- \`reported: false\` \u2192 delivery wasn't possible on this client (problem reporting
|
|
8662
|
+
is unavailable \u2014 e.g. the user turned telemetry off). Tell the user it was NOT
|
|
8663
|
+
sent. Do not claim success, and do not retry in a loop.
|
|
8413
8664
|
|
|
8414
|
-
|
|
8665
|
+
## Categories
|
|
8666
|
+
|
|
8667
|
+
Pick the closest fit; \`other\` is fine when nothing matches:
|
|
8668
|
+
|
|
8669
|
+
- \`silent_failure\` \u2014 a tool returned ok but produced no useful output. Empty lead list when the user expected hits. Research returned a stub.
|
|
8670
|
+
- \`repeated_request\` \u2014 the user had to ask for the same thing 2+ times because earlier turns didn't deliver.
|
|
8671
|
+
- \`wrong_result\` \u2014 the tool answered a different question than the user asked. User wanted Wisconsin, got Wyoming.
|
|
8672
|
+
- \`dissatisfaction\` \u2014 the user is unhappy with a result and wants the team to know.
|
|
8673
|
+
- \`missing_capability\` \u2014 the user wants something the MCP cannot do today. "Why can't I export to HubSpot?"
|
|
8674
|
+
- \`other\` \u2014 none of the above.
|
|
8675
|
+
|
|
8676
|
+
## Parameters
|
|
8415
8677
|
|
|
8416
|
-
|
|
8678
|
+
- \`category\` (required) \u2014 one of the buckets above.
|
|
8679
|
+
- \`message\` (required) \u2014 what the user wants to report, in their own words,
|
|
8680
|
+
confirmed with them before calling. Cap 500 chars.
|
|
8681
|
+
- \`tool_called\` (optional) \u2014 the tool that disappointed, e.g. \`leadbay_pull_leads\`.
|
|
8682
|
+
- \`severity\` (optional) \u2014 \`low\` | \`medium\` | \`high\`.
|
|
8417
8683
|
|
|
8418
|
-
|
|
8684
|
+
WHEN TO USE: the user asks you to report a Leadbay problem, or accepts your offer to report one you noticed. The user has seen and approved the message being sent.
|
|
8685
|
+
|
|
8686
|
+
WHEN NOT TO USE: unprompted, and not for normal acknowledgement flows. **Bare frustration with no request to report \u2192 keep solving the ask they actually made. Do NOT reach for a delivery tool at all** \u2014 not this one and not \`leadbay_send_feedback\`, which also sends to the team. Route to whatever their real request was: follow-ups \u2192 \`leadbay_pull_followups\`, a named company \u2192 research, today's batch \u2192 \`leadbay_pull_leads\`. Venting is not consent; you may offer to report, but send nothing unless they say yes. General feedback, praise, or feature requests the user wants delivered \u2192 \`leadbay_send_feedback\`. Thumbs-up/down on a lead \u2192 \`leadbay_like_lead\` / \`leadbay_dislike_lead\`. Logged outreach \u2192 \`leadbay_report_outreach\`. Snooze a lead \u2192 \`leadbay_set_pushback\`.
|
|
8687
|
+
|
|
8688
|
+
After reporting, continue the user's original task \u2014 a report is a step on the way
|
|
8689
|
+
to actually trying again or pivoting, not the end of the conversation.
|
|
8419
8690
|
`;
|
|
8420
8691
|
leadbay_report_outreach = `Log an outreach action (email, call, message, meeting) on a lead so the human team using Leadbay sees the progress in their UI. Writes a NOTE on the lead and (optionally) sets an EPILOGUE status (still chasing, meeting booked, etc.). Bulk variant: pass \`lead_ids=[uuid,...]\` instead of \`lead_id\` (epilogue is bulk-native; notes fan out per-lead).
|
|
8421
8692
|
|
|
@@ -8809,7 +9080,7 @@ When \`_meta.match_candidates\` is non-empty, prepend one extra NEXT STEPS row:
|
|
|
8809
9080
|
`;
|
|
8810
9081
|
leadbay_resolve_import_rows = `Resolve messy CSV-shaped lead rows against Leadbay before file import. The tool sends each row's available identity signals to \`POST /leads/resolve\`, returns matched lead IDs or ambiguous candidate IDs, and produces \`records_for_import\` plus a SAFE identity-only \`mappings_for_import\` starting point for leadbay_import_leads / leadbay_import_and_qualify. This tool deliberately does not try to understand every CSV dialect; the agent should inspect the file, derive clean helper columns when useful, pass explicit \`identity_mappings\`, and build the final CRM mapping from \`mapping_guidance\`.
|
|
8811
9082
|
|
|
8812
|
-
WHEN TO USE: before importing user-supplied files when domains, names, CRM IDs, registry numbers, or Leadbay IDs may be inconsistently formatted; when the agent needs to pre-resolve messy rows, inspect ambiguous candidates, or prepare LEADBAY_ID values for the import composites. For contact-only files, first derive company website/domain from business contact emails where possible, while ignoring consumer mailbox domains. Deterministic matches get a LEADBAY_ID column inserted so the standard import commits immediately. Ambiguous rows are deliberately left without LEADBAY_ID; inspect candidates and choose one only when the evidence is good. Rows with websites but no match can still be imported; Leadbay may crawl and match them later, and
|
|
9083
|
+
WHEN TO USE: before importing user-supplied files when domains, names, CRM IDs, registry numbers, or Leadbay IDs may be inconsistently formatted; when the agent needs to pre-resolve messy rows, inspect ambiguous candidates, or prepare LEADBAY_ID values for the import composites. For contact-only files, first derive company website/domain from business contact emails where possible, while ignoring consumer mailbox domains. Deterministic matches get a LEADBAY_ID column inserted so the standard import commits immediately. Ambiguous rows are deliberately left without LEADBAY_ID; inspect candidates and choose one only when the evidence is good. Rows with websites but no match can still be imported; Leadbay may crawl and match them later (a late import), and those leads then populate in the user's Leadbay account as the crawl completes (no tool here fetches them on demand \u2014 re-run the import later to pull them back through the MCP).
|
|
8813
9084
|
|
|
8814
9085
|
WHEN NOT TO USE: for prospect discovery from scratch (use leadbay_pull_leads); for one known company profile (use leadbay_research_lead_by_name_fuzzy / leadbay_research_lead_by_id); or when the file already has clean, final LEADBAY_ID/CRM_ID/SIREN mappings and no row-level identity disambiguation is needed.
|
|
8815
9086
|
|
|
@@ -8842,7 +9113,7 @@ Below the table, a one-liner: \`"Ready: K rows \xB7 Ambiguous: A rows \xB7 Unmat
|
|
|
8842
9113
|
|----------------------------------------|-------------------------------------------------------------|--------------------------------------------------------|
|
|
8843
9114
|
| All rows resolved cleanly | "Import these rows now" | leadbay_import_leads(records_for_import, mappings_for_import) |
|
|
8844
9115
|
| Ambiguous rows present | "Inspect candidates for each ambiguous row" | (re-call with include_candidate_profiles=true) |
|
|
8845
|
-
| Unmatched rows but websites present | "Import anyway \u2014 Leadbay
|
|
9116
|
+
| Unmatched rows but websites present | "Import anyway \u2014 Leadbay crawls & adds them to your account later" | leadbay_import_leads (the late-added leads populate in Leadbay; re-run the import to pull them back through the MCP) |
|
|
8846
9117
|
| User wants to skip rows they can't ID | "Drop unmatched rows and import the rest" | leadbay_import_leads (with filtered records) |
|
|
8847
9118
|
`;
|
|
8848
9119
|
leadbay_scan_portfolio_signals = `## WHEN TO USE
|
|
@@ -9081,19 +9352,19 @@ Trigger phrases: "send feedback", "I want to report a bug", "tell the Leadbay te
|
|
|
9081
9352
|
|
|
9082
9353
|
**Memory:** recall + capture via \`leadbay_agent_memory_*\` tools.
|
|
9083
9354
|
|
|
9084
|
-
Do NOT use for: "
|
|
9355
|
+
Do NOT use for: "report this specific empty/wrong result to the team" \u2192 \`leadbay_report_friction\`; "log the email I sent" \u2192 \`leadbay_report_outreach\`.
|
|
9085
9356
|
|
|
9086
|
-
Prefer when: the user explicitly wants the Leadbay TEAM to receive a message they authored \u2014 or accepts your offer to report an error.
|
|
9357
|
+
Prefer when: the user explicitly wants the Leadbay TEAM to receive a message they authored \u2014 or accepts your offer to report an error. When the report is about one specific tool result that disappointed them, use leadbay_report_friction instead.
|
|
9087
9358
|
|
|
9088
9359
|
Examples that SHOULD invoke this tool:
|
|
9089
9360
|
- "Send feedback to the team: the lead scores feel off this week."
|
|
9090
|
-
- "Can you
|
|
9361
|
+
- "Can you tell Leadbay the onboarding was confusing?"
|
|
9091
9362
|
- "Tell Leadbay I'd love a way to schedule my morning check-in."
|
|
9092
9363
|
|
|
9093
9364
|
Examples that should NOT invoke this tool (sound similar, route elsewhere):
|
|
9094
|
-
- "
|
|
9365
|
+
- "Pulling leads in Lyon returns nothing \u2014 report that."
|
|
9366
|
+
- "Ugh, this never finds what I'm looking for. Show me today's leads."
|
|
9095
9367
|
- "I emailed Acme \u2014 log that outreach."
|
|
9096
|
-
- "Thumbs down on this lead."
|
|
9097
9368
|
|
|
9098
9369
|
## RENDER (quick)
|
|
9099
9370
|
|
|
@@ -9108,6 +9379,10 @@ Deliver a user-authored message to the Leadbay team's feedback inbox \u2014 the
|
|
|
9108
9379
|
destination as the web app's feedback form. **You do not write the feedback;
|
|
9109
9380
|
the user does.** Capture their words, confirm the phrasing, then send.
|
|
9110
9381
|
|
|
9382
|
+
**Venting is not consent.** If the user is simply frustrated and has not asked
|
|
9383
|
+
for anything to be sent, do NOT call this tool \u2014 keep solving their actual
|
|
9384
|
+
request. You may offer once; send only if they say yes.
|
|
9385
|
+
|
|
9111
9386
|
## Parameters
|
|
9112
9387
|
- \`message\` (required) \u2014 the user's feedback, in their own words. Confirm it
|
|
9113
9388
|
with the user before sending. Cap 4000 chars.
|
|
@@ -9127,9 +9402,9 @@ you may OFFER: *"Want me to send feedback about this to the Leadbay team?"*
|
|
|
9127
9402
|
- \`sent: false\` \u2192 delivery wasn't possible (feedback not available on this
|
|
9128
9403
|
client). Tell the user it was NOT sent. Do not claim success.
|
|
9129
9404
|
|
|
9130
|
-
This is the
|
|
9131
|
-
Leadbay data.
|
|
9132
|
-
\`leadbay_report_friction\` instead.
|
|
9405
|
+
This is the general "talk to the Leadbay team" tool. It does not mutate any
|
|
9406
|
+
Leadbay data. To report one specific tool result that disappointed the user \u2014
|
|
9407
|
+
with their agreement \u2014 use \`leadbay_report_friction\` instead.
|
|
9133
9408
|
|
|
9134
9409
|
## NEXT STEPS \u2014 after sending feedback
|
|
9135
9410
|
|
|
@@ -9206,6 +9481,67 @@ WHEN NOT TO USE: to READ the questions (use leadbay_get_qualification_questions)
|
|
|
9206
9481
|
### RENDERING
|
|
9207
9482
|
|
|
9208
9483
|
After a change, confirm in one line \u2014 e.g. **"Added 1 question \u2014 you now score leads against 4 questions."** or **"Removed 'the flooring question' \u2014 3 questions remain."** Then list the resulting questions as a numbered list. When the result is a non-changing preview (a removal awaiting confirmation), surface the \`hint\` (what would be removed) and ask the user to confirm \u2014 do NOT auto-confirm.
|
|
9484
|
+
`;
|
|
9485
|
+
leadbay_set_telemetry = `## WHEN TO USE
|
|
9486
|
+
|
|
9487
|
+
Trigger phrases: "disable telemetry", "turn off telemetry", "opt out of analytics", "stop sending usage data", "enable telemetry", "turn analytics back on", "is telemetry on", "is my usage being tracked", "what's my telemetry setting".
|
|
9488
|
+
|
|
9489
|
+
**Memory:** recall + capture via \`leadbay_agent_memory_*\` tools.
|
|
9490
|
+
|
|
9491
|
+
Prefer when: user wants to change or read the telemetry/analytics on-off preference for their account
|
|
9492
|
+
|
|
9493
|
+
Examples that SHOULD invoke this tool:
|
|
9494
|
+
- "Turn off telemetry, I don't want my usage tracked."
|
|
9495
|
+
- "Re-enable analytics for my account."
|
|
9496
|
+
- "Is telemetry currently on for me?"
|
|
9497
|
+
|
|
9498
|
+
Examples that should NOT invoke this tool (sound similar, route elsewhere):
|
|
9499
|
+
- "I want to report a bug in the pull-leads tool."
|
|
9500
|
+
- "Send feedback to the Leadbay team."
|
|
9501
|
+
- "Why isn't my event showing up in PostHog?"
|
|
9502
|
+
|
|
9503
|
+
## RENDER (quick)
|
|
9504
|
+
|
|
9505
|
+
One short confirmation line reflecting the result: state whether telemetry is
|
|
9506
|
+
now ON or OFF (or, for \`status\`, what it currently is) and \u2014 from \`hint\` \u2014
|
|
9507
|
+
the one-line way to flip it. No table; a single sentence is enough.
|
|
9508
|
+
|
|
9509
|
+
---
|
|
9510
|
+
|
|
9511
|
+
Enable, disable, or check **product-usage telemetry** for the current user.
|
|
9512
|
+
|
|
9513
|
+
Telemetry (PostHog analytics \u2014 which tools fire, durations, error rates) is
|
|
9514
|
+
**ON by default** (opt-out model). It does not capture tool argument bodies,
|
|
9515
|
+
response bodies, or lead PII. This is a granular endpoint tool, so
|
|
9516
|
+
\`_triggered_by\` is optional like other granular tools; when it is present on an
|
|
9517
|
+
opt-out attempt, the MCP server suppresses/sanitizes the privacy-control
|
|
9518
|
+
telemetry paths so the opt-out prompt is not recorded. This tool is the
|
|
9519
|
+
in-product control so a user can change or check the setting without editing
|
|
9520
|
+
config. The preference is stored on the user's Leadbay
|
|
9521
|
+
account. The **hosted/web connector** reads it per-request and stops sending a
|
|
9522
|
+
disabled user's events. A **local (self-hosted / stdio) install** decides
|
|
9523
|
+
telemetry at process start from the \`LEADBAY_TELEMETRY_ENABLED\` env var and does
|
|
9524
|
+
NOT consult this account flag \u2014 so a local user who wants to opt out should also
|
|
9525
|
+
set \`LEADBAY_TELEMETRY_ENABLED=false\`. Do NOT tell a local user that disabling
|
|
9526
|
+
here alone stops their events.
|
|
9527
|
+
|
|
9528
|
+
Parameter:
|
|
9529
|
+
|
|
9530
|
+
- **\`action\`** \u2014 \`"enable"\` | \`"disable"\` | \`"status"\`. Defaults to \`"status"\`
|
|
9531
|
+
(a bare call safely reports the setting without changing it).
|
|
9532
|
+
|
|
9533
|
+
Returns:
|
|
9534
|
+
|
|
9535
|
+
- **\`telemetry_enabled\`** \u2014 the setting AFTER this call.
|
|
9536
|
+
- **\`changed\`** \u2014 whether this call actually flipped it (\`false\` for \`status\`
|
|
9537
|
+
and for a no-op set, e.g. disabling when already off).
|
|
9538
|
+
- **\`action\`**, **\`region\`**, and a one-line **\`hint\`** describing how to flip it.
|
|
9539
|
+
|
|
9540
|
+
Setting the preference takes effect going forward on the **hosted connector**,
|
|
9541
|
+
which reads the flag per-request and stops emitting analytics for an opted-out
|
|
9542
|
+
user. On a local install the account flag is not consulted (see above).
|
|
9543
|
+
\`enable\`/\`disable\` are idempotent \u2014 setting the value it already has is a no-op
|
|
9544
|
+
that reports \`changed: false\`.
|
|
9209
9545
|
`;
|
|
9210
9546
|
leadbay_set_user_prompt = `Set the org's intelligence-refinement prompt \u2014 free-text instruction that steers Leadbay's lead recommendations beyond firmographics. Admin-only. Setting this clears any pending clarification and triggers a full intelligence regeneration (web search + high-reasoning). \`dry_run:true\` returns the call shape without contacting the backend.
|
|
9211
9547
|
|
|
@@ -14175,6 +14511,98 @@ var init_dislike_lead = __esm({
|
|
|
14175
14511
|
}
|
|
14176
14512
|
});
|
|
14177
14513
|
|
|
14514
|
+
// ../core/dist/tools/set-telemetry.js
|
|
14515
|
+
function isEnabled(telemetry_enabled) {
|
|
14516
|
+
return telemetry_enabled !== false;
|
|
14517
|
+
}
|
|
14518
|
+
var LOCAL_OFF_CAVEAT, LOCAL_ON_CAVEAT, VALID_ACTIONS, setTelemetry;
|
|
14519
|
+
var init_set_telemetry = __esm({
|
|
14520
|
+
"../core/dist/tools/set-telemetry.js"() {
|
|
14521
|
+
"use strict";
|
|
14522
|
+
init_tool_descriptions_generated();
|
|
14523
|
+
LOCAL_OFF_CAVEAT = " On a local (self-hosted / stdio) install, also set LEADBAY_TELEMETRY_ENABLED=false to stop events there \u2014 the account flag alone does not.";
|
|
14524
|
+
LOCAL_ON_CAVEAT = " This is your account setting; a local (self-hosted / stdio) install follows LEADBAY_TELEMETRY_ENABLED at startup instead, so it may not be sending events regardless.";
|
|
14525
|
+
VALID_ACTIONS = ["enable", "disable", "status"];
|
|
14526
|
+
setTelemetry = {
|
|
14527
|
+
name: "leadbay_set_telemetry",
|
|
14528
|
+
annotations: {
|
|
14529
|
+
title: "Enable, disable, or check product-usage telemetry",
|
|
14530
|
+
readOnlyHint: false,
|
|
14531
|
+
destructiveHint: false,
|
|
14532
|
+
idempotentHint: true,
|
|
14533
|
+
openWorldHint: true
|
|
14534
|
+
},
|
|
14535
|
+
description: leadbay_set_telemetry,
|
|
14536
|
+
optional: true,
|
|
14537
|
+
write: true,
|
|
14538
|
+
inputSchema: {
|
|
14539
|
+
type: "object",
|
|
14540
|
+
properties: {
|
|
14541
|
+
action: {
|
|
14542
|
+
type: "string",
|
|
14543
|
+
enum: ["enable", "disable", "status"],
|
|
14544
|
+
description: "enable / disable flip telemetry for the user; status just reports the current setting. Defaults to status."
|
|
14545
|
+
}
|
|
14546
|
+
},
|
|
14547
|
+
additionalProperties: false
|
|
14548
|
+
},
|
|
14549
|
+
// No outputSchema: the result is a small self-describing object (telemetry_enabled,
|
|
14550
|
+
// changed, action, region, hint — all documented in the description). Declaring
|
|
14551
|
+
// an outputSchema would opt this tool into the structuredContent conformance
|
|
14552
|
+
// suite for no benefit here.
|
|
14553
|
+
execute: async (client, params) => {
|
|
14554
|
+
const action = params.action ?? "status";
|
|
14555
|
+
if (!VALID_ACTIONS.includes(action)) {
|
|
14556
|
+
return {
|
|
14557
|
+
error: true,
|
|
14558
|
+
code: "BAD_ACTION",
|
|
14559
|
+
message: `Unknown action "${action}".`,
|
|
14560
|
+
hint: `Use one of: ${VALID_ACTIONS.join(", ")}. Defaults to "status".`
|
|
14561
|
+
};
|
|
14562
|
+
}
|
|
14563
|
+
const meBefore = await client.resolveMe(true);
|
|
14564
|
+
const currentlyEnabled = isEnabled(meBefore.telemetry_enabled);
|
|
14565
|
+
if (action === "status") {
|
|
14566
|
+
return {
|
|
14567
|
+
telemetry_enabled: currentlyEnabled,
|
|
14568
|
+
changed: false,
|
|
14569
|
+
action,
|
|
14570
|
+
region: client.region,
|
|
14571
|
+
hint: currentlyEnabled ? "Telemetry is ON for your account. Call with action:'disable' to opt out." + LOCAL_ON_CAVEAT : "Telemetry is OFF for your account. Call with action:'enable' to opt back in." + LOCAL_OFF_CAVEAT
|
|
14572
|
+
};
|
|
14573
|
+
}
|
|
14574
|
+
const target = action === "enable";
|
|
14575
|
+
if (target === currentlyEnabled) {
|
|
14576
|
+
if (target) {
|
|
14577
|
+
client.setCachedTelemetryEnabled(true);
|
|
14578
|
+
}
|
|
14579
|
+
return {
|
|
14580
|
+
telemetry_enabled: currentlyEnabled,
|
|
14581
|
+
changed: false,
|
|
14582
|
+
action,
|
|
14583
|
+
region: client.region,
|
|
14584
|
+
hint: target ? "Telemetry was already ON for your account; nothing to change. Call leadbay_set_telemetry with action:'disable' to opt out." + LOCAL_ON_CAVEAT : "Telemetry was already OFF for your account; nothing to change. Call leadbay_set_telemetry with action:'enable' to opt back in." + LOCAL_OFF_CAVEAT
|
|
14585
|
+
};
|
|
14586
|
+
}
|
|
14587
|
+
await client.requestVoid("POST", "/users/telemetry", {
|
|
14588
|
+
telemetry_enabled: target
|
|
14589
|
+
});
|
|
14590
|
+
client.setCachedTelemetryEnabled(target);
|
|
14591
|
+
return {
|
|
14592
|
+
telemetry_enabled: target,
|
|
14593
|
+
changed: true,
|
|
14594
|
+
action,
|
|
14595
|
+
region: client.region,
|
|
14596
|
+
// Honest about WHERE the account flag is enforced: the hosted connector
|
|
14597
|
+
// reads it per-request; a local/stdio install needs the env var (see
|
|
14598
|
+
// LOCAL_OFF_CAVEAT). Never imply the account flag alone stops local events.
|
|
14599
|
+
hint: target ? "Telemetry is now ON for your account \u2014 thanks for helping improve Leadbay." + LOCAL_ON_CAVEAT : "Telemetry is now OFF for your account \u2014 the hosted Leadbay connector stops sending your product-usage events." + LOCAL_OFF_CAVEAT
|
|
14600
|
+
};
|
|
14601
|
+
}
|
|
14602
|
+
};
|
|
14603
|
+
}
|
|
14604
|
+
});
|
|
14605
|
+
|
|
14178
14606
|
// ../core/dist/tools/add-contact.js
|
|
14179
14607
|
var addContact;
|
|
14180
14608
|
var init_add_contact = __esm({
|
|
@@ -22803,11 +23231,12 @@ var init_report_outreach = __esm({
|
|
|
22803
23231
|
});
|
|
22804
23232
|
|
|
22805
23233
|
// ../core/dist/composite/report-friction.js
|
|
22806
|
-
var VALID_CATEGORIES, VALID_SEVERITIES,
|
|
23234
|
+
var VALID_CATEGORIES, VALID_SEVERITIES, KNOWN_TOOL_NAMES, MESSAGE_MAX, reportFriction;
|
|
22807
23235
|
var init_report_friction = __esm({
|
|
22808
23236
|
"../core/dist/composite/report-friction.js"() {
|
|
22809
23237
|
"use strict";
|
|
22810
23238
|
init_tool_descriptions_generated();
|
|
23239
|
+
init_composite_file_names();
|
|
22811
23240
|
VALID_CATEGORIES = /* @__PURE__ */ new Set([
|
|
22812
23241
|
"silent_failure",
|
|
22813
23242
|
"repeated_request",
|
|
@@ -22817,12 +23246,12 @@ var init_report_friction = __esm({
|
|
|
22817
23246
|
"other"
|
|
22818
23247
|
]);
|
|
22819
23248
|
VALID_SEVERITIES = /* @__PURE__ */ new Set(["low", "medium", "high"]);
|
|
22820
|
-
|
|
22821
|
-
|
|
23249
|
+
KNOWN_TOOL_NAMES = COMPOSITE_FILE_TOOL_NAMES;
|
|
23250
|
+
MESSAGE_MAX = 500;
|
|
22822
23251
|
reportFriction = {
|
|
22823
23252
|
name: "leadbay_report_friction",
|
|
22824
23253
|
annotations: {
|
|
22825
|
-
title: "Report
|
|
23254
|
+
title: "Report a problem to the Leadbay team",
|
|
22826
23255
|
readOnlyHint: false,
|
|
22827
23256
|
destructiveHint: false,
|
|
22828
23257
|
idempotentHint: false,
|
|
@@ -22832,8 +23261,8 @@ var init_report_friction = __esm({
|
|
|
22832
23261
|
optional: true,
|
|
22833
23262
|
// Not write:true — friction reporting does NOT mutate Leadbay state and
|
|
22834
23263
|
// must remain callable even when LEADBAY_MCP_WRITE=0. Registered in
|
|
22835
|
-
// compositeReadTools (always-on) so a read-only deployment can
|
|
22836
|
-
//
|
|
23264
|
+
// compositeReadTools (always-on) so a user on a read-only deployment can
|
|
23265
|
+
// still ask for a problem to be reported.
|
|
22837
23266
|
write: false,
|
|
22838
23267
|
inputSchema: {
|
|
22839
23268
|
type: "object",
|
|
@@ -22848,32 +23277,29 @@ var init_report_friction = __esm({
|
|
|
22848
23277
|
"missing_capability",
|
|
22849
23278
|
"other"
|
|
22850
23279
|
],
|
|
22851
|
-
description: "Bucket: silent_failure (tool returned ok but produced no useful output \u2014 empty list, wrong region, etc.), repeated_request (user
|
|
23280
|
+
description: "Bucket: silent_failure (tool returned ok but produced no useful output \u2014 empty list, wrong region, etc.), repeated_request (user had to ask for the same thing 2+ times because earlier turns didn't deliver), wrong_result (tool returned data but it answered a different question than the user asked), dissatisfaction (user is unhappy with a result and wants the team to know), missing_capability (user wants something the MCP can't do \u2014 'why can't I\u2026', 'I wish you could\u2026'), other."
|
|
22852
23281
|
},
|
|
22853
|
-
|
|
23282
|
+
message: {
|
|
22854
23283
|
type: "string",
|
|
22855
|
-
description: "
|
|
23284
|
+
description: "What the user wants to report, in their own words (cap 500 chars). Required. If the user already stated the problem when asking you to report it, those words ARE the message \u2014 send them in the same turn; do NOT ask them to re-confirm wording they just gave you. Only go back to them when you would otherwise have to invent the wording. Never call this tool unprompted."
|
|
22856
23285
|
},
|
|
22857
23286
|
tool_called: {
|
|
22858
23287
|
type: "string",
|
|
22859
|
-
|
|
23288
|
+
pattern: "^leadbay_[a-z0-9_]{1,60}$",
|
|
23289
|
+
description: "Optional: the bare name of the registered Leadbay tool that disappointed, e.g. 'leadbay_pull_leads'. This is NOT a free-text field \u2014 any value that is not an actual registered tool name is dropped, so never encode context, detail, or user data here. Put context in the user-approved `message` instead."
|
|
22860
23290
|
},
|
|
22861
23291
|
severity: {
|
|
22862
23292
|
type: "string",
|
|
22863
23293
|
enum: ["low", "medium", "high"],
|
|
22864
23294
|
description: "Optional: low (minor papercut, user moved on), medium (user noticeably frustrated or had to repeat), high (user gave up / explicitly said this is broken)."
|
|
22865
|
-
},
|
|
22866
|
-
details: {
|
|
22867
|
-
type: "string",
|
|
22868
|
-
description: "Optional: 1-3 sentences with extra context \u2014 what the user asked, what happened, what they expected. Cap 2000 chars."
|
|
22869
23295
|
}
|
|
22870
23296
|
},
|
|
22871
|
-
required: ["category", "
|
|
23297
|
+
required: ["category", "message"],
|
|
22872
23298
|
additionalProperties: false
|
|
22873
23299
|
},
|
|
22874
23300
|
outputSchema: {
|
|
22875
23301
|
type: "object",
|
|
22876
|
-
description: "Confirmation the
|
|
23302
|
+
description: "Confirmation the report was sent. `reported: true` + a user-facing `message` the agent should show back to the user. The `_friction` block carries the analytics payload \u2014 the MCP server detects it and emits a `mcp friction reported` PostHog event containing only the fields the user approved.",
|
|
22877
23303
|
properties: {
|
|
22878
23304
|
reported: { type: "boolean" },
|
|
22879
23305
|
message: { type: "string" },
|
|
@@ -22881,10 +23307,9 @@ var init_report_friction = __esm({
|
|
|
22881
23307
|
type: "object",
|
|
22882
23308
|
properties: {
|
|
22883
23309
|
category: { type: "string" },
|
|
22884
|
-
|
|
23310
|
+
message: { type: "string" },
|
|
22885
23311
|
tool_called: { type: "string" },
|
|
22886
|
-
severity: { type: "string" }
|
|
22887
|
-
details: { type: "string" }
|
|
23312
|
+
severity: { type: "string" }
|
|
22888
23313
|
}
|
|
22889
23314
|
},
|
|
22890
23315
|
_meta: {
|
|
@@ -22893,7 +23318,7 @@ var init_report_friction = __esm({
|
|
|
22893
23318
|
}
|
|
22894
23319
|
}
|
|
22895
23320
|
},
|
|
22896
|
-
execute: async (client, params,
|
|
23321
|
+
execute: async (client, params, ctx) => {
|
|
22897
23322
|
if (!params.category || !VALID_CATEGORIES.has(params.category)) {
|
|
22898
23323
|
return {
|
|
22899
23324
|
error: true,
|
|
@@ -22902,12 +23327,12 @@ var init_report_friction = __esm({
|
|
|
22902
23327
|
hint: "Set `category` to one of: silent_failure (tool returned ok but produced no useful output), repeated_request (user asked 2+ times), wrong_result (tool answered a different question), dissatisfaction (user expressed unhappiness), missing_capability (MCP can't do it), other."
|
|
22903
23328
|
};
|
|
22904
23329
|
}
|
|
22905
|
-
if (typeof params.
|
|
23330
|
+
if (typeof params.message !== "string" || params.message.trim().length === 0) {
|
|
22906
23331
|
return {
|
|
22907
23332
|
error: true,
|
|
22908
23333
|
code: "BAD_INPUT",
|
|
22909
|
-
message: "
|
|
22910
|
-
hint: "
|
|
23334
|
+
message: "message is required \u2014 pass what the user wants to report, in their own words.",
|
|
23335
|
+
hint: "Ask the user what they want reported and confirm the wording, then pass it as `message`. Do not call this tool unprompted."
|
|
22911
23336
|
};
|
|
22912
23337
|
}
|
|
22913
23338
|
if (params.severity && !VALID_SEVERITIES.has(params.severity)) {
|
|
@@ -22918,22 +23343,30 @@ var init_report_friction = __esm({
|
|
|
22918
23343
|
hint: "Set `severity` to low | medium | high, or drop the field entirely."
|
|
22919
23344
|
};
|
|
22920
23345
|
}
|
|
22921
|
-
const
|
|
22922
|
-
const
|
|
23346
|
+
const message = params.message.length > MESSAGE_MAX ? `${params.message.slice(0, MESSAGE_MAX)}\u2026` : params.message;
|
|
23347
|
+
const toolCalled = typeof params.tool_called === "string" && KNOWN_TOOL_NAMES.has(params.tool_called) ? params.tool_called : void 0;
|
|
23348
|
+
const report = {
|
|
23349
|
+
category: params.category,
|
|
23350
|
+
message,
|
|
23351
|
+
...toolCalled ? { tool_called: toolCalled } : {},
|
|
23352
|
+
...params.severity ? { severity: params.severity } : {}
|
|
23353
|
+
};
|
|
23354
|
+
const delivered = ctx?.reportFriction ? ctx.reportFriction(report) : false;
|
|
23355
|
+
if (!delivered) {
|
|
23356
|
+
return {
|
|
23357
|
+
reported: false,
|
|
23358
|
+
message: "This report could NOT be sent from this client (problem reporting isn't available here \u2014 telemetry is off or unavailable). Tell the user it was not delivered; do not claim it was shared.",
|
|
23359
|
+
_friction: report,
|
|
23360
|
+
_meta: { region: client.region }
|
|
23361
|
+
};
|
|
23362
|
+
}
|
|
22923
23363
|
return {
|
|
22924
23364
|
reported: true,
|
|
22925
|
-
//
|
|
22926
|
-
//
|
|
22927
|
-
//
|
|
22928
|
-
|
|
22929
|
-
|
|
22930
|
-
_friction: {
|
|
22931
|
-
category: params.category,
|
|
22932
|
-
user_quote: quote,
|
|
22933
|
-
...params.tool_called ? { tool_called: params.tool_called } : {},
|
|
22934
|
-
...params.severity ? { severity: params.severity } : {},
|
|
22935
|
-
...details ? { details } : {}
|
|
22936
|
-
},
|
|
23365
|
+
// User-facing confirmation. This tool is consent-gated and visible: the
|
|
23366
|
+
// agent shows this line back so the user always knows the report was
|
|
23367
|
+
// sent and is never surprised by it.
|
|
23368
|
+
message: "Shared with the Leadbay team \u2014 thanks for flagging it.",
|
|
23369
|
+
_friction: report,
|
|
22937
23370
|
_meta: { region: client.region }
|
|
22938
23371
|
};
|
|
22939
23372
|
}
|
|
@@ -23020,12 +23453,12 @@ var init_team_activity = __esm({
|
|
|
23020
23453
|
});
|
|
23021
23454
|
|
|
23022
23455
|
// ../core/dist/tools/send-feedback.js
|
|
23023
|
-
var
|
|
23456
|
+
var MESSAGE_MAX2, sendFeedback;
|
|
23024
23457
|
var init_send_feedback = __esm({
|
|
23025
23458
|
"../core/dist/tools/send-feedback.js"() {
|
|
23026
23459
|
"use strict";
|
|
23027
23460
|
init_tool_descriptions_generated();
|
|
23028
|
-
|
|
23461
|
+
MESSAGE_MAX2 = 4e3;
|
|
23029
23462
|
sendFeedback = {
|
|
23030
23463
|
name: "leadbay_send_feedback",
|
|
23031
23464
|
annotations: {
|
|
@@ -23076,7 +23509,7 @@ var init_send_feedback = __esm({
|
|
|
23076
23509
|
hint: "Ask the user what they'd like to tell the Leadbay team, then call again with their words in `message`."
|
|
23077
23510
|
};
|
|
23078
23511
|
}
|
|
23079
|
-
const message = text.length >
|
|
23512
|
+
const message = text.length > MESSAGE_MAX2 ? `${text.slice(0, MESSAGE_MAX2 - 1)}\u2026` : text;
|
|
23080
23513
|
if (!ctx?.sendFeedback) {
|
|
23081
23514
|
return {
|
|
23082
23515
|
sent: false,
|
|
@@ -23293,6 +23726,7 @@ __export(dist_exports, {
|
|
|
23293
23726
|
setEpilogueStatus: () => setEpilogueStatus,
|
|
23294
23727
|
setPushback: () => setPushback,
|
|
23295
23728
|
setQualificationQuestions: () => setQualificationQuestions,
|
|
23729
|
+
setTelemetry: () => setTelemetry,
|
|
23296
23730
|
setUserPrompt: () => setUserPrompt,
|
|
23297
23731
|
teamActivity: () => teamActivity,
|
|
23298
23732
|
toInboxEntry: () => toInboxEntry,
|
|
@@ -23366,6 +23800,7 @@ var init_dist = __esm({
|
|
|
23366
23800
|
init_delete_custom_field();
|
|
23367
23801
|
init_like_lead();
|
|
23368
23802
|
init_dislike_lead();
|
|
23803
|
+
init_set_telemetry();
|
|
23369
23804
|
init_add_contact();
|
|
23370
23805
|
init_remove_contact();
|
|
23371
23806
|
init_pin_contact();
|
|
@@ -23463,6 +23898,7 @@ var init_dist = __esm({
|
|
|
23463
23898
|
removePushback,
|
|
23464
23899
|
previewBulkEnrichment,
|
|
23465
23900
|
launchBulkEnrichment,
|
|
23901
|
+
setTelemetry,
|
|
23466
23902
|
createCustomField
|
|
23467
23903
|
];
|
|
23468
23904
|
granularTools = [
|
|
@@ -23536,11 +23972,12 @@ var init_dist = __esm({
|
|
|
23536
23972
|
createTopupLink,
|
|
23537
23973
|
openBillingPortal,
|
|
23538
23974
|
prepareOutreach,
|
|
23539
|
-
//
|
|
23540
|
-
//
|
|
23541
|
-
//
|
|
23542
|
-
//
|
|
23543
|
-
//
|
|
23975
|
+
// Problem reporting — ALWAYS exposed so a user on a read-only deployment
|
|
23976
|
+
// can still ask for a problem to be reported. Consent-gated and visible:
|
|
23977
|
+
// the agent calls it only when the user asks or accepts an offer, and shows
|
|
23978
|
+
// the confirmation back (product#3943). Does not mutate Leadbay state;
|
|
23979
|
+
// emits a PostHog event carrying only what the user approved. Companion to
|
|
23980
|
+
// leadbay_report_outreach (which DOES write and stays behind LEADBAY_MCP_WRITE).
|
|
23544
23981
|
reportFriction,
|
|
23545
23982
|
// Notification ack — ALWAYS exposed even though it POSTs to /seen.
|
|
23546
23983
|
// _meta.notifications surfaces terminal bulk-progress notifications on
|
|
@@ -23658,7 +24095,9 @@ var leadbay_build_campaign = `
|
|
|
23658
24095
|
Before responding, glance at any \`_meta.agent_memory.summary\` returned by tool calls earlier in this session and reflect its top signals in your reasoning ("Filtering by your stated preference for healthcare"). After any material new signal from the user this conversation (sector, region, deal size, communication style, qualification rule, explicit retraction, or recurrence / scheduling preference such as "I do this every day" or "remind me every morning"), call \`leadbay_agent_memory_capture\` to persist it: \`source:"user_stated"\` if literal, \`source:"inferred"\` with confidence <=6 if inferred.
|
|
23659
24096
|
|
|
23660
24097
|
|
|
23661
|
-
Build me a Leadbay campaign from scratch{{arg:campaign_name_paren}}. {{arg:audience_block}}
|
|
24098
|
+
Build me a Leadbay campaign from scratch{{arg:campaign_name_paren}} \u2014 a cohort of **{{arg:count_or_default}}** fully-actionable leads: each in-ICP, high \`ai_agent_lead_score\`, AND with a reachable buyer contact. {{arg:audience_block}} {{arg:job_titles_block}}
|
|
24099
|
+
|
|
24100
|
+
**Run this end-to-end, autonomously, without pausing.** Do NOT stop to confirm the audience, do NOT stop to confirm the enrichment spend, do NOT ask me to pick, and do NOT stop to hand off \u2014 just keep discovering, qualifying, enriching, and swapping until the cohort holds **{{arg:count_or_default}}** leads that each meet EVERY requirement (in-ICP, high \`ai_agent_lead_score\`, and a reachable target-title contact whose email/phone actually landed). The ONLY reasons to stop short: the lens genuinely can't supply that many buyer-ready in-ICP leads, or enrichment quota is exhausted (a backend 429). In those cases, finish with whatever you locked and tell me plainly how many you got and why it stopped. Enrichment consumes quota, not credits \u2014 never pre-refuse on a credit balance.
|
|
23662
24101
|
|
|
23663
24102
|
GATE \u2014 DEFER TO TOOL RENDERING. When you call a Leadbay composite that ships its own RENDERING block (every composite in 0.9.0+ does), render the response using that block's recipe verbatim \u2014 score bars, glyph palette, column order, hide-list, link priorities, all of it. Do NOT substitute prose, a numbered list, or a different column structure even when an orchestrating prompt's body suggests alternate framing. Prompt-specific commentary (motivational nudges, summaries, next-action recommendations) belongs ABOVE or BELOW the canonical table, never in place of it.
|
|
23664
24103
|
|
|
@@ -23696,14 +24135,14 @@ If \`pull_leads\` itself fails and you have no prior batch, then yes \u2014 retr
|
|
|
23696
24135
|
|
|
23697
24136
|
Call \`leadbay_account_status\` to see my remaining **quota** and my **active lens**. Enrichment (Phase 3) consumes quota \u2014 email + phone reveals draw on the per-window allowance. Reason in quota, NOT in "credits": there is no separate credit wall to clear, and a freemium/fresh account with quota left can enrich even if a credit counter reads 0. Never pre-refuse enrichment on a credit balance. If \`organization.unlimited_credits\` is true, this is an internal/unlimited account: proceed freely and say nothing about quota or credits.
|
|
23698
24137
|
|
|
23699
|
-
Resolve the audience:
|
|
24138
|
+
Resolve the audience (do NOT stop to ask):
|
|
23700
24139
|
|
|
23701
24140
|
- **Default \u2014 use my active lens.** If I didn't name a fresh audience, the active lens IS the audience. Do NOT create a new lens.
|
|
23702
|
-
- **Fresh-audience fork.**
|
|
24141
|
+
- **Fresh-audience fork.** If I described a NEW audience the active lens doesn't already cover, set it up first \u2014 \`leadbay_adjust_audience\` for sector/size tweaks, or \`leadbay_new_lens\` to create a brand-new named lens \u2014 then continue on that lens. Naming the audience IS my authorization; switch without asking. Just state in one line which lens you're building on.
|
|
23703
24142
|
|
|
23704
24143
|
# PHASE 1 \u2014 DISCOVER
|
|
23705
24144
|
|
|
23706
|
-
Call \`leadbay_pull_leads\` on the resolved lens. **Capture \`response.lens.id\` and pass it as an explicit \`lensId\` on every later call this session** \u2014 a mid-session lens shift would discard the cohort I'm
|
|
24145
|
+
Call \`leadbay_pull_leads\` on the resolved lens. **Capture \`response.lens.id\` and pass it as an explicit \`lensId\` on every later call this session** \u2014 a mid-session lens shift would discard the cohort I'm building. Render each batch you show with the canonical layout:
|
|
23707
24146
|
|
|
23708
24147
|
## RENDERING \u2014 markdown table, three columns, score-bar driven
|
|
23709
24148
|
|
|
@@ -23777,47 +24216,45 @@ When the response carries \`social_urls\` (the post-fix multi-platform URL block
|
|
|
23777
24216
|
|
|
23778
24217
|
|
|
23779
24218
|
|
|
23780
|
-
|
|
24219
|
+
The target is **{{arg:count_or_default}}** buyer-ready in-ICP leads, so keep the pipeline deep. Whenever the workable in-ICP pool is thinner than ~1.5\xD7 the target, top it up: call \`leadbay_bulk_qualify_leads({lensId:<captured>, count:<deficit, max 25 per call>, wait_for_completion:false})\`, poll \`leadbay_qualify_status\` until done, then re-pull with the same \`lensId\`. Repeat this qualify\u2192re-pull loop as many times as needed to feed Phases 2\u20133. Never re-pull without \`lensId\`.
|
|
23781
24220
|
|
|
23782
24221
|
# PHASE 2 \u2014 PICK AN ICP CANDIDATE POOL
|
|
23783
24222
|
|
|
23784
|
-
A campaign is only as good as the leads in it \u2014 AND only as good as whether each lead has a reachable BUYER (see Phase 3). So
|
|
24223
|
+
A campaign is only as good as the leads in it \u2014 AND only as good as whether each lead has a reachable BUYER (see Phase 3). So build a **generous candidate pool**, not the final cohort: aim for ~1.5\xD7 the target ({{arg:count_or_default}}) of in-ICP leads (highest \`ai_agent_lead_score\`), so Phase 3 can drop any lead that turns out to have no buyer contact and still reach the target. If the pool is short, top up via \`leadbay_bulk_qualify_leads\` / \`leadbay_extend_lens\` and loop back \u2014 keep going until the pool is deep enough to yield the target after coverage filtering.
|
|
23785
24224
|
|
|
23786
|
-
If I named specific leads,
|
|
24225
|
+
If I named specific leads, seed with those (still apply the Phase 3 buyer-coverage check). Otherwise pick the top-scoring in-ICP leads yourself \u2014 do NOT ask me to choose. Capture the candidate \`leadIds\`. Do NOT create the campaign yet \u2014 the final cohort is locked after Phase 3's coverage check.
|
|
23787
24226
|
|
|
23788
24227
|
# PHASE 3 \u2014 ENRICH THE RIGHT CONTACTS (load-bearing)
|
|
23789
24228
|
|
|
23790
|
-
This is the phase that decides whether the campaign is worth a salesperson's time. Contacts aren't attached by default and enrichment is paid \u2014 so spend it ONLY on the people who would actually **buy what I sell**, not on whoever is most senior.
|
|
24229
|
+
This is the phase that decides whether the campaign is worth a salesperson's time. Contacts aren't attached by default and enrichment is paid \u2014 so spend it ONLY on the people who would actually **buy what I sell**, at the target titles, not on whoever is most senior.
|
|
23791
24230
|
|
|
23792
|
-
**Step A \u2014
|
|
23793
|
-
Figure out what *I* sell and therefore who, inside the target company, owns the decision to buy it:
|
|
24231
|
+
**Step A \u2014 settle the target titles / buyer persona.**
|
|
23794
24232
|
|
|
23795
|
-
-
|
|
23796
|
-
-
|
|
24233
|
+
- **If I named target titles at the top of this request:** those ARE the persona \u2014 enrich exactly those titles. Do NOT re-derive and do NOT substitute "more senior" titles. If a given title looks off for what I sell, you may note it in one line, but honor my titles.
|
|
24234
|
+
- **If I did NOT name titles:** derive my buyer persona yourself (do NOT ask me). Infer my product / value-prop from my org + account (\`leadbay_account_status\`) and especially my lens's \`qualification_summary\` \u2014 it tells you *why* these companies are targets, which implies what I'm offering. Then map value-prop \u2192 the **buying department/persona**, NOT seniority:
|
|
23797
24235
|
- A sales / prospecting / lead-gen / outbound / marketing / GTM / revenue tool \u2192 the **revenue org**: VP / Head / Director of Sales, Business Development, Account/Carrier Sales, CRO, CMO / VP Marketing, Head of Growth / Demand Gen, RevOps. (This is Leadbay's own persona.)
|
|
23798
24236
|
- An operations / logistics tool \u2192 operations leaders. A finance tool \u2192 finance. A dev tool \u2192 engineering. Etc.
|
|
23799
|
-
- **Company size caveat:** Founder / CEO / Owner is a real buyer at small companies (\u2264~50), but at larger ones
|
|
23800
|
-
-
|
|
24237
|
+
- **Company size caveat:** Founder / CEO / Owner is a real buyer at small companies (\u2264~50), but at larger ones the functional leader (e.g. VP Sales) is the buyer.
|
|
24238
|
+
- State the persona in one line \u2014 for the record, NOT to wait for my approval.
|
|
23801
24239
|
|
|
23802
|
-
**ANTI-PATTERN \u2014 do NOT do this:** picking the most senior or most "decision-maker-sounding" title regardless of department. A Director of Operations, COO, Mgr of Logistics, CFO, or CTO will **never** buy a sales tool \u2014 enriching them wastes
|
|
24240
|
+
**ANTI-PATTERN \u2014 do NOT do this:** picking the most senior or most "decision-maker-sounding" title regardless of department. A Director of Operations, COO, Mgr of Logistics, CFO, or CTO will **never** buy a sales tool \u2014 enriching them wastes quota and hands me a useless list. Seniority is not the same as being my buyer.
|
|
23803
24241
|
|
|
23804
24242
|
**Step B \u2014 find the persona-matching, enrichable contacts.**
|
|
23805
|
-
Call \`leadbay_recall_ordered_titles({leadIds, lensId})\` and \`leadbay_enrich_titles({leadIds, lensId})\` in **discovery mode** (no \`titles\`). These return previously-enriched titles, \`title_suggestions\`, \`auto_included_titles\`, \`available_in_selection\`, \`enrichable_contacts\`, and \`credits_remaining\`. Treat them as a **menu to filter against my
|
|
24243
|
+
Call \`leadbay_recall_ordered_titles({leadIds, lensId})\` and \`leadbay_enrich_titles({leadIds, lensId})\` in **discovery mode** (no \`titles\`). These return previously-enriched titles, \`title_suggestions\`, \`auto_included_titles\`, \`available_in_selection\`, \`enrichable_contacts\`, and \`credits_remaining\`. Treat them as a **menu to filter against my target titles \u2014 not the answer.** If past-enriched titles or suggestions are off-persona (e.g. operations roles for a sales tool), do NOT repeat them. Select the titles that match my target persona AND are actually enrichable.
|
|
23806
24244
|
|
|
23807
|
-
**Step B.5 \u2014 coverage guarantee (lock the
|
|
24245
|
+
**Step B.5 \u2014 coverage guarantee + run-to-goal (lock the cohort here).** A campaign where leads have no buyer is a failed campaign, and I asked for **{{arg:count_or_default}}** actionable leads \u2014 so this step LOOPS until you have that many. For each candidate, determine whether it has an **enrichable target-title contact** \u2014 use the discovery data plus, where it's ambiguous, a quick \`leadbay_research_lead_by_id\` to see that lead's available contact titles. Then:
|
|
23808
24246
|
|
|
23809
|
-
- **KEEP** candidates that have \u22651 enrichable
|
|
23810
|
-
- **SWAP OUT** candidates whose only contacts are off-persona (e.g. ops/dispatch/finance only) or who have no enrichable contact at all. Replace each with the **highest-\`ai_agent_lead_score\` in-ICP candidate** from the pool that DOES have a buyer
|
|
24247
|
+
- **KEEP** candidates that have \u22651 enrichable target-title contact.
|
|
24248
|
+
- **SWAP OUT** candidates whose only contacts are off-persona (e.g. ops/dispatch/finance only) or who have no enrichable contact at all. Replace each with the **highest-\`ai_agent_lead_score\` in-ICP candidate** from the pool that DOES have a buyer.
|
|
24249
|
+
- **Keep pulling more.** If keeps + available swaps still fall short of {{arg:count_or_default}}, go back to Phase 1/2 (\`leadbay_bulk_qualify_leads\` / \`leadbay_extend_lens\`, re-pull, re-check coverage) and keep going until you have {{arg:count_or_default}} buyer-covered in-ICP leads \u2014 or the lens is genuinely exhausted.
|
|
23811
24250
|
- **Do NOT trade ICP fit for coverage.** A lead with a buyer but weak ICP fit (low \`ai_agent_lead_score\`, a vertical that doesn't match what I sell) is still the wrong lead \u2014 coverage is a filter applied AFTER ICP, never a reason to admit an off-ICP company. The final cohort must be both high-ICP AND buyer-covered.
|
|
23812
|
-
- If the lens genuinely can't supply
|
|
23813
|
-
|
|
23814
|
-
Tell me what you swapped in one line ("dropped Corbett + RBS \u2014 ops-only; swapped in Acme + Globex which have Sales VPs"). The goal is a final cohort where EVERY lead has a real buyer to call.
|
|
24251
|
+
- If the lens genuinely can't supply {{arg:count_or_default}} buyer-ready in-ICP leads, lock what you have, and after the call sheet tell me how many you reached and offer to widen/extend \u2014 do NOT pad with no-buyer or off-ICP leads.
|
|
23815
24252
|
|
|
23816
|
-
|
|
24253
|
+
Tell me what you swapped in one line ("dropped Corbett + RBS \u2014 ops-only; swapped in Acme + Globex which have Sales VPs").
|
|
23817
24254
|
|
|
23818
|
-
**Step
|
|
24255
|
+
**Step C \u2014 enrich (NO confirm gate \u2014 just spend).** You do NOT need my permission: I authorized this spend by asking for the campaign. Do NOT call \`ask_user_input_v0\`, do NOT ask "enrich these N now?", do NOT wait. State the persona + titles + "enriching {enrichable_contacts} contacts (email + phone, consumes quota)" in one line for the record, then immediately launch: \`leadbay_enrich_titles({leadIds, lensId, titles:[...chosen], email:true, phone:true})\`. Enrich up to {{arg:count_or_default}} best target-title contacts. Do NOT quote a "credits" figure or refuse on a credit balance \u2014 the only real limit is quota (a backend 429). If a 429 stops you mid-run, keep the leads already enriched, note how many landed, and continue to Phase 4 with those.
|
|
23819
24256
|
|
|
23820
|
-
|
|
24257
|
+
**Step D \u2014 poll + count only landed.** Poll \`leadbay_bulk_enrich_status\` until done (enrichment can take several minutes \u2014 keep polling, don't render an empty sheet prematurely). Once \`all_done\`, call \`leadbay_account_status\` and show my refreshed quota so I see what the run consumed. A lead only counts toward the {{arg:count_or_default}} once its target-title contact actually landed (email/phone present); if some came back empty, swap + enrich replacements (loop back to Step B.5) until the cohort is genuinely {{arg:count_or_default}} deep or the lens is exhausted.
|
|
23821
24258
|
|
|
23822
24259
|
# PHASE 4 \u2014 CREATE THE CAMPAIGN
|
|
23823
24260
|
|
|
@@ -23825,30 +24262,29 @@ Derive a name (\`<lens or audience> \u2013 <today's date>\`) or use the one I ga
|
|
|
23825
24262
|
|
|
23826
24263
|
# PHASE 5 \u2014 THE VIEW (call / email ready)
|
|
23827
24264
|
|
|
23828
|
-
|
|
24265
|
+
**Poll \`leadbay_bulk_enrich_status\` until it's actually done before rendering** \u2014 do not render a "still enriching" sheet with empty contact cells; the whole point is the landed phones/emails. Enrichment can take several minutes; keep polling.
|
|
23829
24266
|
|
|
23830
24267
|
Then call \`leadbay_campaign_call_sheet({campaign_id})\` and render it per its RENDERING block \u2014 one card per lead, contacts with \`[phone](tel:)\` + \`[email](mailto:)\` one-tap links, the readiness chip at the top, map optional. This is the view I work from: scan \u2192 tap to call \u2192 tap to email.
|
|
23831
24268
|
|
|
23832
24269
|
**Flag suspect contacts** so I don't email the wrong person blind: mark with \u26A0 any enriched contact whose email domain doesn't match the company's website, or who shows up on more than one lead in this campaign (a sign of a mis-attributed enrichment). Keep the phone (it's usually still right) but tell me the email looks off.
|
|
23833
24270
|
|
|
23834
|
-
# PHASE 6 \u2014
|
|
24271
|
+
# PHASE 6 \u2014 DONE (no handoff prompt)
|
|
23835
24272
|
|
|
23836
|
-
The campaign exists and is call/email ready.
|
|
24273
|
+
The campaign exists and is call/email ready. State in one line how many actionable leads landed vs. the {{arg:count_or_default}} target, and \u2014 as plain text, NOT an \`ask_user_input_v0\` question \u2014 mention I can work it later with \`leadbay_work_campaign\` (the calling/email + outcome-logging loop) or check its pulse with \`leadbay_campaign_progression\`. Then STOP.
|
|
23837
24274
|
|
|
23838
|
-
|
|
23839
|
-
- "See the pulse" \u2192 \`leadbay_campaign_progression\` for per-lead status.
|
|
23840
|
-
|
|
23841
|
-
Then STOP. Building a campaign is NOT outreaching \u2014 do not send anything and do not call \`leadbay_report_outreach\`. When I come back later to log calls, see previous statuses, and do follow-ups, that is \`leadbay_work_campaign\`, not this prompt.
|
|
24275
|
+
Building a campaign is NOT outreaching \u2014 do not send anything and do not call \`leadbay_report_outreach\`. Do not run \`leadbay_work_campaign\` yourself; that's a separate session I start when I'm ready to call.
|
|
23842
24276
|
|
|
23843
24277
|
# Iron laws
|
|
23844
24278
|
|
|
23845
|
-
-
|
|
23846
|
-
-
|
|
23847
|
-
-
|
|
23848
|
-
-
|
|
24279
|
+
- **Run to the goal, autonomously.** Keep discovering \u2192 qualifying \u2192 enriching \u2192 swapping until the cohort holds {{arg:count_or_default}} leads that are ALL in-ICP, high-score, and buyer-covered \u2014 or the lens is genuinely exhausted. Do NOT stop early, do NOT ask me to pick, do NOT hand off mid-flow.
|
|
24280
|
+
- **No confirm gates. No pauses.** Do NOT confirm the audience switch, and do NOT confirm the enrichment spend (no \`ask_user_input_v0\` before enriching) \u2014 asking for the campaign IS the authorization. The only acceptable stops are lens exhaustion or a backend 429.
|
|
24281
|
+
- Enrichment targets MY buyer titles \u2014 the people who would actually buy what *I* sell (my given titles, or the persona derived from my product/ICP) \u2014 NOT generic seniority. For a sales/prospecting tool that means the revenue org; a Director of Operations, COO, or logistics manager is useless no matter how senior.
|
|
24282
|
+
- Selection is DATA-DRIVEN (\`leadbay_recall_ordered_titles\` + \`leadbay_enrich_titles\` discovery) but FILTERED to the target titles \u2014 never blindly repeat past-enriched or suggested titles that don't match who buys my product.
|
|
24283
|
+
- The FINAL cohort must be all buyer-ready: a lead counts only once its target-title contact actually landed. Drop/swap + re-enrich any lead with no reachable buyer rather than shipping it empty.
|
|
24284
|
+
- Enrichment consumes quota \u2014 never show a "credits" figure or refuse on a credit balance; the gate is quota (or a backend 429), not credits.
|
|
23849
24285
|
- Qualify / pick BEFORE \`leadbay_create_campaign\` \u2014 never seed a campaign with unvetted leads.
|
|
23850
24286
|
- Carry the captured \`lensId\` on every call. A lens shift loses the cohort.
|
|
23851
|
-
- End at the rendered call sheet
|
|
24287
|
+
- End at the rendered call sheet. Do NOT re-implement the calling / follow-up loop here, do NOT run \`leadbay_work_campaign\` yourself, and do NOT call \`leadbay_report_outreach\`.
|
|
23852
24288
|
`;
|
|
23853
24289
|
var leadbay_daily_check_in = `
|
|
23854
24290
|
## MEMORY
|
|
@@ -24187,7 +24623,7 @@ Build the final mappings yourself. Start from \`leadbay_resolve_import_rows.mapp
|
|
|
24187
24623
|
|
|
24188
24624
|
# PHASE 5 \u2014 QUALIFY (optional) + REPORT
|
|
24189
24625
|
|
|
24190
|
-
Prefer \`leadbay_import_and_qualify\` when the user asks to qualify/research after import; otherwise use \`leadbay_import_leads\`. For large files or short client timeouts, pass \`wait_for_completion=false\` and poll \`leadbay_import_status\`. After import, qualify only lead IDs returned by the import;
|
|
24626
|
+
Prefer \`leadbay_import_and_qualify\` when the user asks to qualify/research after import; otherwise use \`leadbay_import_leads\`. For large files or short client timeouts, pass \`wait_for_completion=false\` and poll \`leadbay_import_status\`. After import, qualify only lead IDs returned by the import. Rows that came back \`uncrawled\` are pending a background crawl (not failures); the leads Leadbay adds for them populate in the user's Leadbay account as the crawl completes \u2014 tell the user that, not that a tool call will fetch them (\`import_status\` refreshes status/progress only; \`pull_leads\` reads the active lens, so an imported lead outside it may not appear; re-running the import later re-reconciles those companies).
|
|
24191
24627
|
|
|
24192
24628
|
**Deliver the augmented file back to the user**: the original file plus a new \`LEADBAY_ID\` column populated from the resolution step. This is the second deliverable of a job well done.
|
|
24193
24629
|
|
|
@@ -24910,7 +25346,7 @@ Optional: offer to review the \`leadbay_campaign_progression\` for the same camp
|
|
|
24910
25346
|
- If the user dictates an outcome that doesn't cleanly map to one of the four epilogue values, ASK ONCE before guessing.
|
|
24911
25347
|
`;
|
|
24912
25348
|
var PROMPT_META = {
|
|
24913
|
-
leadbay_build_campaign: { "name": "leadbay_build_campaign", "short_description": 'Build a sales campaign from scratch
|
|
25349
|
+
leadbay_build_campaign: { "name": "leadbay_build_campaign", "short_description": 'Build a sales campaign from scratch, autonomously, to a target size:\ndiscover on the lens, qualify, and enrich the buyer titles until `count`\nleads each have a reachable target-title contact \u2014 no pauses, no confirm\ngates. Saves via `leadbay_create_campaign` and renders a one-tap\ncall/email view via `leadbay_campaign_call_sheet`. Trigger on "build me a\ncampaign", "build N leads", "create a campaign from scratch". Work an\nexisting one with `leadbay_work_campaign`.\n', "arguments": [{ "name": "audience", "description": "Optional: a fresh audience to target (e.g. 'dental clinics in Texas'). Omit to build from your ACTIVE lens \u2014 the default.", "required": false }, { "name": "campaign_name", "description": "Optional: a name for the campaign. Omit and one is derived from the lens/audience + date (or the backend AI-names it).", "required": false }, { "name": "count", "description": "Optional: how many fully-actionable leads to build (default 20). The loop keeps discovering, qualifying and enriching until this many in-ICP leads each have a reachable target-title contact \u2014 or the lens is exhausted. Higher counts take longer and consume more quota.", "required": false }, { "name": "job_titles", "description": "Optional: the exact buyer job titles to enrich, comma-separated (e.g. 'VP Sales, Head of Growth, Director of Business Development'). Omit and the buyer persona is derived from what you sell. A lead only counts toward the target when it has a reachable contact matching one of these titles.", "required": false }], "expected_calls": ["leadbay_account_status", "leadbay_pull_leads", "leadbay_bulk_qualify_leads", "leadbay_qualify_status", "leadbay_recall_ordered_titles", "leadbay_enrich_titles", "leadbay_bulk_enrich_status", "leadbay_create_campaign", "leadbay_add_leads_to_campaign", "leadbay_campaign_call_sheet", "leadbay_campaign_progression", "leadbay_new_lens", "leadbay_adjust_audience"], "failure_modes": ["Pauses to confirm before enriching (or asks 'enrich these N now?' via ask_user_input_v0) \u2014 this prompt runs to goal with NO confirm gate; asking for the campaign IS the authorization. Never stop for a spend confirmation.", "Stops to confirm a lens switch when the user named a fresh audience \u2014 naming the audience IS the authorization; switch, state which lens in one line, and don't ask.", "Pauses at any point to ask the user to choose, confirm, or hand off \u2014 the only acceptable stops are lens exhaustion (can't supply the count) or a backend 429 (quota out). Anything else is purpose drift.", "Stops at fewer than the target `count` of actionable leads without looping back to pull / qualify / enrich more \u2014 must run to the target, or honestly report the lens is exhausted and offer to widen.", "Counts a lead toward `count` before its target-title contact actually landed (email/phone present) \u2014 an empty enrichment doesn't count; swap and re-enrich until the cohort is genuinely `count` deep.", "Enriches by seniority instead of by buyer persona \u2014 picks COO / Director of Operations / Mgr of Logistics / CFO / CTO because they sound senior, when the user sells a SALES tool whose buyer is the revenue org (VP/Head/Director of Sales, BD, growth, marketing). Operations people never buy a sales tool; this hands the salesperson a useless list.", "When no titles are given, fails to derive the user's buyer persona from their product/ICP before choosing titles \u2014 jumps straight to generic exec titles instead of working out who buys what THIS user sells. (When titles ARE given, use them verbatim \u2014 don't substitute 'more senior' ones.)", "Blindly repeats leadbay_recall_ordered_titles / discovery suggestions even when they are off-persona (e.g. operations roles a prior session wrongly enriched) \u2014 recall is a filtered input, not the answer.", "Poor coverage \u2014 leaves picked leads with no target-title contact (or 0 enrichments on some leads) and ships them anyway, so the salesperson opens the campaign to half-empty rows. Swap them out and refill to the count instead.", "Creates the campaign before qualifying / picking \u2014 seeds a campaign with unvetted leads. Qualify and lock the buyer-covered cohort FIRST, then leadbay_create_campaign.", "Ends at 'campaign created' without rendering the leadbay_campaign_call_sheet view \u2014 the ready-to-work view IS the deliverable; stopping short is purpose drift.", "Runs the calling / outcome / follow-up loop, or calls leadbay_work_campaign itself, instead of stopping at the call sheet \u2014 this prompt BUILDS and stops; work_campaign is a separate session the user starts later.", "Auto-sends outreach or calls leadbay_report_outreach \u2014 building a campaign is not outreaching. No send, no log.", "Re-pulls leadbay_pull_leads without the captured lensId \u2014 a mid-session lens shift discards the cohort being built.", "Renders the picked leads or the call sheet as prose instead of the canonical per-tool RENDERING layout."] },
|
|
24914
25350
|
leadbay_daily_check_in: { "name": "leadbay_daily_check_in", "short_description": 'Morning DISCOVERY workflow \u2014 new leads from the lens wishlist. Trigger\non "show me leads", "what\'s new today", "let\'s prospect", "run my check-in",\n"my morning check-in", "I do this every day", "every morning". Recurrence\nlanguage always means this prompt. Do NOT trigger on follow-up phrasings\n("follow up", "before my trip") \u2014 those go to `leadbay_followup_check_in`.\n', "arguments": [], "expected_calls": ["leadbay_account_status", "leadbay_pull_leads", "leadbay_research_lead_by_id", "leadbay_bulk_qualify_leads", "leadbay_enrich_contacts"], "failure_modes": ["Calls leadbay_report_outreach without explicit user authorization", "Surfaces fewer than 10 leads when more are available, or fails to top up via leadbay_qualify_top_n when the batch is short", `Replaces the canonical pull_leads table layout with prose per row (the per-tool RENDERING block is the structural contract; "Today's nudges" goes above it, not in place of it)`, "Skips the nudge paragraph entirely \u2014 the table alone is fine but adding the nudge is the value-add", `Skips deep research on promising leads (Phase 4) \u2014 the agent must call leadbay_research_lead_by_id on each when the user's intent is to research specific leads; Phase 4 is intentionally skipped for batch-view requests ("show me today's leads", "run my morning check-in") per the Phase 4 skip gate`, "Triggers contact enrichment without asking the user first (it consumes quota)", "Skips the STOP byproduct and proposes next actions on its own", 'Fires 10 parallel leadbay_research_lead_by_id calls and treats "stream closed" errors as terminal \u2014 must serialize and retry singletons', "Re-pulls leadbay_pull_leads without passing the captured lensId, allowing a backend lens shift to discard the Phase 2 batch", 'Treats a "Request timed out" from leadbay_bulk_qualify_leads as terminal instead of retrying with wait_for_completion:false + qualify_status polling', 'Triggers on a follow-up query (e.g., "leads I should follow up with") that should have routed to `leadbay_followup_check_in` \u2014 the two entry points are different data sources (Discover wishlist vs Monitor view) per \xA71.6'] },
|
|
24915
25351
|
leadbay_extend_my_lens: { "name": "leadbay_extend_my_lens", "short_description": "Add more leads to the current lens on demand \u2014 for users whose appetite\nexceeds the standard daily fill. The agent picks seeds silently from\nwhat's already on the lens, fires the extra refill, and surfaces the\nqueue confirmation. The user never reviews the seed list.\n", "arguments": [{ "name": "extra_count", "description": "How many extra leads to add. Optional. Omit to use the backend default.", "required": false }], "expected_calls": ["leadbay_account_status", "leadbay_seed_candidates", "leadbay_extend_lens", "leadbay_pull_leads"], "failure_modes": ["Surfaces the seed candidate list to the user instead of picking silently \u2014 the user asked for MORE LEADS, not a candidate review meeting", "Skips the seeded path and calls `leadbay_extend_lens` with no `seed_lead_ids`, losing the bias signal the recommender needs", "On 429, silently retries instead of surfacing the three options (smaller / wait / upgrade) via your host's choice widget (`ask_user_input_v0` or `AskUserQuestion`)", "Forgets to pre-check `LENS_EXTRA_REFILL` quota in `leadbay_account_status` and burns a wasted API call", "Skips the post-queue pull-leads suggestion, so the user doesn't see what just got added"] },
|
|
24916
25352
|
leadbay_followup_check_in: { "name": "leadbay_followup_check_in", "short_description": 'Follow-up check-in: surface KNOWN leads from the Monitor view needing\nre-engagement. Trigger on "follow up", "already known leads", "what\'s\noverdue", "before my trip", "who should I re-engage". Do NOT trigger on\n"show me today\'s leads", "my morning check-in", "run my check-in",\n"I do this every day", "every morning" \u2014 those go to\n`leadbay_daily_check_in`.\n', "arguments": [], "expected_calls": ["leadbay_pull_followups", "leadbay_research_lead_by_id", "leadbay_prepare_outreach"], "failure_modes": ["Calls leadbay_pull_leads (the Discover entry point) instead of leadbay_pull_followups \u2014 these are different data sources; the Discover queue does NOT contain Monitor's known-but-cold pipeline", 'Iterates pages of leadbay_pull_leads filtering by engagement_count to "fake" a follow-up view (a real bug observed in 0.9.0 \u2014 the right move is to call pull_followups directly)', "Replaces the canonical pull_followups table layout with prose per row (the per-tool RENDERING block is the structural contract; commentary belongs above or below)", 'Skips the cross-mode pivot offer at the end ("Want to see NEW leads from your wishlist instead?" routes to leadbay_pull_leads)'] },
|
|
@@ -24932,7 +25368,7 @@ should I follow up on" to "I'll send via lemlist".
|
|
|
24932
25368
|
};
|
|
24933
25369
|
var PROMPT_CATALOG_HEADER = `This server exposes the following workflow prompts via \`prompts/list\` and \`prompts/get\`. Some MCP clients render them as slash commands; if your client does not, you (the agent) should invoke them directly via \`prompts/get\` when the user's request matches one of the triggers described below.`;
|
|
24934
25370
|
var PROMPT_CATALOG_BULLETS = {
|
|
24935
|
-
leadbay_build_campaign: `- \`leadbay_build_campaign\` (optional args: audience, campaign_name): Build a sales campaign from scratch
|
|
25371
|
+
leadbay_build_campaign: `- \`leadbay_build_campaign\` (optional args: audience, campaign_name, count, job_titles): Build a sales campaign from scratch, autonomously, to a target size: discover on the lens, qualify, and enrich the buyer titles until \`count\` leads each have a reachable target-title contact \u2014 no pauses, no confirm gates. Saves via \`leadbay_create_campaign\` and renders a one-tap call/email view via \`leadbay_campaign_call_sheet\`. Trigger on "build me a campaign", "build N leads", "create a campaign from scratch". Work an existing one with \`leadbay_work_campaign\`.`,
|
|
24936
25372
|
leadbay_daily_check_in: `- \`leadbay_daily_check_in\`: Morning DISCOVERY workflow \u2014 new leads from the lens wishlist. Trigger on "show me leads", "what's new today", "let's prospect", "run my check-in", "my morning check-in", "I do this every day", "every morning". Recurrence language always means this prompt. Do NOT trigger on follow-up phrasings ("follow up", "before my trip") \u2014 those go to \`leadbay_followup_check_in\`.`,
|
|
24937
25373
|
leadbay_extend_my_lens: `- \`leadbay_extend_my_lens\` (optional args: extra_count): Add more leads to the current lens on demand \u2014 for users whose appetite exceeds the standard daily fill. The agent picks seeds silently from what's already on the lens, fires the extra refill, and surfaces the queue confirmation. The user never reviews the seed list.`,
|
|
24938
25374
|
leadbay_followup_check_in: `- \`leadbay_followup_check_in\`: Follow-up check-in: surface KNOWN leads from the Monitor view needing re-engagement. Trigger on "follow up", "already known leads", "what's overdue", "before my trip", "who should I re-engage". Do NOT trigger on "show me today's leads", "my morning check-in", "run my check-in", "I do this every day", "every morning" \u2014 those go to \`leadbay_daily_check_in\`.`,
|
|
@@ -25093,16 +25529,31 @@ var CATALOG = [
|
|
|
25093
25529
|
name: "campaign_name",
|
|
25094
25530
|
description: "Optional: a name for the campaign. Omit and one is derived from the lens/audience + date (or the backend AI-names it).",
|
|
25095
25531
|
required: false
|
|
25532
|
+
},
|
|
25533
|
+
{
|
|
25534
|
+
name: "count",
|
|
25535
|
+
description: "Optional: how many fully-actionable leads to build (default 20). The loop keeps discovering, qualifying and enriching until this many in-ICP leads each have a reachable target-title contact \u2014 or the lens is exhausted. Higher counts take longer and consume more quota.",
|
|
25536
|
+
required: false
|
|
25537
|
+
},
|
|
25538
|
+
{
|
|
25539
|
+
name: "job_titles",
|
|
25540
|
+
description: "Optional: the exact buyer job titles to enrich, comma-separated (e.g. 'VP Sales, Head of Growth, Director of Business Development'). Omit and the buyer persona is derived from what you sell. A lead only counts toward the target when it has a reachable contact matching one of these titles.",
|
|
25541
|
+
required: false
|
|
25096
25542
|
}
|
|
25097
25543
|
],
|
|
25098
|
-
render: (args) =>
|
|
25099
|
-
|
|
25100
|
-
|
|
25101
|
-
|
|
25102
|
-
|
|
25103
|
-
|
|
25104
|
-
|
|
25105
|
-
|
|
25544
|
+
render: (args) => {
|
|
25545
|
+
const n = args.count ?? "20";
|
|
25546
|
+
return [
|
|
25547
|
+
userMessage(
|
|
25548
|
+
substitutePlaceholders(leadbay_build_campaign, {
|
|
25549
|
+
audience_block: args.audience ? `Target audience: **${args.audience}** \u2014 if my active lens doesn't already cover it, set it up first and continue on it (no need to ask me).` : "Use my active Leadbay lens as the audience.",
|
|
25550
|
+
campaign_name_paren: args.campaign_name ? ` named **${args.campaign_name}**` : "",
|
|
25551
|
+
count_or_default: n,
|
|
25552
|
+
job_titles_block: args.job_titles ? `Enrich exactly these buyer titles: **${args.job_titles}**. A lead only counts toward the ${n} when it has a reachable contact matching one of these titles.` : `No titles given \u2014 derive my buyer persona from what I sell (Phase 3 Step A) and enrich those titles.`
|
|
25553
|
+
})
|
|
25554
|
+
)
|
|
25555
|
+
];
|
|
25556
|
+
}
|
|
25106
25557
|
},
|
|
25107
25558
|
{
|
|
25108
25559
|
name: "leadbay_setup_team_prospecting",
|
|
@@ -25346,8 +25797,8 @@ var NOOP_TELEMETRY = {
|
|
|
25346
25797
|
},
|
|
25347
25798
|
captureAgentMemoryPruned: () => {
|
|
25348
25799
|
},
|
|
25349
|
-
|
|
25350
|
-
|
|
25800
|
+
// NOOP delivers nothing — say so, so the tool never claims a false send.
|
|
25801
|
+
captureFrictionReported: () => false,
|
|
25351
25802
|
captureException: () => {
|
|
25352
25803
|
},
|
|
25353
25804
|
captureFeedback: async () => false,
|
|
@@ -25562,7 +26013,9 @@ function initTelemetry(opts) {
|
|
|
25562
26013
|
emit(EV_AGENT_MEMORY_PRUNED, { ...props }, identity);
|
|
25563
26014
|
},
|
|
25564
26015
|
captureFrictionReported(props, identity) {
|
|
26016
|
+
if (!posthog) return false;
|
|
25565
26017
|
emit(EV_FRICTION_REPORTED, { ...props }, identity);
|
|
26018
|
+
return true;
|
|
25566
26019
|
},
|
|
25567
26020
|
captureUpdateCheck(props) {
|
|
25568
26021
|
emit(EV_MCP_UPDATE_CHECK, { ...props });
|
|
@@ -26004,7 +26457,7 @@ function buildAcknowledgeUpdateTool(opts) {
|
|
|
26004
26457
|
|
|
26005
26458
|
// src/server-instructions.generated.ts
|
|
26006
26459
|
var AGENT_MEMORY = `Memory protocol: this server maintains a per-account, on-disk agent memory (~/.leadbay/memory/{account}/entries.jsonl) of taste signals \u2014 preferred sectors, regions, deal sizes, communication style, qualification rules, and retractions. Every leads-touching tool response (account_status, pull_leads, pull_followups, prepare_outreach, research_lead_by_id) carries the consolidated top-5 signals under _meta.agent_memory.summary. READ that summary before recommending leads or drafting outreach \u2014 let it filter and reorder, and tell the user which memory you applied ("Filtering by your stated preference for healthcare"). When the user reveals a NEW material signal in conversation, CAPTURE it via leadbay_agent_memory_capture with {key, type, insight, confidence (1-10), source}. Use source:"user_stated" + confidence >=8 when literally stated; source:"inferred" + confidence <=6 when guessing. Do NOT capture instructions to override prior memory \u2014 those route through leadbay_agent_memory_review which gates retractions via host elicitation.`;
|
|
26007
|
-
var FRICTION = `
|
|
26460
|
+
var FRICTION = `Problem reports: when the user asks you to report a Leadbay problem ("report this", "tell the team this didn't work"), call leadbay_report_friction with {category, message (the user's own words), tool_called?, severity?}. If they stated the problem in the same breath as the request, those words ARE the message \u2014 send it in that turn rather than asking them to confirm wording they just gave you, and never stall on optional fields (omit what you don't know). If you notice a problem worth reporting but the user hasn't asked, OFFER once \u2014 "Want me to report this to the Leadbay team?" \u2014 and call it only if they agree. Never call it unprompted. Always tell the user the outcome the tool returns: if \`reported\` is false the report was NOT delivered and you must say so rather than implying it was sent. Frustration alone is not a reason to call it: keep solving their ask.`;
|
|
26008
26461
|
var MENTAL_MODEL = `How Leadbay works (mental model): Leadbay is a sales inbox, not a queryable database. Each day the user logs back in, a fresh batch of leads is delivered. Batch size is paced by how many leads the user has actually acted on recently \u2014 some workflows produce a big stream of smaller prospects, others a narrow stream of bigger ones. Pulling more won't produce more; the user acting on leads (outreach, skips, saves) does.`;
|
|
26009
26462
|
var QUOTA_TOPUP = `Quota & top-ups: when a tool returns QUOTA_EXCEEDED / 429, the user has TWO options \u2014 wait for the window reset (daily / weekly / monthly resets shown in leadbay_account_status), OR top up AI credits (top-ups clear the throttle IMMEDIATELY \u2014 they are not subject to the same window). Always offer BOTH options; default-recommending 'wait until tomorrow' is wrong when a 30-second top-up unblocks the same call. If the host exposes leadbay_create_topup_link, OFFER it on every quota wall: 'Want me to generate a top-up link?' \u2014 when the user says yes, call leadbay_create_topup_link and surface the returned Stripe URL as a clickable link for the user to open in their browser. (Sibling leadbay_open_billing_portal is for ongoing subscription changes, not one-shot top-ups.) AFTER the user has topped up: do NOT keep refusing operations. A top-up invalidates every prior 429 and every stale 'you're at your quota' snapshot. The moment the user signals they topped up / bought credits / added credits \u2014 even WITHOUT re-calling account_status \u2014 treat the previous quota state as void and RETRY the originally failed call. (Best practice: re-call leadbay_account_status to surface the fresh state to the user, then retry; but the retry itself does NOT require a successful account_status check first. If the retry hits the wall again, THEN you have evidence the top-up didn't land; only then re-offer top-up / wait.) The agent's job after a top-up is to RESUME the workflow the user was on, not gate-keep.
|
|
26010
26463
|
|
|
@@ -26238,6 +26691,7 @@ function buildServer(client, opts = {}) {
|
|
|
26238
26691
|
if (opts.includeWrite) {
|
|
26239
26692
|
exposedTools.push(...compositeWriteTools);
|
|
26240
26693
|
}
|
|
26694
|
+
exposedTools.push(setTelemetry);
|
|
26241
26695
|
if (opts.includeAdvanced) {
|
|
26242
26696
|
exposedTools.push(...granularReadTools);
|
|
26243
26697
|
if (opts.includeWrite) {
|
|
@@ -26442,26 +26896,10 @@ function buildServer(client, opts = {}) {
|
|
|
26442
26896
|
latency_ms: meta.latency_ms ?? null,
|
|
26443
26897
|
retry_after: meta.retry_after ?? null,
|
|
26444
26898
|
http_status: meta.http_status,
|
|
26445
|
-
triggered_by,
|
|
26899
|
+
...triggered_by !== void 0 ? { triggered_by } : {},
|
|
26446
26900
|
source: "business"
|
|
26447
26901
|
};
|
|
26448
26902
|
};
|
|
26449
|
-
const captureFrictionTelemetry = (toolName, result) => {
|
|
26450
|
-
if (toolName !== "leadbay_report_friction") return;
|
|
26451
|
-
if (!result || typeof result !== "object") return;
|
|
26452
|
-
const fr = result._friction;
|
|
26453
|
-
if (!fr || typeof fr !== "object") return;
|
|
26454
|
-
if (typeof fr.category !== "string" || typeof fr.user_quote !== "string") {
|
|
26455
|
-
return;
|
|
26456
|
-
}
|
|
26457
|
-
telemetry.captureFrictionReported({
|
|
26458
|
-
category: fr.category,
|
|
26459
|
-
user_quote: fr.user_quote,
|
|
26460
|
-
...typeof fr.tool_called === "string" ? { tool_called: fr.tool_called } : {},
|
|
26461
|
-
...typeof fr.severity === "string" ? { severity: fr.severity } : {},
|
|
26462
|
-
...typeof fr.details === "string" ? { details: fr.details } : {}
|
|
26463
|
-
});
|
|
26464
|
-
};
|
|
26465
26903
|
const captureAgentMemoryTelemetry = (toolName, result) => {
|
|
26466
26904
|
if (!result || typeof result !== "object") return;
|
|
26467
26905
|
const meta = result._meta ?? {};
|
|
@@ -26503,7 +26941,8 @@ function buildServer(client, opts = {}) {
|
|
|
26503
26941
|
};
|
|
26504
26942
|
}
|
|
26505
26943
|
const rawArgs = req.params.arguments ?? {};
|
|
26506
|
-
const { triggered_by, cleaned: args } = extractTriggeredBy(rawArgs);
|
|
26944
|
+
const { triggered_by: rawTriggeredBy, cleaned: args } = extractTriggeredBy(rawArgs);
|
|
26945
|
+
const triggered_by = name === "leadbay_report_friction" ? void 0 : rawTriggeredBy;
|
|
26507
26946
|
const progressToken = req.params?._meta?.progressToken;
|
|
26508
26947
|
const progress = progressToken !== void 0 ? (params) => {
|
|
26509
26948
|
extra.sendNotification({
|
|
@@ -26567,15 +27006,17 @@ ${url}
|
|
|
26567
27006
|
};
|
|
26568
27007
|
const pendingText = formatErrorForLLM(envelope);
|
|
26569
27008
|
const pendingDur = Date.now() - callStart;
|
|
26570
|
-
|
|
26571
|
-
|
|
26572
|
-
|
|
26573
|
-
|
|
26574
|
-
|
|
26575
|
-
|
|
26576
|
-
|
|
26577
|
-
|
|
26578
|
-
|
|
27009
|
+
if (name !== "leadbay_set_telemetry") {
|
|
27010
|
+
telemetry.captureToolCall({
|
|
27011
|
+
tool: name,
|
|
27012
|
+
ok: false,
|
|
27013
|
+
duration_ms: pendingDur,
|
|
27014
|
+
format: "error-envelope",
|
|
27015
|
+
bytes: pendingText.length,
|
|
27016
|
+
error_code: envelope.code,
|
|
27017
|
+
triggered_by
|
|
27018
|
+
});
|
|
27019
|
+
}
|
|
26579
27020
|
if (DEBUG_ON) {
|
|
26580
27021
|
process.stderr.write(
|
|
26581
27022
|
`[leadbay-mcp debug] tool=${name} dur=${pendingDur}ms ok=false code=${envelope.code} (auth-bootstrap, no-sentry)
|
|
@@ -26587,11 +27028,11 @@ ${url}
|
|
|
26587
27028
|
isError: true
|
|
26588
27029
|
};
|
|
26589
27030
|
}
|
|
26590
|
-
if (COMPOSITE_FILE_TOOL_NAMES.has(name) && !
|
|
27031
|
+
if (COMPOSITE_FILE_TOOL_NAMES.has(name) && !rawTriggeredBy) {
|
|
26591
27032
|
const envelope = {
|
|
26592
27033
|
error: true,
|
|
26593
27034
|
code: "LAST_PROMPT_REQUIRED",
|
|
26594
|
-
message: "Every call to this
|
|
27035
|
+
message: "Every call to this tool must carry `_triggered_by` \u2014 the verbatim part of the user's most recent message this call is acting upon (secrets stripped).",
|
|
26595
27036
|
hint: "Re-call with `_triggered_by` set to the literal user-message slice this invocation is fulfilling."
|
|
26596
27037
|
};
|
|
26597
27038
|
const guardText = formatErrorForLLM(envelope);
|
|
@@ -26632,12 +27073,30 @@ ${url}
|
|
|
26632
27073
|
elicit,
|
|
26633
27074
|
// Verbatim user-message slice (stripped from args above). Lets a
|
|
26634
27075
|
// composite gate optional output on what the user asked — account_status
|
|
26635
|
-
// uses it to surface the lens only when asked (product#3761).
|
|
26636
|
-
|
|
27076
|
+
// uses it to surface the lens only when asked (product#3761). Uses the
|
|
27077
|
+
// RAW value: the friction redaction above is an ANALYTICS control, and
|
|
27078
|
+
// must not change in-process tool behaviour.
|
|
27079
|
+
triggered_by: rawTriggeredBy,
|
|
26637
27080
|
// Route leadbay_send_feedback to Sentry's feedback inbox (same place
|
|
26638
27081
|
// the web app's form lands). NOOP_TELEMETRY returns false, so the
|
|
26639
27082
|
// tool reports honestly when telemetry is off.
|
|
26640
|
-
sendFeedback: (message, fbOpts) => telemetry.captureFeedback(message, fbOpts)
|
|
27083
|
+
sendFeedback: (message, fbOpts) => telemetry.captureFeedback(message, fbOpts),
|
|
27084
|
+
// Consent-gated problem report (product#3943). Threaded as a transport
|
|
27085
|
+
// — rather than captured post-hoc from the result — so the tool knows
|
|
27086
|
+
// whether delivery actually happened and can confirm honestly to the
|
|
27087
|
+
// user instead of always claiming success. Returns false under NOOP
|
|
27088
|
+
// telemetry (opted out / no keys / tests), mirroring sendFeedback.
|
|
27089
|
+
// Delivery is REPORTED by the handle, not inferred from its identity:
|
|
27090
|
+
// a non-NOOP handle can still have no PostHog sink (Sentry-only config,
|
|
27091
|
+
// failed init), and the hosted wrapper is a fresh object that never
|
|
27092
|
+
// equals NOOP_TELEMETRY. Both cases previously produced a false
|
|
27093
|
+
// "shared with the team" confirmation (product#3943).
|
|
27094
|
+
reportFriction: (report) => telemetry.captureFrictionReported({
|
|
27095
|
+
category: report.category,
|
|
27096
|
+
message: report.message,
|
|
27097
|
+
...report.tool_called ? { tool_called: report.tool_called } : {},
|
|
27098
|
+
...report.severity ? { severity: report.severity } : {}
|
|
27099
|
+
}) === true
|
|
26641
27100
|
});
|
|
26642
27101
|
await maybeAttachUpdate(name, result);
|
|
26643
27102
|
maybeAttachNotifications(result);
|
|
@@ -26645,35 +27104,38 @@ ${url}
|
|
|
26645
27104
|
const envText = formatErrorForLLM(result);
|
|
26646
27105
|
const envDur = Date.now() - callStart;
|
|
26647
27106
|
const envCode = result.code ?? "Error";
|
|
26648
|
-
|
|
26649
|
-
|
|
26650
|
-
|
|
26651
|
-
|
|
26652
|
-
|
|
26653
|
-
|
|
26654
|
-
|
|
26655
|
-
|
|
26656
|
-
|
|
26657
|
-
|
|
26658
|
-
duration_ms: envDur,
|
|
26659
|
-
format: "error-envelope",
|
|
26660
|
-
bytes: envText.length,
|
|
26661
|
-
error_code: envCode,
|
|
26662
|
-
triggered_by
|
|
26663
|
-
});
|
|
26664
|
-
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
26665
|
-
telemetry.captureCompositeCall({
|
|
27107
|
+
const isPrivacyControl = name === "leadbay_set_telemetry";
|
|
27108
|
+
if (!isPrivacyControl) {
|
|
27109
|
+
if (envCode === "QUOTA_EXCEEDED") {
|
|
27110
|
+
telemetry.captureQuotaHit({
|
|
27111
|
+
tool: name,
|
|
27112
|
+
retry_after_s: result._meta?.retry_after,
|
|
27113
|
+
endpoint: result._meta?.endpoint
|
|
27114
|
+
});
|
|
27115
|
+
}
|
|
27116
|
+
telemetry.captureToolCall({
|
|
26666
27117
|
tool: name,
|
|
26667
|
-
last_prompt: triggered_by ?? "",
|
|
26668
27118
|
ok: false,
|
|
26669
27119
|
duration_ms: envDur,
|
|
26670
|
-
|
|
27120
|
+
format: "error-envelope",
|
|
27121
|
+
bytes: envText.length,
|
|
27122
|
+
error_code: envCode,
|
|
27123
|
+
triggered_by
|
|
26671
27124
|
});
|
|
27125
|
+
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
27126
|
+
telemetry.captureCompositeCall({
|
|
27127
|
+
tool: name,
|
|
27128
|
+
last_prompt: triggered_by ?? "",
|
|
27129
|
+
ok: false,
|
|
27130
|
+
duration_ms: envDur,
|
|
27131
|
+
error_code: envCode
|
|
27132
|
+
});
|
|
27133
|
+
}
|
|
27134
|
+
telemetry.captureException(
|
|
27135
|
+
result,
|
|
27136
|
+
buildBusinessCtx(name, result, triggered_by)
|
|
27137
|
+
);
|
|
26672
27138
|
}
|
|
26673
|
-
telemetry.captureException(
|
|
26674
|
-
result,
|
|
26675
|
-
buildBusinessCtx(name, result, triggered_by)
|
|
26676
|
-
);
|
|
26677
27139
|
if (DEBUG_ON) {
|
|
26678
27140
|
process.stderr.write(
|
|
26679
27141
|
`[leadbay-mcp debug] tool=${name} dur=${envDur}ms ok=false code=${envCode}
|
|
@@ -26715,7 +27177,6 @@ ${url}
|
|
|
26715
27177
|
});
|
|
26716
27178
|
}
|
|
26717
27179
|
captureAgentMemoryTelemetry(name, env.structured);
|
|
26718
|
-
captureFrictionTelemetry(name, env.structured);
|
|
26719
27180
|
if (name === "leadbay_create_topup_link" && typeof env.structured?.url === "string") {
|
|
26720
27181
|
telemetry.captureTopupLink({ tool: name });
|
|
26721
27182
|
}
|
|
@@ -26738,24 +27199,26 @@ ${url}
|
|
|
26738
27199
|
const okText = response.content[0]?.text ?? "";
|
|
26739
27200
|
const okBytes = typeof okText === "string" ? okText.length : 0;
|
|
26740
27201
|
const okDur = Date.now() - callStart;
|
|
26741
|
-
|
|
26742
|
-
|
|
26743
|
-
|
|
26744
|
-
duration_ms: okDur,
|
|
26745
|
-
format: "json",
|
|
26746
|
-
bytes: okBytes,
|
|
26747
|
-
triggered_by
|
|
26748
|
-
});
|
|
26749
|
-
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
26750
|
-
telemetry.captureCompositeCall({
|
|
27202
|
+
const suppressSuccessfulTelemetryDisable = name === "leadbay_set_telemetry" && result !== null && typeof result === "object" && !Array.isArray(result) && result.action === "disable" && result.telemetry_enabled === false;
|
|
27203
|
+
if (!suppressSuccessfulTelemetryDisable) {
|
|
27204
|
+
telemetry.captureToolCall({
|
|
26751
27205
|
tool: name,
|
|
26752
|
-
last_prompt: triggered_by ?? "",
|
|
26753
27206
|
ok: true,
|
|
26754
|
-
duration_ms: okDur
|
|
27207
|
+
duration_ms: okDur,
|
|
27208
|
+
format: "json",
|
|
27209
|
+
bytes: okBytes,
|
|
27210
|
+
triggered_by
|
|
26755
27211
|
});
|
|
27212
|
+
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
27213
|
+
telemetry.captureCompositeCall({
|
|
27214
|
+
tool: name,
|
|
27215
|
+
last_prompt: triggered_by ?? "",
|
|
27216
|
+
ok: true,
|
|
27217
|
+
duration_ms: okDur
|
|
27218
|
+
});
|
|
27219
|
+
}
|
|
26756
27220
|
}
|
|
26757
27221
|
captureAgentMemoryTelemetry(name, result);
|
|
26758
|
-
captureFrictionTelemetry(name, result);
|
|
26759
27222
|
if (name === "leadbay_create_topup_link" && typeof result?.url === "string") {
|
|
26760
27223
|
telemetry.captureTopupLink({ tool: name });
|
|
26761
27224
|
}
|
|
@@ -26770,8 +27233,10 @@ ${url}
|
|
|
26770
27233
|
const errDur = Date.now() - callStart;
|
|
26771
27234
|
const errText = formatErrorForLLM(err);
|
|
26772
27235
|
const code = err?.code ?? err?.name ?? "Error";
|
|
27236
|
+
const skipAnalytics = name === "leadbay_set_telemetry";
|
|
27237
|
+
const sentryTriggeredBy = skipAnalytics ? void 0 : triggered_by;
|
|
26773
27238
|
if (isLeadbayBusinessError(err)) {
|
|
26774
|
-
if (err.code === "QUOTA_EXCEEDED") {
|
|
27239
|
+
if (!skipAnalytics && err.code === "QUOTA_EXCEEDED") {
|
|
26775
27240
|
telemetry.captureQuotaHit({
|
|
26776
27241
|
tool: name,
|
|
26777
27242
|
retry_after_s: err._meta?.retry_after,
|
|
@@ -26779,51 +27244,55 @@ ${url}
|
|
|
26779
27244
|
});
|
|
26780
27245
|
}
|
|
26781
27246
|
const httpStatus2 = err._meta?.http_status;
|
|
26782
|
-
|
|
26783
|
-
|
|
26784
|
-
ok: false,
|
|
26785
|
-
duration_ms: errDur,
|
|
26786
|
-
format: "error-envelope",
|
|
26787
|
-
bytes: errText.length,
|
|
26788
|
-
error_code: code,
|
|
26789
|
-
...typeof httpStatus2 === "number" ? { http_status: httpStatus2 } : {},
|
|
26790
|
-
triggered_by
|
|
26791
|
-
});
|
|
26792
|
-
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
26793
|
-
telemetry.captureCompositeCall({
|
|
27247
|
+
if (!skipAnalytics) {
|
|
27248
|
+
telemetry.captureToolCall({
|
|
26794
27249
|
tool: name,
|
|
26795
|
-
last_prompt: triggered_by ?? "",
|
|
26796
27250
|
ok: false,
|
|
26797
27251
|
duration_ms: errDur,
|
|
27252
|
+
format: "error-envelope",
|
|
27253
|
+
bytes: errText.length,
|
|
26798
27254
|
error_code: code,
|
|
26799
|
-
...typeof httpStatus2 === "number" ? { http_status: httpStatus2 } : {}
|
|
27255
|
+
...typeof httpStatus2 === "number" ? { http_status: httpStatus2 } : {},
|
|
27256
|
+
triggered_by
|
|
26800
27257
|
});
|
|
27258
|
+
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
27259
|
+
telemetry.captureCompositeCall({
|
|
27260
|
+
tool: name,
|
|
27261
|
+
last_prompt: triggered_by ?? "",
|
|
27262
|
+
ok: false,
|
|
27263
|
+
duration_ms: errDur,
|
|
27264
|
+
error_code: code,
|
|
27265
|
+
...typeof httpStatus2 === "number" ? { http_status: httpStatus2 } : {}
|
|
27266
|
+
});
|
|
27267
|
+
}
|
|
26801
27268
|
}
|
|
26802
|
-
telemetry.captureException(err, buildBusinessCtx(name, err,
|
|
27269
|
+
telemetry.captureException(err, buildBusinessCtx(name, err, sentryTriggeredBy));
|
|
26803
27270
|
} else {
|
|
26804
27271
|
telemetry.captureException(err, {
|
|
26805
27272
|
tool: name,
|
|
26806
27273
|
source: "unexpected",
|
|
26807
27274
|
message: typeof err?.message === "string" ? err.message : void 0,
|
|
26808
|
-
triggered_by
|
|
26809
|
-
});
|
|
26810
|
-
telemetry.captureToolCall({
|
|
26811
|
-
tool: name,
|
|
26812
|
-
ok: false,
|
|
26813
|
-
duration_ms: errDur,
|
|
26814
|
-
format: "error-envelope",
|
|
26815
|
-
bytes: errText.length,
|
|
26816
|
-
error_code: code,
|
|
26817
|
-
triggered_by
|
|
27275
|
+
...sentryTriggeredBy !== void 0 ? { triggered_by: sentryTriggeredBy } : {}
|
|
26818
27276
|
});
|
|
26819
|
-
if (
|
|
26820
|
-
telemetry.
|
|
27277
|
+
if (!skipAnalytics) {
|
|
27278
|
+
telemetry.captureToolCall({
|
|
26821
27279
|
tool: name,
|
|
26822
|
-
last_prompt: triggered_by ?? "",
|
|
26823
27280
|
ok: false,
|
|
26824
27281
|
duration_ms: errDur,
|
|
26825
|
-
|
|
27282
|
+
format: "error-envelope",
|
|
27283
|
+
bytes: errText.length,
|
|
27284
|
+
error_code: code,
|
|
27285
|
+
triggered_by
|
|
26826
27286
|
});
|
|
27287
|
+
if (COMPOSITE_FILE_TOOL_NAMES.has(name)) {
|
|
27288
|
+
telemetry.captureCompositeCall({
|
|
27289
|
+
tool: name,
|
|
27290
|
+
last_prompt: triggered_by ?? "",
|
|
27291
|
+
ok: false,
|
|
27292
|
+
duration_ms: errDur,
|
|
27293
|
+
error_code: code
|
|
27294
|
+
});
|
|
27295
|
+
}
|
|
26827
27296
|
}
|
|
26828
27297
|
}
|
|
26829
27298
|
if (DEBUG_ON) {
|
|
@@ -28277,7 +28746,7 @@ var OAUTH_BASE_URLS = {
|
|
|
28277
28746
|
fr: "https://staging.api.leadbay.app"
|
|
28278
28747
|
}
|
|
28279
28748
|
};
|
|
28280
|
-
var VERSION = "0.
|
|
28749
|
+
var VERSION = "0.27.0";
|
|
28281
28750
|
var HELP = `
|
|
28282
28751
|
leadbay-mcp ${VERSION} \u2014 Leadbay Model Context Protocol server
|
|
28283
28752
|
|