everything-search

everything-search is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 36 tokens per session (908 once invoked), scanned A, original, MIT.

A Windows file-search skill that uses Everything, a fast filename index for NTFS disks. It supports names, paths, file types, sizes, dates, wildcards, regular expressions, duplicates, and exclusions.

In plain words
What is it for?
Use it to find files by name or pattern, filter them by location or date, locate large or duplicate files, and list matching paths.
Why use it?
It helps locate files across a computer much faster and with more precise filters than ordinary Windows Search. Everything must be installed for the main workflow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find files by name or pattern, filter them by location or date, locate large or duplicate files, and list matching paths.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/everything-search
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 malue-ai/dazee-small --skill everything-search
Clone the repo
git clone --depth 1 https://github.com/malue-ai/dazee-small

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/malue-ai/dazee-small/everything-search/github.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/everything-search)
Your own site
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/everything-search"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/everything-search/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 everything-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/everything-search"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/everything-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 908 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00036 $0.00908
Opus 5 $0.00018 $0.00454
Sonnet 5 $0.00007 $0.00182
Haiku 4.5 $0.00004 $0.00091

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

Security

Grade A, and why

everything-search 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 8d 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.

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.

instances/xiaodazi/skills/everything-search/SKILL.md · 130 lines

What it actually says

Everything 极速文件搜索(Windows)

使用 Everything(voidtools)在 Windows 上进行毫秒级全盘文件搜索。 比 Windows Search 快数百倍,基于 NTFS 索引实时更新。

使用场景

  • 用户说「帮我找一下那个 XX 文件」「电脑上有没有叫 XX 的文件」
  • 需要按文件类型、大小、修改日期快速过滤
  • 需要在整个磁盘中搜索特定内容
  • 桌面整理前需要查找重复或分散的文件

命令参考(ES 命令行)

基础搜索

# 按文件名搜索
es "季度报告"

# 搜索特定扩展名
es "*.xlsx"

# 搜索特定目录下
es "path:C:\Users\%USERNAME%\Documents *.pdf"

通配符和正则

# 通配符搜索
es "报告_202*.xlsx"

# 正则搜索
es -regex "报告_\d{4}Q[1-4]\.xlsx"

# 文件名包含多个关键词(AND)
es "报告 季度 2025"

按属性过滤

# 按大小过滤(大于 100MB 的文件)
es "size:>100mb"

# 按修改时间(最近 7 天)
es "dm:last7days"

# 按修改时间(指定日期范围)
es "dm:2025-01-01..2025-06-30"

# 按文件类型
es "ext:pdf;docx;xlsx"

# 组合过滤:Documents 目录下最近修改的大文件
es "path:Documents size:>10mb dm:lastweek"

排序和限制

# 按大小降序(找大文件)
es "ext:mp4;mkv;avi" -sort-size-descending -n 20

# 按修改时间降序(找最近的文件)
es "*.docx" -sort-date-modified-descending -n 10

# 只输出完整路径
es "*.pdf" -path-column

高级搜索

# 查找重复文件名
es "dupe:"

# 查找空文件夹
es "empty:"

# 查找特定父目录
es "parent:Downloads *.zip"

# 排除目录
es "*.py" "!path:node_modules" "!path:.git"

统计

# 统计某类文件数量和总大小
es "ext:jpg;png;gif" -size -n 0 | Measure-Object -Property Length -Sum

PowerShell 回退方案(未安装 Everything 时)

# 使用 Windows 内置搜索(较慢但无需安装)
Get-ChildItem -Path "C:\Users\$env:USERNAME" -Recurse -Filter "*.pdf" -ErrorAction SilentlyContinue |
    Select-Object Name, FullName, Length, LastWriteTime |
    Sort-Object LastWriteTime -Descending |
    Select-Object -First 20

输出规范

  • 搜索结果展示:文件名、完整路径、大小(人类可读)、修改时间
  • 结果超过 20 条时只展示前 20 条 + 总数
  • 大文件搜索结果附带大小排名
  • 提供「用 Explorer 打开所在文件夹」的快捷操作

安全规则

  • 只读操作:只搜索和展示,不删除、不移动
  • 系统目录(C:\Windows)的结果默认折叠,除非用户明确要求
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. 8d ago First seen · 130 lines · 36 tokens per session scan A ddd2516219ac

Subscribe to this mod's changes

everything-search is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 36 tokens to every session and 908 once invoked, about $0.0002 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens