A specialized skill designed to empower AI agents (like Claude Code, OpenCode, etc.) to search the local Windows filesystem instantly using the Everything search engine.
This project provides a bridge between AI agents and the "Everything" search engine. Instead of relying on slow, recursive directory scans (like glob or find), this skill allows agents to query the Master File Table (MFT) index directly via es.exe, returning results in milliseconds.
It is packaged as a standard Skill structure, ready to be dropped into your agent's skill directory.
- Instant Search: Find files by name, path, or extension in milliseconds.
- Advanced Queries: Support for size, dates, attributes, and regex (e.g., "files > 1GB modified today").
- Content Search: capability to search text content within files.
- Zero-Dependency Runtime: The core script is pure Node.js (CommonJS) with no
node_modulesrequired.
- Windows OS: "Everything" is a Windows-only tool.
- Everything Service: Install Everything and ensure the service is running.
- Everything CLI (
es.exe):- Download from voidtools Downloads.
- Crucial: Add the folder containing
es.exeto your systemPATH.
- Node.js: Required to execute the wrapper script.
- Clone this repository:
git clone https://github.com/your-username/skill-everything.git
- Copy or link the
everything-searchfolder to your agent's skills directory (e.g.,~/.agents/skills/).
You can test the skill logic directly without an agent:
# Basic search
node everything-search/scripts/search.js "secret-plans.docx"
# Advanced search: Find large video files
node everything-search/scripts/search.js "video: size:>1gb" --sort size
# Help / Syntax
# See everything-search/references/syntax.mdeverything-search/
βββ SKILL.md # Entry point: Instructions for the AI Agent
βββ scripts/
β βββ search.js # Node.js wrapper for es.exe
βββ references/
β βββ syntax.md # Cheat sheet for Everything search syntax
βββ assets/ # (Optional) Helper assets
MIT License. See LICENSE file for details.
Disclaimer: This project is not affiliated with voidtools. "Everything" is a trademark of voidtools.