instances/xiaodazi/skills/everything-search/SKILL.md
Blazing-fast full-disk file search on Windows using Everything by voidtools. Millisecond search across millions of files with regex, wildcards, and advanced filters.
npx skillsauth add malue-ai/dazee-small everything-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
使用 Everything(voidtools)在 Windows 上进行毫秒级全盘文件搜索。 比 Windows Search 快数百倍,基于 NTFS 索引实时更新。
# 按文件名搜索
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
# 使用 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
C:\Windows)的结果默认折叠,除非用户明确要求development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.