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

exhibitor-show-history参展商展会历史

Agent Skill

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

总安装

3,345

周安装

138

GitHub Stars

公开资料未说明

下载量

1,093
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install exhibitor-show-history

简介

利用 Lensmor API 查询公司参与过的全部贸易展会。

  • 适合竞争情报收集、客户画像构建或展会路线规划时使用。
  • 需在 OpenClaw 中通过 clawhub 安装,输入公司名称后检索历史记录。
  • 建议评估是否涉及商业数据接口访问权限与隐私合规边界。
  • 适用于 B2B 市场分析与潜在客户行为研究场景。exhibitor-show-history 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
exhibitor-show-history
version
1.0.0
description
Find every trade show a company has exhibited at using the Lensmor API — for competitive intel, account research, or show circuit mapping. \"Which shows has this company exhibited at?\" / \"这家公司参加过哪些展会\" / \"Auf welchen Messen war dieses Unternehmen?\" / \"この会社はどの展示会に出展した?\" / \"¿En qué ferias participó esta empresa?\". company show history, exhibitor history, competitor shows, 参展历史/展会记录/竞品展会 Messehistorie Messepräsenz 出展履歴 historial ferial
homepage
https://github.com/LensmorOfficial/trade-show-skills/tree/main/exhibitor-show-history
user-invocable
true
metadata
{"openclaw":{"config":{"stage":"pre-show","category":"research","emoji":"🗂️"},"requires":{"env":["LENSMOR_API_KEY"]},"primaryEnv":"LENSMOR_API_KEY"}}

Exhibitor Show History

Given a company name or website, look up every trade show they've exhibited at — so you can map their show circuit, plan competitive counter-programming, or time your outreach around their next event.

When this skill triggers:

  • Run the API key check (Step 1) before any API call
  • Accept a company name, domain, or URL as the primary identifier
  • Return a dated, sortable list of trade shows with booth and location context
  • Hand off to trade-show-fit-score or trade-show-lead-recommender for next steps

Use Cases

  • Competitive mapping: Find which shows your competitors are investing in year over year
  • Account intelligence: Know when a target prospect will be on the show floor so you can plan pre-show outreach
  • Show circuit analysis: Identify which events a segment of companies repeatedly attends (cluster analysis)
  • Partnership sourcing: Find potential partners sharing your show circuit

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 look up exhibitor show history. 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

Required (at least one):

  • company_url — the company's website (e.g. https://acme.com). Preferred over name when available — more precise.
  • company_name — full or partial company name (e.g. Siemens, OperaOps)

Optional:

  • year — filter to a specific year (e.g. 2025). Omit to return all available history.
  • page — page number (default: 1)
  • pageSize — results per page (default: 20, max: 100)

If the user provides a company but it matches multiple entities (e.g. a common name), surface the top matches and ask for confirmation before returning history.

Step 3: Call the API

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

Authentication: Authorization: Bearer $LENSMOR_API_KEY

Request body with company_url:

{
  "company_url": "https://siemens.com",
  "page": 1,
  "pageSize": 20
}

Request body with company_name and year filter:

{
  "company_name": "Siemens",
  "year": 2025,
  "page": 1,
  "pageSize": 20
}

Step 4: Interpret the Response

Response envelope:

{
  "company": {
    "name": "Siemens AG",
    "domain": "siemens.com",
    "industry": "Industrial Automation",
    "employeeCount": 320000,
    "linkedinUrl": "https://www.linkedin.com/company/siemens"
  },
  "items": [
    {
      "id": "evt_hannovermesse_2025",
      "name": "Hannover Messe 2025",
      "dates": "March 31 – April 4, 2025",
      "location": "Hannover, Germany",
      "industry": "Industrial Automation",
      "website": "https://www.hannovermesse.de",
      "boothInfo": "Hall 9, Stand A12",
      "year": 2025
    }
  ],
  "total": 47,
  "page": 1,
  "pageSize": 20,
  "totalPages": 3
}

Field reference:

FieldTypeDescription
company.namestringResolved company display name
company.domainstringPrimary domain
company.industrystringTop-level industry classification
company.employeeCountnumberApproximate headcount
company.linkedinUrlstringLinkedIn company page — for further research
items[].idstringLensmor event ID — use with trade-show-fit-score
items[].namestringOfficial show name
items[].datesstringShow date range
items[].locationstringCity and country
items[].industrystringPrimary industry theme of the show
items[].websitestringOfficial show website
items[].boothInfostringHall and stand number, if available
items[].yearnumberYear of participation

Step 5: Format the Output

Open with a company summary card, then a chronological show history table.

## Show History — [Company Name]

**Company**: [Name] ([domain](https://domain.com)) | [Industry] | [Employee count] employees
**LinkedIn**: [LinkedIn](linkedinUrl)
**Total shows found**: [total] across all available history

---

| Year | Show | Dates | Location | Booth | Industry |
|------|------|-------|----------|-------|----------|
| 2025 | [Hannover Messe 2025](https://hannovermesse.de) | Mar 31–Apr 4 | Hannover, DE | Hall 9, A12 | Industrial Automation |
| 2025 | [SPS 2025](https://sps.mesago.com) | Nov 18–20 | Nuremberg, DE | — | Automation |
| 2024 | [Hannover Messe 2024](https://hannovermesse.de) | Apr 22–26 | Hannover, DE | Hall 9, B07 | Industrial Automation |

_(Showing [pageSize] of [total] shows. Page [page] of [totalPages].)_

### Patterns
- **Show frequency**: [recurring shows, e.g. "Hannover Messe every year since 2019"]
- **Primary regions**: [inferred from locations, e.g. "DACH-focused, occasional NA shows"]
- **Industry focus**: [inferred from show themes, e.g. "Industrial automation + smart manufacturing"]

If boothInfo is null, show — do not fabricate a booth number.

Sort order: most recent year first within each year, alphabetical by show name.

Error Handling

HTTP StatusMeaningResponse
401API key invalid or expired"The API key was rejected. Verify LENSMOR_API_KEY or contact hello@lensmor.com."
400Missing required parameter"Provide either company_url or company_name to look up show history."
404Company not found"No company matching [input] was found in the Lensmor database. Try a different spelling or use the full domain URL."
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 history"No show history found for [company]. The company may not be in Lensmor's exhibitor database, or may not have exhibited at indexed shows yet."

Follow-up Routing

OutcomeRecommended next action
User wants to exhibit at one of the showsRun trade-show-fit-score with the event ID from the results
User wants to find contacts at this companyRun trade-show-contact-finder with the company name
User wants to find other companies on the same show circuitRun trade-show-exhibitor-search with those event IDs
User wants to plan outreach before the next showRun booth-invitation-writer or trade-show-contact-finder
Results show a pattern worth acting onRun trade-show-lead-recommender to find more companies in the same circuit

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 and suggest alternative inputs — never fabricate show history
  6. End every response with 1–3 contextual follow-up suggestions
  7. Sort results most recent first; summarize repeating shows as frequency patterns
  8. When totalPages > 1, prompt: "There are more shows in history — say 'next page' to continue."
  9. If API key is missing, direct user to hello@lensmor.com — do not just say "please configure"
  10. If boothInfo is null, show in the table — do not infer or fabricate booth numbers

Quality Checks

Before delivering:

  • Confirm the company identity from company.name and company.domain in the response — surface ambiguity if the resolved company does not match the user's intent
  • Do not infer show frequency patterns unless at least 2 data points confirm it
  • If only company_name was provided and the name is ambiguous (e.g. "Samsung"), surface the matched company before displaying history
  • If year filter is applied, note it explicitly in the output header so the user knows results are scoped
  • Pagination: if totalPages > 1, prompt the user whether to fetch additional pages

*Show history and exhibitor footprints sourced from the Lensmor platform. For pre-show lead discovery, ICP matching, and competitive intelligence at trade shows, see Lensmor.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.9%
按下载量换算1,004

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills