@leadbay/mcp 0.25.0 → 0.28.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 +55 -0
- package/dist/bin.js +698 -152
- package/dist/http-server.js +705 -151
- package/dist/installer-electron.js +1 -1
- package/dist/installer-gui.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# Changelog — @leadbay/mcp
|
|
2
2
|
|
|
3
|
+
## 0.28.0 — 2026-07-31
|
|
4
|
+
|
|
5
|
+
Add **`leadbay_top_accounts_to_activate`** — a prompt that builds a ranked
|
|
6
|
+
account-**conquest** plan from Leadbay data: the accounts worth activating,
|
|
7
|
+
ranked by the strongest Leadbay signal (not by money — Leadbay holds no
|
|
8
|
+
invoicing data), each carrying one of six strategic motifs (SAUVETAGE / PLAN DE
|
|
9
|
+
COMPTE / MONTÉE EN GAMME / RÉVEIL / CONQUÊTE / SUIVI) that drives its phone
|
|
10
|
+
pitch and three-step checklist (product#3863). Renders via `leadbay_artifact_kit` when the user
|
|
11
|
+
accepts the offered deck; the chat table stands alone otherwise.
|
|
12
|
+
|
|
13
|
+
**Leadbay-only by design.** Leadbay holds no invoicing data, so the plan ranks
|
|
14
|
+
by the strongest Leadbay signal and renders revenue-realized, per-family revenue
|
|
15
|
+
and cash-to-capture as **OMITTED — never estimated**, naming the extract columns
|
|
16
|
+
a cash-ranked version would require. An ERP-ingest mode was explored and
|
|
17
|
+
deliberately cut before release: it depended on inputs the platform cannot
|
|
18
|
+
supply (headcount for off-lens imported leads) and permissions it cannot assume
|
|
19
|
+
(`leadbay_import_leads` is admin-only). It is tracked separately.
|
|
20
|
+
|
|
21
|
+
**New `gates/data-provenance` snippet.** The deliverable mixes Leadbay
|
|
22
|
+
responses, public-registry counts and modelled assumptions in
|
|
23
|
+
front of a paying client, so every emitted number carries a provenance class
|
|
24
|
+
(`[ERP]` / `[LB]` / `[SIRENE]` / `[HYP]`), taint propagates through derived
|
|
25
|
+
figures, and a PROVENANCE LEDGER prints **before** the plan with un-sourceable
|
|
26
|
+
fields shown as OMITTED instead of quietly filled. The existing
|
|
27
|
+
`iron-laws/no-fabrication` covers identifiers only, so a derived quantity such
|
|
28
|
+
as a revenue figure could previously be invented without violating it.
|
|
29
|
+
|
|
30
|
+
Also adds `heuristics/account-activation-motifs` and `rendering/activation-card`,
|
|
31
|
+
plus WORKFLOWS entries 46–47 — the conquest plan and its fabrication guard.
|
|
32
|
+
|
|
33
|
+
The six motifs are SAUVETAGE / PLAN DE COMPTE / MONTÉE EN GAMME / RÉVEIL /
|
|
34
|
+
CONQUÊTE / **SUIVI**. The last is the honest label for an active known-pipeline
|
|
35
|
+
account when no order history is available: the four Pilotage motifs are
|
|
36
|
+
purchase-behaviour reads and CONQUÊTE means "not in the pipeline", so without
|
|
37
|
+
invoicing data an active Monitor row matches none of them. ERP order data would
|
|
38
|
+
split those rows into the Pilotage four.
|
|
39
|
+
|
|
40
|
+
Fixes a stale `server.json` npx pin that tracked the `0.25` line while the
|
|
41
|
+
package was on `0.26`, and bumps the `.claude-plugin` bundle off `@leadbay/mcp@0.13`,
|
|
42
|
+
which predated `leadbay_get_qualification_questions`,
|
|
43
|
+
`leadbay_scan_portfolio_signals` and `leadbay_artifact_kit`.
|
|
44
|
+
|
|
45
|
+
## 0.27.0 — 2026-07-31
|
|
46
|
+
|
|
47
|
+
Consent-gated friction reporting (#171) — see that PR for detail. Released from
|
|
48
|
+
`main`; this entry is a placeholder so the version line is unbroken.
|
|
49
|
+
|
|
50
|
+
## 0.26.0 — 2026-07-27 (tagged, never published)
|
|
51
|
+
|
|
52
|
+
Makes **`leadbay_build_campaign`** autonomous: runs to a target `count` with no
|
|
53
|
+
confirm gates, and accepts explicit `job_titles` for buyer enrichment (#169).
|
|
54
|
+
The version was bumped and `mcp-v0.26.0` tagged, but the npm publish did not
|
|
55
|
+
complete — npm's latest remained `0.25.0`. Documented here retroactively;
|
|
56
|
+
`0.27.0` supersedes it and carries these changes forward.
|
|
57
|
+
|
|
3
58
|
## 0.25.0 — 2026-07-13
|
|
4
59
|
|
|
5
60
|
Add `leadbay_set_telemetry` — an in-product control to enable, disable, or check
|