Leadbay
AI lead discovery, qualification, and outreach prep on your Leadbay account.
Ask AI about Leadbay
Powered by Claude · Grounded in docs
I know everything about Leadbay. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
LeadClaw
OpenClaw plugin that gives your B2B outreach agent superpowers. LeadClaw lets your agent tap into Leadbay’s rich knowledge base of companies, turning outreach activity from senseless spamming into meaningful connections.
Ask your agent for new leads, and it will pull highly qualified companies that score well against your target profile and meet your qualification criteria.
Everything is personalized—nothing to configure. Leadbay runs advanced AI agents on your website and leverages deep B2B sales expertise to optimize how leads are sourced for you.
Tell your agent which leads you want it to prospect, connect your communication channels, and it will source contacts from Leadbay and handle outreach on your behalf. Enjoy the outreach you no longer have to do.
New to Leadbay? Create your account here before installing the plugin.
How Leadbay thinks (mental model for your agent)
- Inbox, not a database. Each day your 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 — some workflows produce a big stream of smaller prospects, others a narrow stream of bigger ones. Pulling more won't produce more; acting on leads does.
- Two scoring layers. Every lead ships with a basic
score(firmographic — already decent, usually correlates with AI). Roughly the top 10 of each batch are also AI-qualified (targeted web research + qualification questions →ai_agent_lead_score). Leads below the top 10 aren't worse — the system is saving resources. The agent can request deeper qualification (leadbay_bulk_qualify_leads) or contact enrichment (leadbay_enrich_titles) on any lead that looks worth it. - Daily rhythm. The agent works best as a daily check-in: pull fresh leads, skim the auto-qualified top, deepen 1-3 promising ones, propose outreach, then log what actually got sent via
leadbay_report_outreach. If your host supports scheduling, set up a daily run.
Install
openclaw plugins install @leadbay/openclaw-leadclaw
Setup
- Set your region:
openclaw config set plugins.entries.leadclaw.region "us" # or "fr" - Start a conversation — the agent will ask for your Leadbay email and password when needed
- The plugin logs you in and discards your credentials (only the session token is kept in memory)
Tools
Authentication
| Tool | Description |
|---|---|
leadbay_login | Log in with your Leadbay email and password |
Read-only (enabled by default)
| Tool | Description |
|---|---|
leadbay_list_lenses | List available lenses (saved search configs) |
leadbay_discover_leads | Get AI-recommended leads from your active lens |
leadbay_get_lead_profile | Full lead profile with AI scores, qualification Q&A, and contacts |
leadbay_get_lead_activities | Activity feed for a lead (notes, enrichments, status changes) |
leadbay_get_taste_profile | Your ideal buyer profile, purchase-intent tags, and AI qualification questions |
leadbay_get_contacts | Get contacts for a lead (with enriched emails/phones if available) |
leadbay_get_quota | Check your enrichment credit balance |
Write actions (must be explicitly enabled)
| Tool | Description |
|---|---|
leadbay_qualify_lead | Trigger AI qualification on a lead (~60s async) |
leadbay_enrich_contacts | Order email/phone enrichment for a contact (~60s async) |
leadbay_add_note | Add a note to a lead (visible to your team) |
leadbay_import_leads | Map a list of company domains to Leadbay leadIds, chainable into leadbay_bulk_qualify_leads. Wraps the CSV-import wizard; mutates user state (creates a CRM-imports row). Suitable for occasional automation, not high-cadence. Admin-only. |
How it works
The plugin automatically uses your active lens (the last lens you used in Leadbay). Just call leadbay_discover_leads and it works — no lens configuration needed.
For lead profiles, leadbay_get_lead_profile bundles three API calls (lead details + AI qualification + contacts) into a single response. If some data isn't available yet, it returns partial results instead of failing.
Example workflows
Discover and research leads:
leadbay_discover_leads → leadbay_get_lead_profile (for interesting leads)
Get contact information:
leadbay_get_quota → leadbay_get_contacts → leadbay_enrich_contacts → (wait ~60s) → leadbay_get_contacts
Qualify leads without AI scores:
leadbay_discover_leads → leadbay_qualify_lead (for unscored leads) → (wait ~60s) → leadbay_get_lead_profile
Configuration
| Key | Required | Description |
|---|---|---|
leadbay.region | Yes | us or fr |
leadbay.baseUrl | No | Override API URL (for staging/dev) |
Requirements
- Node.js 22+
- A Leadbay account
Development
npm install # installs deps + vitest
npm test # runs contract + unit + sanity tests (no network, no secrets)
npm run test:coverage # coverage report via v8
npm run build # emits dist/
Test tiers
- Contract tests (
test/contract.test.ts) — assert that registered tools matchopenclaw.plugin.jsonexactly, schemas are valid, write tools are markedoptional: true. This catches manifest drift at CI. - Unit tests (
test/unit/**) — error-code mapping, caching, tool branches. UsemockHttpfromtest/harness.tsto stubnode:https. No network required. - Live smoke tests (
test/smoke/**) — opt-in. SetLEADBAY_TEST_TOKEN(and optionallyLEADBAY_TEST_BASE_URL) and run:
Without the env var, these tests cleanly skip. Use a dedicated test tenant with a read-only token — smoke only hits read endpoints (LEADBAY_TEST_TOKEN=u.xxx npm run test:smoke/users/me,/lenses, taste profile).
CI recommendation
- Run
npm teston every PR — no secrets needed. - Run
npm run test:smokeon main merges or nightly, with theLEADBAY_TEST_TOKENsecret.
Publishing
Publication-ready checks:
npm run build # emits dist/
npm test # contract + unit must be green
npm publish --access public --dry-run # validate npm package
ClawHub (primary)
clawhub package publish leadbay/leadclaw --dry-run
clawhub package publish leadbay/leadclaw
npm (fallback)
npm publish --access public
The prepublishOnly script wires both build and test into every publish, so a broken diff never ships.
