find-everything

find-everything is a skill for Claude Code, Codex from ZadAnthony/find-everything. It costs 146 tokens per session (2,095 once invoked), scanned A, original, MIT.

A cross-platform search workflow for finding agent skills, MCP servers, prompt templates, and open-source projects. It searches several online directories and checks whether required command-line tools or connections are available.

In plain words
What is it for?
Use it when looking for a tool, skill, MCP server, reusable prompt, or GitHub project for a specific task.
Why use it?
It collects relevant resources from multiple sources instead of requiring separate searches and manual checks.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/zadanthony/find-everything/skill
Any agent
npx skills add ZadAnthony/find-everything --skill skill
Clone the repo
git clone --depth 1 https://github.com/ZadAnthony/find-everything

Made for: Claude Code, Codex.

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 find-everything

README.md
[![agentmods](https://agentmods.dev/badge/skills/zadanthony/find-everything/skill.svg)](https://agentmods.dev/skills/zadanthony/find-everything/skill)
Your own site
<a href="https://agentmods.dev/skills/zadanthony/find-everything/skill"><img src="https://agentmods.dev/badge/skills/zadanthony/find-everything/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,095 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00146 $0.02095
Opus 5 $0.00073 $0.01047
Sonnet 5 $0.00029 $0.00419
Haiku 4.5 $0.00015 $0.00210

Measured 4d ago against content hash a4fb6a08ceb4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

find-everything scanned grade A with 0 findings 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/security_scan.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skill/SKILL.md · 167 lines

How it starts

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

find-everything:跨平台资源搜索

触发条件

  1. 显式调用/find-everything {query}
  2. 自动检测:用户问"有没有xxx工具"、"帮我找个xxx"、"有没有skill能..."
  3. 主动推荐:基于对话上下文判断用户在持续做某类任务且缺少相关工具(best-effort 启发式,同会话最多 1 次)

执行流程

Step 1: 意图分类

将用户查询分类为一个或多个类别:

  • skill: Agent Skills(可安装技能)
  • mcp: MCP Servers
  • prompt: 提示词模板/角色扮演/图片生成
  • repo: GitHub 开源项目

模糊需求同时搜索多个类别。从自然语言中提取核心搜索关键词。

Step 2: 读取注册表并路由

读取 references/registry.json。若读取失败,使用以下硬编码最小源:

  • skills-sh: npx skills find {query}
  • github: gh search repos {query} --sort stars --limit 10 --json name,owner,description,url,stargazersCount

筛选规则:

  1. 只选 enabled: true 的源
  2. 只选 category 包含目标类别的源
  3. 检查 requires 是否满足:
    • requires 为 CLI 名称(如 npxgh)→ 用 which 检查
    • requiresmcp: 开头(如 mcp:prompts-chat)→ 检查对应 MCP tool 是否在当前会话可用(尝试 ToolSearch 或直接调用)
  4. 不可用的源跳过,记录到 skipped_sources 列表,附带 install_hint(如有)

Step 3: Tier 1 搜索

同一条回复中发起多个独立 tool 调用实现并行:

cli 类型:用 Bash tool 执行 command 字段({query} 替换为实际关键词),15 秒超时。 mcp 类型:调用 registry.json 中 tool 字段指定的 MCP tool,参数取 tool_params({query} 替换为实际关键词)。例如:

  • search_prompts({ query: "blockchain analyst", limit: 10 }) → 返回 prompt 列表
  • search_skills({ query: "search aggregator", limit: 10 }) → 返回 skill 列表
  • 支持的额外过滤参数(按需使用):type(TEXT/STRUCTURED/IMAGE)、categorytag skill 类型:调用对应已安装 skill。

若并行不可用,按优先级执行:skills-sh > github > clawhub > 其他。

Step 4: 结果数量预判

基于标题/描述的关键词匹配做轻量判断(非完整 LLM 评估):

  • ≥3 条匹配度高 → 跳到 Step 6(末尾注明"搜索更多源可获取更多结果")
  • <3 条或匹配度低 → 继续 Step 5

Step 5: Tier 2/3 搜索

Tier 2:将同类别 Tier 2 源合并为 1 次 WebSearch:

{query} {category关键词} site:skillhub.club OR site:aiskillsshow.com OR site:skillsmp.com

若合并查询返回 <2 条,退回对 Top 2-3 优先源逐个 site: 搜索。

Tier 3(仍不足时):不带 site: 限定的广域 WebSearch。

Step 6: 结果评估

对每条结果判断相关性:

  • 高相关:保留,排在前面
  • 中相关:保留,排在后面,标注"可能相关"
  • 不相关:丢弃

对 Top 3-5 条高相关结果,可选 WebFetch 补充详情。

Step 7: 安全快筛

对所有保留结果做元数据安全标注:

  • [SAFE]:来自注册表已知平台 + 安装量 >100
  • [CAUTION]:安装量低、来源不明、或 Tier 3 发现
  • [RISK]:名称疑似 typosquat,或其他红旗信号

Read the full file on GitHub · 167 lines

Files

What ships with it

4 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. 4d ago First seen · 167 lines · 146 tokens per session scan A a4fb6a08ceb4

Subscribe to this mod's changes

find-everything is a skill published in the GitHub repository ZadAnthony/find-everything (5 stars, last pushed 5mo ago), licensed MIT. It adds 146 tokens to every session and 2,095 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

deep-research

Orchestrate autonomous deep web research, parallel scraping, citation synthesis, fact checking, and persistent memory using the Deep Research MCP server. Use when asked to 'deep research', 'research this topic', 'fact check claim', 'compare sources', or perform comprehensive multi-source investigation with zero API…

SECRET4422/mcp-deep-research-server · 64 tokens

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

ast-grep

Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…

JanDeDobbeleer/oh-my-posh · 80 tokens

golden-rss

Use when testing the rss golden build.

yusufkaraaslan/Skill_Seekers · 12 tokens

overleaf-sync

Two-way sync between a local paper directory and an Overleaf project, so ARIS audit/edit workflows stay on the local copy while collaborators edit in the Overleaf web UI. Use when user says "同步 overleaf", "overleaf sync", "推送到 overleaf", "connect overleaf", "Overleaf 桥接", "pull overleaf", "push overleaf", or wants to…

wanshuiyin/Auto-claude-code-research-in-sleep · 97 tokens

omh-code-review

This is a Hermes-native code-review workflow skill.

rlaope/oh-my-hermes · 46 tokens