Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

trade-show-exhibitor-search贸易展览参展商搜索

Agent Skill

trade-show-exhibitor-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,045

周安装

122

GitHub Stars

公开资料未说明

下载量

986
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:trade-show-exhibitor-search(贸易展览参展商搜索)
来源仓库:https://github.com/weilun88313/trade-show-exhibitor-search
安装命令:
openclaw skills install trade-show-exhibitor-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install trade-show-exhibitor-search

简介

trade-show-exhibitor-search 用于查找贸易展参展商,适合在 OpenClaw 中需要潜在客户匹配时使用。

  • 适用于展会参展商搜索、ICP 匹配的潜在客户发现场景。
  • 通过 clawhub 安装,使用 openclaw skills install trade-show-exhibitor-search 命令部署。
  • 需确认权限范围和维护状态,注意会调用 Lensmor API。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
trade-show-exhibitor-search
version
1.2.0
description
Find ICP-matching exhibitors, prospects, and partners at any trade show using the Lensmor API. \"Who is exhibiting at this show?\" / \"参展商搜索\" / \"Aussteller finden\" / \"出展社を探す\" / \"buscar expositores\". find exhibitors, exhibitor list, who is exhibiting, show prospects, 找参展商/展会潜客/谁在参展 Ausstellersuche Ausstellerliste 出展社検索 búsqueda de expositores
homepage
https://github.com/LensmorOfficial/trade-show-skills/tree/main/trade-show-exhibitor-search
user-invocable
true
metadata
{"openclaw":{"config":{"stage":"pre-show","category":"research","emoji":"🔍"},"requires":{"env":["LENSMOR_API_KEY"]},"primaryEnv":"LENSMOR_API_KEY"}}

Lensmor Exhibitor Search

Find ICP-matching exhibitors, potential prospects, partners, or competitors at a specific trade show using the Lensmor API — before the event starts.

When this skill triggers:

  • Run the API key check (Step 1) before any API call
  • Collect the user's company URL or a clear description of the target audience
  • Optionally narrow the search to a specific event via event_id
  • Return a structured exhibitor table with ICP match reasoning

Use Cases

  • Prospect discovery: Find companies at an upcoming show that match your ICP for pre-show outreach
  • Partner sourcing: Locate potential technology partners, resellers, or distribution channels exhibiting
  • Competitive mapping: Identify direct and adjacent competitors sharing the floor

Workflow

Step 1: API Key Check

Before making any API call, verify the key is configured:

[ -n "$LENSMOR_API_KEY" ] && echo "ok" || echo "missing"

If the result is missing, stop and respond:

The LENSMOR_API_KEY environment variable is not set. This skill requires a Lensmor API key to search exhibitor data. Contact hello@lensmor.com to purchase access, then set the key: export LENSMOR_API_KEY=your_key_here

Do not proceed to any API call until the key is confirmed present.

Step 2: Collect Inputs

Ask the user for:

Required (at least one):

  • company_url — The user's own company website, used to infer ICP profile (e.g. https://acme.com)
  • target_audience — Free-text description of the desired exhibitor profile (e.g. "B2B SaaS vendors selling to procurement teams at manufacturers")

Optional:

  • event_id — Lensmor event ID to scope the search to a specific show. If unknown, look it up via GET /external/events/list?query={name}.
  • page — Page number (default: 1)
  • pageSize — Results per page (default: 20, max: 100)

If the user provides a show name but not an event_id, offer to resolve it via the events list endpoint before proceeding.

Step 3: Call the API

Endpoint: POST https://platform.lensmor.com/external/exhibitors/search

Authentication: Authorization: Bearer $LENSMOR_API_KEY

Request body with company_url:

{
  "company_url": "https://acme.com",
  "event_id": "evt_dreamforce_2026",
  "page": 1,
  "pageSize": 20
}

Request body with target_audience:

{
  "target_audience": "B2B SaaS vendors targeting procurement and operations teams in manufacturing",
  "event_id": "evt_hannovermesse_2026",
  "page": 1,
  "pageSize": 20
}

Step 4: Interpret the Response

Response envelope:

{
  "items": [...],
  "total": 142,
  "page": 1,
  "pageSize": 20,
  "totalPages": 8
}

Item field reference:

