From GTM Skills
Automates B2B contact enrichment via CLI: find emails, validate contacts, enrich CSVs in batch, and push to outbound platforms like Smartlead and Instantly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gtm-skills:leadmagic-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The LeadMagic CLI provides terminal access to email finding, validation, company
The LeadMagic CLI provides terminal access to email finding, validation, company enrichment, and outbound platform integration. Use it to automate enrichment workflows, batch-process CSV files, and push verified contacts to sending platforms — all without leaving the terminal.
lm find email -f Jane -l Smith -d company.com
Returns a verified work email for the given name and domain. Pay-per-result pricing — only charged when a valid email is found.
lm validate -f contacts.csv -c email
Validates all emails in the specified CSV column. Returns valid/invalid/risky/ unknown status per email. Process 4 validations per credit.
lm enrich -i contacts.csv --batch-size 25
Enriches a CSV with auto-detected columns. Processes in configurable batches for reliability. Adds columns for found emails, verification status, and enrichment metadata.
lm find role -c "Acme Corp" -t "VP Sales"
Finds people with specific titles at a company. Returns name, title, and verified email where available.
lm find profile-search -p linkedin.com/in/janesmith
Fetch full professional profiles from profile URLs. Includes work history, education, and skills data.
lm integrations smartlead connect
lm integrations smartlead campaigns
lm integrations smartlead push --campaign <id>
Connect to Smartlead, Instantly, or EmailBison. List campaigns, push enriched contacts, view stats. All from terminal.
lm find role or lm find email for individual lookupslm enrich -i input.csv for batch processinglm validate -f enriched.csv -c email before sendinglm integrations smartlead push to outbound platformAlways validate after finding. Never push unverified contacts to a sequencer.
# Shell script: enrich and push weekly
#!/bin/bash
lm enrich -i weekly_leads.csv --batch-size 25 -o enriched_$(date +%Y%m%d).csv
lm validate -f enriched_$(date +%Y%m%d).csv -c email
lm integrations smartlead push --campaign main_campaign
Commands produce structured JSON or CSV output. All results include source attribution and confidence indicators. Pipe into other tools or import into spreadsheets.
Before delivering, verify:
Not validating after finding. Always run lm validate before pushing
to a sequence. Found emails can be stale.
Batch size too large. Stick to 25-50 per batch for reliability. Larger batches risk timeouts.
Skipping the verification step. Enrichment finds emails. Validation confirms they are deliverable. Two separate steps for a reason.
Wrong CSV column mapping. Use --batch-size to control throughput.
Check column auto-detection before running full batches.
references/framework-notes.md — CLI patterns, Pat validate-before-push, Eric scale opstemplates/output-template.md — command sequence + verify gate deliverablescripts/check-output.py — local checklist validator for required sections
This skill includes lightweight artifacts the agent can load on demand:references/cli-workflow-patterns.md — find → validate → push pipelines (Patterns A–E)../leadmagic-waterfall/references/waterfall-column-spec.md — Clay alternative for recurring../../tools/smartlead-workflows/references/clay-enrollment-handoff.md — post-CLI sequencer handoff../../outbound/cold-email-copywriting/references/pat-spielmann-outbound-copy.md — verify-before-send (Pat Spielmann)../../../../references/gtm-experts-outbound-index.md — expert router
Use the artifacts when the user asks for an implementation-ready deliverable, a repeatable workflow, or a quality check rather than generic advice.npx claudepluginhub leadmagic/gtm-skills --plugin gtm-skillsProvides API reference, CLI workflows, MCP server setup, enrichment waterfalls, bulk processing, job change detection, and integration patterns for LeadMagic platform.
Research and enrich B2B leads using the Apollo.io API. Search for prospects by role, company, and location, and enrich company and contact data.
B2B lead generation and research assistant. Use when asked to find leads, build a prospect list, research companies, find LinkedIn contacts, do lead generation, create an ICP, B2B prospecting, company research, LinkedIn scraping, find decision-makers, build a sales list, lead scoring, or export leads to CSV.