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.
npx skills add HomenShum/NodeBenchAI --skill nodebenchgit clone --depth 1 https://github.com/HomenShum/NodeBenchAIWrote 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.
[](https://agentmods.dev/skills/homenshum/nodebenchai/nodebench)<a href="https://agentmods.dev/skills/homenshum/nodebenchai/nodebench"><img src="https://agentmods.dev/badge/skills/homenshum/nodebenchai/nodebench/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.
<a href="https://agentmods.dev/skills/homenshum/nodebenchai/nodebench"><img src="https://agentmods.dev/badge/skills/homenshum/nodebenchai/nodebench.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to medium
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 →
- medium Data Exfiltration · line 33 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium MCP Rug Pull · line 123 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium Data Exfiltration · line 127 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00045 | $0.01478 |
| Opus 5 | $0.00023 | $0.00739 |
| Sonnet 5 | $0.00009 | $0.00296 |
| Haiku 4.5 | $0.00005 | $0.00148 |
Grade A, and why
nodebench 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 5d 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.
curl -s -X POST "https://www.nodebenchai.com/api/search" \ How it starts
The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NodeBench AI — Claude Code Plugin
You have access to NodeBench AI for entity intelligence and founder clarity. Use these commands to search companies, run diligence, get remediation, and manage company context.
Commands
/nodebench:search
Search any company, market, or question. Returns a structured intelligence packet.
Usage:
/nodebench:search Anthropic
/nodebench:search "Tests Assured" --lens banker
/nodebench:search "AI commerce market 2026" --lens investor
Implementation:
- Check if NodeBench MCP is connected by looking for
web_searchorenrich_entitytools - If MCP is available, use
web_search+enrich_entityfor the query - If MCP is not available, call the NodeBench API:
curl -s -X POST "https://www.nodebenchai.com/api/search" \ -H "Content-Type: application/json" \ -d '{"query":"<QUERY>","lens":"<LENS>"}' - Parse and present the result as a structured intelligence brief
/nodebench:diligence
Run deep diligence on a company. Returns 6-branch parallel research: people, timeline, financials, competitive landscape, products, and risk flags. Takes 30-90 seconds.
Usage:
/nodebench:diligence "Tests Assured"
/nodebench:diligence Anthropic --lens investor
Implementation:
- Call the Convex API to start a deep search:
# Start the search (returns session ID instantly) curl -s -X POST "https://agile-caribou-964.convex.cloud/api/mutation" \ -H "Content-Type: application/json" \ -d '{"path":"domains/search/searchPipeline:startDeepSearch","args":{"query":"<COMPANY>","lens":"<LENS>"}}' - Poll for results:
curl -s -X POST "https://agile-caribou-964.convex.cloud/api/query" \ -H "Content-Type: application/json" \ -d '{"path":"domains/search/searchPipeline:getSearchSession","args":{"sessionId":"<SESSION_ID>"}}' - Wait until status is "complete" or "error"
- Present the result organized by branch: people, timeline, financials, market, products, risks
- Include the remediation items and SEO audit
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.
- 5d ago First seen · 178 lines · 45 tokens per session scan A 0c02fa747952
nodebench is a skill published in the GitHub repository HomenShum/NodeBenchAI (14 stars, last pushed today), licensed MIT. It adds 45 tokens to every session and 1,478 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
convex-agents
Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration.
convex-agents
Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration.
foundry-config-setup
Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.
haiku
When writing a haiku for this bot, follow these conventions.
deploy-docker-compose
Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…
fastapi-router-py
Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or adding authenticated endpoints in FastAPI applications.