Agent skill
trade-show-contact-finder
Find decision-makers and relevant contacts at exhibitor companies using the Lensmor API.
Filed under Prospecting and list building and ABM and paid.
From LensmorOfficial/trade-show-skills · 15 skills · 48 · pushed 2026-07-18
What it does when it runs
Find decision-makers and relevant contacts at exhibitor companies using the Lensmor API. \"Who should I contact at this company?\" / \"找联系人\" / \"Entscheidungsträger finden\" / \"担当者を探す\" / \"encontrar responsables de compras\". find contacts, decision maker, key person, find buyers, 找联系人, 找决策人, 谁负责采购, 找负责人 Entscheidungsträger Einkäufer 意思決定者 responsable de compras
Read from the skill and the 2 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.
- Keys and connectors you must supply
- LENSMOR_API_KEY
- Hosts it reaches
- api.lensmor.com
- platform.lensmor.com
- www.lensmor.com
- www.linkedin.com
- Tool permissions it declares
- No
allowed-toolsin the frontmatter. It does act, so it runs under whatever permissions your session already grants. - Actions present in the files
- shell
Install it
View source on GitHub ↗git clone --depth 1 --filter=blob:none --sparse https://github.com/LensmorOfficial/trade-show-skills.git /tmp/trade-show-skills git -C /tmp/trade-show-skills sparse-checkout set "trade-show-contact-finder" mkdir -p ~/.claude/skills/trade-show-contact-finder cp -R "/tmp/trade-show-skills/trade-show-contact-finder/." ~/.claude/skills/trade-show-contact-finder/
Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗
The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.
Before you install: this skill will not complete its job on a bare agent. It needs LENSMOR_API_KEY, which you have to obtain separately.
The skill
Source on GitHub ↗Reproduced in full from LensmorOfficial/trade-show-skills/blob/e47642be2d94b5ccba2118b623d60d40424f5e8b/trade-show-contact-finder/SKILL.md, which is licensed MIT (repository). 782 words, 14 headings.
Lensmor Contact Finder
Search Lensmor contact records by company and optional role or person name, then prioritize the returned contacts without inventing titles, seniority, or contact details.
Contact-Data Boundary
The search response includes an email field, but locked contacts return email: null with contactUnlockStatus: "locked". Already unlocked contacts may return an email. Searching does not unlock email or phone data.
Do not call an unlock endpoint from this skill. Email and phone unlocking are separate paid workflows that require explicit user approval.
Workflow
Step 1: API Key Check
[ -n "$LENSMOR_API_KEY" ] && echo "ok" || echo "missing"
If missing, stop and direct the user to obtain a Lensmor API key. Never print its value.
Step 2: Collect Inputs
Required:
company_name— full or partial company name, 1–200 characters
Optional:
role— job-title or function filterperson_name— narrow the company-scoped search to a named personpage,pageSize— pagination; max page size 100
Use a broad role term such as marketing, operations, or procurement when a precise title returns no result.
Step 3: Call the API
Endpoint: GET https://platform.lensmor.com/external/contacts/search
Example query:
company_name=Siemens%20Healthineers&role=marketing&page=1&pageSize=20
Step 4: Interpret the Response
The paginated response includes items, total, page, pageSize, totalPages, and hasMore.
Contact fields include:
| Field | Meaning |
|---|---|
fullName, title, department, seniorityLevel | Returned professional identity fields |
companyName | Company attached to the record; verify it matches the query |
linkedinUrl | Public LinkedIn profile when available |
sourceType | Record provenance label |
email, contactUnlockStatus | Email value and lock state |
phone, phoneUnlockStatus | Phone value and unlock-processing state |
linkedinActivity, linkedinActivityStatus | Optional activity evidence |
eventCount | Optional event-association count |
Seniority values are not guaranteed to use a fixed title-case vocabulary. Preserve returned values such as director, manager, senior, or owner. Do not map them to Executive/Director/Manager tiers without evidence.
Step 5: Prioritize Carefully
Prioritize using this evidence order:
- Exact company match
- Role or department match to the user's requested outreach function
- Title relevance to the requested outreach theme
- Returned seniority value when present
- LinkedIn availability and activity evidence
This priority is an operational sort created by the skill, not a Lensmor-provided rank. Say so when reordering the API results.
It measures outreach relevance, not verified decision authority. Never call someone a decision-maker, budget holder, champion, or primary authority based only on title, department, or seniority.
Priority notes must use factual wording such as Exact company match; marketing department and manager title matched the requested filter. Do not say buyer scope, decision involvement, or equivalent authority language.
Step 6: Format the Output
## Contacts at [Company]
Found [total] contacts. Showing [item count] on page [page] of [totalPages].
Filters: [role/person_name or none]
| Priority | Name | Title | Department | Seniority | Contact state | LinkedIn |
|---:|---|---|---|---|---|---|
| 1 | [fullName] | [title] | [department] | [seniorityLevel] | Email [locked/available] | [LinkedIn](url) |
### Priority Notes
- **[Contact]**: [company match + role/title evidence]
Email search status: [locked contacts remain null / already unlocked email available]. No unlock was performed.
Error Handling
| Condition | Response behavior |
|---|---|
| 400 | company_name is missing or invalid |
| 401 | API key invalid or expired |
| 429 | Wait for the rate-limit window and retry |
total: 0 | Broaden the role filter or verify the company name |
Follow-up Routing
- Draft pre-show outreach →
booth-invitation-writer - Generate LinkedIn-specific copy →
trade-show-linkedin-templates - Find more event companies →
trade-show-exhibitor-search - Rank event accounts when recommendation evidence exists →
trade-show-lead-recommender
Output Rules
- Never output
LENSMOR_API_KEYor raw authorization headers. - Never invent contacts, titles, departments, or seniority.
- Do not claim email is unavailable universally; report the returned email and lock state accurately.
- Do not expose an unlocked email unless the user explicitly asks for contact details in the current workflow.
- Do not initiate email or phone unlocks.
- Preserve varied seniority values instead of forcing them into a fixed hierarchy.
- If LinkedIn is null, say it is unavailable in the returned record.
- For multiple companies, keep each company in a separate labeled section.
- Format public URLs as Markdown links.
- Describe priority as contact relevance; do not infer purchasing power, budget ownership, or decision authority.
- When suggesting broader role filters, describe the goal as finding cross-functional contacts, never decision involvement or purchasing authority.
Contact data is sourced from the Lensmor platform. For exhibitor discovery and pre-show outreach, see Lensmor.
Files bundled with it
These load only when the skill asks for them, so they cost nothing until it runs.
Other skills for the same job
Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.
- show-and-tell-video-slate by ericosiu · 3,449
- geo-query-finder by OpenClaudia · 664
- wasted-spend-finder by thatrebeccarae · 119
- won-deal-icp-finder by LaGrowthMachine · 34
- pain-finder by zime-ai · 14
- contact-qualification-framework by medscout-gtm · 6
- whitespace-finder by varunk130 · 5
- fivos-contact-enrichment by fivosaresti · 1
Need help setting it up?
This page tells you what trade-show-contact-finder does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.
Book a call →The directory stays free. There is nothing gated behind this.