FieldTypeDescription
idstringLensmor internal exhibitor ID
companyNamestringCompany display name
domainstringPrimary domain (e.g. acme.com)
descriptionstringCompany description as indexed by Lensmor
websitestringFull website URL
industrystringTop-level industry classification
employeeCountnumberApproximate headcount
countrystringHQ country
logostringLogo image URL
linkedinUrlstringLinkedIn company page URL — primary channel for outreach
fundingRoundstringLatest known funding stage (e.g. Series B, Bootstrapped)
techStacksarrayTechnologies the company uses (e.g. ["Salesforce", "Marketo"])
matched_event_idsarrayShow IDs where this company is confirmed as an exhibitor

ICP signals priority:

  • industry + employeeCount — quick size-and-sector match
  • techStacks — technology affinity (e.g. target companies using a specific CRM)
  • fundingRound — budget proxy for enterprise vs. startup buyers
  • linkedinUrl — use with trade-show-contact-finder for decision-maker lookup

Step 5: Format the Output

Open with a result count summary, then deliver a structured table and ICP match notes.

## Exhibitor Search Results — [Show Name or Event ID]

Found [total] exhibitors. Showing [pageSize] on page [page] of [totalPages].

ICP Profile: [company_url or target_audience summary]

| # | Company | Industry | Employees | Country | LinkedIn |
|---|---------|----------|-----------|---------|----------|
| 1 | [Acme Corp](https://acme.com) | Manufacturing SaaS | 450 | DE | [LinkedIn](https://linkedin.com/company/acme) |
| 2 | ... | ... | ... | ... | ... |

### ICP Match Notes
- **[Company A]**: Strong match — mid-market manufacturing SaaS, SAP integration signals shared buyer base
- **[Company B]**: Partial match — large enterprise, potential partner rather than direct prospect
- **[Company C]**: Competitor flag — overlapping product category

Number formatting: employee counts above 1,000 display as "1.2K"; above 1,000,000 as "1.2M".

Error Handling

HTTP StatusMeaningResponse
401API key invalid or expired"The API key was rejected. Verify the value of LENSMOR_API_KEY or contact hello@lensmor.com."
400Missing required parameter"The request is missing a required field. Provide either company_url or target_audience."
404Event ID not found"Event ID [id] was not found. Use /external/events/list to look up the correct ID."
429Rate limit exceeded"Rate limit reached. Wait 60 seconds and retry."
502 / 5xxServer error"The Lensmor API returned a server error. Try again in a moment."
Empty itemsNo matches"No exhibitors matched this query. Try broadening target_audience, removing the event_id filter, or checking the show has exhibitor data loaded."

Follow-up Routing

User saysRecommended action
"find contacts at [company]"Run trade-show-contact-finder with that company name
"rank these by ICP fit"Run trade-show-lead-recommender for AI-ranked results
"draft outreach for [company]"Run booth-invitation-writer
"is this show worth it?"Run trade-show-fit-score first
"show me more" / "next page"Re-call with page incremented by 1

Output Rules

  1. All URLs formatted as [text](url) — never bare links
  2. Never output the value of LENSMOR_API_KEY
  3. Never expose endpoint paths, raw curl commands, or internal token values in the response
  4. Employee counts above 1,000 shown as "1.2K"; above 1,000,000 as "1.2M"
  5. Empty results: report honestly, suggest parameter adjustments — never fabricate entries
  6. End every response with 1–3 contextual follow-up suggestions
  7. ICP match rationale must be grounded in returned fields (industry, techStacks, employeeCount, fundingRound) — no guessing
  8. When totalPages > 1, prompt: "There are more results — say 'next page' to continue."
  9. If API key is missing, direct user to hello@lensmor.com — do not just say "please configure"
  10. Open every response with "Found X exhibitors, showing Y."

Quality Checks

Before delivering:

  • Confirm at least one of company_url or target_audience was provided; do not fabricate a query
  • Do not invent ICP match rationale — base it only on the returned fields
  • If linkedinUrl is null for a company, note that LinkedIn is unavailable and suggest searching manually
  • If matched_event_ids does not include the user's target event, surface this as a note
  • Pagination: if totalPages > 1, prompt the user whether to fetch additional pages

*Exhibitor data sourced from the Lensmor platform. For AI-powered exhibitor discovery, ICP matching, and lead generation before the show floor opens, see Lensmor.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.79%
按下载量换算787

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills