competitor-show-tracker

competitor-show-tracker is a skill for Claude Code from LensmorOfficial/trade-show-skills. It costs 114 tokens per session (3,031 once invoked), scanned A, original, MIT.

A tool that ranks upcoming trade shows by how many named competitors appear in exhibitor records. An exhibitor is a company listed as having a booth or presence at an event.

In plain words
What is it for?
Use it to map the events your competitors target, prioritize booth investments, find crowded shows, and spot events dominated by one competitor.
Why use it?
It helps you see where competitors concentrate their event activity and where your company may be absent. The results are database matches, not independently confirmed attendance.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit Use it to map the events your competitors target, prioritize booth investments, find crowded shows, and spot events dominated by one competitor.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lensmorofficial/trade-show-skills/competitor-show-tracker
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LensmorOfficial/trade-show-skills --skill competitor-show-tracker
Clone the repo
git clone --depth 1 https://github.com/LensmorOfficial/trade-show-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for competitor-show-tracker

README.md
[![agentmods](https://agentmods.dev/badge/skills/lensmorofficial/trade-show-skills/competitor-show-tracker/github.svg)](https://agentmods.dev/skills/lensmorofficial/trade-show-skills/competitor-show-tracker)
Your own site
<a href="https://agentmods.dev/skills/lensmorofficial/trade-show-skills/competitor-show-tracker"><img src="https://agentmods.dev/badge/skills/lensmorofficial/trade-show-skills/competitor-show-tracker/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for competitor-show-tracker

Your own site · 80×15
<a href="https://agentmods.dev/skills/lensmorofficial/trade-show-skills/competitor-show-tracker"><img src="https://agentmods.dev/badge/skills/lensmorofficial/trade-show-skills/competitor-show-tracker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,031 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high System Prompt Leakage · line 240
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
  • medium Excessive Agency · line 68
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00114 $0.03031
Opus 5 $0.00057 $0.01515
Sonnet 5 $0.00023 $0.00606
Haiku 4.5 $0.00011 $0.00303

Measured 12d ago against content hash 48d83f37988c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

competitor-show-tracker scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

3. Never expose endpoint paths, raw curl commands, or internal token values in the response
competitor-show-tracker/SKILL.md · 266 lines

How it starts

The opening of the file, as written. The whole thing — 266 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Competitor Show Tracker

Input a list of competitor company names and rank upcoming trade shows by how many names match Lensmor exhibitor records. Treat these as database matches, not independently verified attendance confirmations.

When this skill triggers:

  • Run the API key check (Step 1) before any API call
  • Call POST /external/exhibitors/search-events once per competitor company
  • Aggregate results by event, count distinct competitors per event
  • Filter to future events only, then rank by competitor concentration
  • Confirm estimated credit use and HubSpot activity logging before the first live call

Use Cases

  • Show circuit mapping: Understand which events your competitive set treats as must-attend
  • Counter-programming: Identify shows where multiple competitors cluster — decide whether to appear or deliberately avoid
  • Budget prioritization: Focus booth investment on shows where your buyers and your competitors overlap
  • Blind spot detection: Find shows where one key competitor dominates and you have no presence

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 data. Contact [email protected] 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:

  • competitors — list of competitor company names (2–20 companies). Accept as a comma-separated list, bullet list, or inline prose.

Optional:

  • date_from — only include events on or after this date (ISO 8601, default: today)
  • date_to — only include events on or before this date (e.g. restrict to next 12 months)
  • pageSize — results per company lookup (default: 50; raise to 100 if the user wants broader coverage)

Read the full file on GitHub · 266 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 266 lines · 114 tokens per session scan A 48d83f37988c

Subscribe to this mod's changes

competitor-show-tracker is a skill published in the GitHub repository LensmorOfficial/trade-show-skills (48 stars, last pushed 1mo ago), licensed MIT. It adds 114 tokens to every session and 3,031 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.