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

lensmor-recommendations朗斯摩尔建议

Agent Skill

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

总安装

3,878

周安装

160

GitHub Stars

公开资料未说明

下载量

1,267
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lensmor-recommendations

简介

lensmor-recommendations 基于 AI 对参展商进行智能排序与推荐。

  • 适用于展会营销中识别高价值客户并制定针对性推广策略。
  • 通过 clawhub 安装并使用 openclaw skills install lensmor-recommendations 命令部署。
  • 应结合业务上下文判断推荐结果的适用性,避免盲目跟进。
  • 建议查阅原始资料了解评分逻辑与更新机制。

SKILL.md

name
lensmor-recommendations
version
1.2.0
description
Get AI-ranked exhibitors matching your ICP — shortlist the top accounts worth outreach at any show. \"Who should we target at this show?\" / \"推荐参展商\" / \"Ausstellerempfehlungen für mein ICP\" / \"おすすめ出展社を教えて\" / \"recomienda expositores por ICP\". ICP match, recommended exhibitors, shortlist, top accounts, ICP匹配/推荐参展商/找目标客户/哪些公司值得拜访 Ausstellerempfehlung 出展社推薦 recomendaciones ICP
homepage
https://github.com/LensmorOfficial/trade-show-skills/tree/main/lensmor-recommendations
user-invocable
true
metadata
{"openclaw":{"config":{"stage":"pre-show","category":"research","emoji":"⭐"},"requires":{"env":["LENSMOR_API_KEY"]},"primaryEnv":"LENSMOR_API_KEY"}}

Lensmor Recommendations

Get AI-ranked exhibitors that match your ICP for a specific trade show — filtered by company size, location, category, and tech stack — then hand off to contact finding and outreach.

When this skill triggers:

  • Run the API key check (Step 1) before any API call
  • Confirm the event_id for the target show
  • Apply relevant filters based on the user's ICP (employee size, location, category)
  • Return a ranked, prioritized list of matching exhibitors with ICP match rationale
  • Hand off to lensmor-contact-finder for decision-maker lookup

Use Cases

  • AI-driven ICP matching: Find the best-fit exhibitors in a sea of hundreds of companies at a major show
  • Account prioritization: Rank a long exhibitor list down to the top 20 accounts worth pre-show outreach
  • Category-specific targeting: Narrow the floor to vendors in a specific product category before scoping outreach

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 fetch exhibitor recommendations. 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: Confirm the Event ID

The recommendations endpoint requires a Lensmor event_id. If the user only has a show name, look it up first:

Endpoint: GET https://platform.lensmor.com/external/events/list?query={show+name}

Authentication: Authorization: Bearer $LENSMOR_API_KEY

Use the id from the matching event in the response. Confirm the correct show, year, and edition before proceeding.

Step 3: Set Filter Parameters

Discuss the user's ICP to determine which filters to apply. Use only filters that add precision without over-narrowing results.

Available filter parameters:

ParameterTypeDescriptionExample
event_idstringRequired. Lensmor event IDevt_dreamforce_2026
locationstringFilter by country or regionUnited States, Germany, APAC
searchQuerystringFree-text search across company name and descriptionprocurement automation
exhibitorName[]arrayExact company name match (account-based lists)["Acme Corp", "OperaOps"]
category[]arrayProduct/industry category filter["Manufacturing SaaS", "Procurement Tech"]
employeesMinnumberMinimum employee count100
employeesMaxnumberMaximum employee count1000
pagenumberPage number (default: 1)1
pageSizenumberResults per page (default: 20, max: 100)50

Filter selection guidance:

  • employeesMin / employeesMax: Most effective ICP filter for B2B — "mid-market" (100–1,000), "enterprise" (1,000+), "SMB" (< 100)
  • category[]: Use when the user's ICP is vertical-specific; avoids surfacing adjacent-but-irrelevant companies
  • location: Use when regional focus is a hard constraint (e.g. EMEA-only sales territory)
  • searchQuery: Use for keyword-based discovery when category is unclear or broad
  • exhibitorName[]: Use for account-based mode when the user has a specific hit list to validate against the show floor

Step 4: Call the API

Endpoint: GET https://platform.lensmor.com/external/profile-matching/recommendations/exhibitors

Authentication: Authorization: Bearer $LENSMOR_API_KEY

Query parameter combinations:

Use caseParameters
Basic (event only)event_id=evt_dreamforce_2026&page=1&pageSize=20
Mid-market + categoryevent_id=evt_dreamforce_2026&employeesMin=100&employeesMax=1000&category[]=Procurement+Tech
Location + keywordevent_id=evt_hannovermesse_2026&location=Germany&searchQuery=industrial+automation
Account-basedevent_id=evt_dreamforce_2026&exhibitorName[]=OperaOps&exhibitorName[]=Spendly

Step 5: Interpret the Response

Response envelope:

{
  "items": [...],
  "total": 84,
  "page": 1,
  "pageSize": 20,
  "totalPages": 5
}

Item field reference:

FieldTypeDescription
idstringLensmor internal exhibitor ID
companyNamestringCompany display name
descriptionstringCompany description
logostringLogo image URL
websitestringCompany website URL
countrystringHQ country
industrystringTop-level industry classification
categoriesarrayProduct/service categories (more granular than industry)
employeeCountnumberApproximate headcount
fundingRoundstringLatest known funding stage
techStacksarrayTechnologies the company uses

ICP evaluation using response fields:

  • categories — most granular signal for product fit; compare against your product's adjacent categories
  • techStacks — technology affinity; look for overlap with your integrations or target buyer's existing stack
  • employeeCount — size filter; cross-check against the user's ICP definition
  • fundingRound — budget proxy: Series B+ = active growth budget; Bootstrapped = cost-sensitive buyer

Step 6: Format the Output

Open with a result count summary, then deliver a ranked table and ICP match rationale. Results are AI-ranked — present in returned order.

## AI Exhibitor Recommendations — [Show Name]

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

Event: [event_id] | Filters applied: [list active filters]

| Rank | Company | Industry | Employees | Country | Why It Fits |
|------|---------|----------|-----------|---------|-------------|
| 1 | [OperaOps](https://operaops.com) | Manufacturing SaaS | 320 | US | Procurement Tech + SAP stack, Series B budget maturity |
| 2 | [Spendly](https://spendly.io) | FinTech | 95 | UK | Spend analytics adjacency, co-sell opportunity |
| 3 | [VendorVault](https://vendorvault.com) | GRC | 210 | US | Vendor risk / procurement adjacency, longer sales cycle |

### ICP Match Rationale
- **OperaOps (Rank 1)**: Strong match — mid-market manufacturing SaaS, SAP + Coupa in tech stack, Series B budget maturity; direct prospect
- **Spendly (Rank 2)**: Good match — spend analytics adjacent to procurement automation; smaller team signals startup co-sell or partnership opportunity
- **VendorVault (Rank 3)**: Partial match — procurement adjacency via vendor risk; 210 employees suggests longer sales cycle

**Suggested next step**: Run `lensmor-contact-finder` on the top-ranked companies to find decision-makers.

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 LENSMOR_API_KEY or contact hello@lensmor.com."
404Event ID not found"Event ID [id] was not found. Use the events list endpoint 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."
total: 0No matches"No exhibitors matched these filters. Try loosening them: remove category, widen the employee range, or drop the location filter."

Follow-up Routing

User saysRecommended action
"find contacts at [company]"Run lensmor-contact-finder
"is this show worth it first?"Run lensmor-event-fit-score before recommendations
"search by our company profile"Run lensmor-exhibitor-search with company_url
"show me more" / "next page"Re-call with page incremented by 1
"draft outreach for these companies"Run booth-invitation-writer

Complete Pre-Show Workflow

  1. lensmor-event-fit-score (optional) — confirm the event is worth investing in
  2. lensmor-recommendations (this skill) — AI-ranked ICP exhibitors at a specific event
  3. lensmor-contact-finder — decision-makers at each matched company
  4. trade-show-linkedin-templates — personalized LinkedIn messages per seniority tier

Relationship to lensmor-exhibitor-search

SkillInputBest For
lensmor-recommendationsevent_id + optional filtersAI-driven ICP ranking for a specific event
lensmor-exhibitor-searchcompany_url or target_audienceProfile-based search across all events or a specific event

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 loosening filters — never fabricate companies
  6. End every response with 1–3 contextual follow-up suggestions
  7. ICP match rationale must be grounded in returned fields (categories, 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 event_id resolves to the correct show and edition
  • Do not fabricate ICP match rationale — base all reasoning on returned fields
  • If total: 0, suggest loosening filters before reporting no results
  • Results are AI-ranked; present in returned order unless user asks for a re-sort
  • fundingRound may be stale — treat it as a proxy, not a current verified fact

*Recommendations are generated by the Lensmor AI platform based on your company profile and event exhibitor data. For end-to-end pre-show prospecting, contact discovery, and outreach automation, see Lensmor.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.44%
按下载量换算892

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills