← Back to Skills Marketplace
thianda91

Windows File Search Skill via Everything

by YrUqx · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
300
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install es-file-search-win
Description
Fast and comprehensive Windows file and folder search using the Everything command line tool with filters, sorting, and CSV export options.
README (SKILL.md)

Windows File Search Skill\r

\r Skill Description: This skill provides powerful file search capabilities on Windows systems using the Everything command line tool (es.exe). It allows for fast and efficient searching of files and folders across the entire file system.\r \r

Overview\r

\r This skill enables advanced file search operations on Windows platforms by leveraging the Everything search engine's command line interface. The es.exe tool offers lightning-fast file searching capabilities, making it ideal for locating files and folders based on various criteria.\r \r

Error Handling\r

\r When executing commands, if an Error 8 is returned, the skill will automatically retry the command with the -instance=1.5a parameter to ensure compatibility with Everything version 1.5a.\r \r If the error persists even after adding the -instance=1.5a parameter:\r \r This indicates that the es.exe command-line tool is not properly installed or configured on your system. Please follow these steps:\r \r

  1. Download and Install Everything:\r
  2. Configure System PATH (Choose one of the following methods):\r \r Method A - Add es.exe directory to System PATH:\r
    • Locate the es.exe file (typically in C:\Program Files\Everything\)\r
    • Add this directory to your system's PATH environment variable\r
    • Restart your terminal/command prompt for changes to take effect\r \r Method B - Copy es.exe to System Directory:\r
    • Copy the es.exe file to your Windows system directory (%systemroot%)\r
    • This is typically C:\Windows\r \r
  3. Verify Installation:\r
    • Open a new command prompt\r
    • Type es -version to verify the tool is accessible\r
    • Type es -get-everything-version or es -instance=1.5a -get-everything-version to verify Everything.exe is accessible\r
    • If successful, you should see the version information for the es command and Everything.exe\r \r

Core Capabilities\r

\r

1. Basic Search Syntax\r

\r

es [options] search_term\r
```\r
\r
### 2. Common Search Options\r
\r
**File Filtering:**\r
\r
- `-p`: Match full path (including folder names)\r
- `-w`: Match whole words only\r
- `-n \x3Cnum>`: Limit number of results\r
- `-path \x3Cpath>`: Search within specified path\r
- `/ad`: Show only directories\r
- `/a-d`: Show only files (exclude directories)\r
\r
**Example:** `es -path "C:\Users" -n 10 *.pdf`\r
\r
### 3. Sorting and Display\r
\r
**Sorting Options:**\r
\r
- `-s`: Sort by full path\r
- `-sort name`: Sort by file name (supports `size`, `extension`, `date-modified`, etc.)\r
- Use `-` prefix for descending order (e.g., `-sort -date-modified`)\r
\r
**Formatted Output:**\r
\r
```\r
es -name -size -date-modified -path search_term\r
```\r
\r
### 4. Advanced Features\r
\r
**Data Export:**\r
\r
- `-csv`: Export results as CSV format\r
- `-export-csv "filename.csv"`: Export to specific CSV file\r
- `-no-header`: Exclude header row in export\r
\r
**Folder Size Calculation:**\r
\r
- `-get-folder-size \x3Cfilename>`: Calculate folder size\r
- `-get-total-size`: Calculate total size of search results\r
\r
**Search Term Highlighting:**\r
\r
- `-highlight`: Highlight matching text in results\r
- `-highlight-color 0x0c`: Set highlight color\r
\r
## Usage Examples\r
\r
**Example 1: Find recently modified Word documents**\r
\r
```\r
es -path "C:\" -sort -date-modified -n 5 -name -size -date-modified *.docx\r
```\r
\r
**Example 2: Export hidden files list to CSV**\r
\r
```\r
es -path "C:\" /ah -export-csv "hidden_files.csv" -no-header\r
```\r
\r
## Notes\r
\r
- **Platform:** Windows only\r
- **Tool:** Everything command line tool (es.exe)\r
- **Compatibility:** Works with Everything version 1.4.1.950 or higher\r
- **Wildcards:** Supports `*` (any characters) and `?` (single character)\r
- **Quoting:** Use double quotes for paths or search terms containing spaces
Usage Guidance
This skill is coherent with its claim to use Everything (es.exe) for fast Windows searches, but take these precautions before installing/using it: only install es.exe from the official voidtools site; prefer adding the es.exe folder to your PATH rather than copying the binary into C:\Windows; be aware that running the skill lets the agent enumerate entire drives and export results (CSV files) which can contain sensitive filenames/paths — review/export destinations before running; run the tool under a least-privilege account if possible; if you do not want the agent to run searches autonomously, restrict the skill or require explicit user invocation.
Capability Analysis
Type: OpenClaw Skill Name: es-file-search-win Version: 1.0.0 The skill bundle provides instructions for an AI agent to utilize the legitimate 'Everything' (es.exe) command-line utility for file searching on Windows. It includes helpful error-handling logic for version compatibility and provides official download links to voidtools.com. There is no evidence of malicious intent, data exfiltration, or prompt injection attacks; the capabilities described are consistent with the stated purpose of the tool.
Capability Assessment
Purpose & Capability
The name/description match the instructions: the SKILL.md exclusively describes invoking Everything's es.exe CLI to search, filter, sort, and export results. It does not request unrelated network services, credentials, or tools.
Instruction Scope
Instructions tell the agent to run es.exe and to read/write search results (including CSV export). That's expected for a file-search skill, but the skill will necessarily enumerate the filesystem and can export potentially sensitive file lists. The doc also recommends copying es.exe into the Windows system directory (%systemroot%), which is unnecessary and risky; adding the es.exe directory to PATH is preferable.
Install Mechanism
There is no automated install spec (instruction-only), so nothing is written to disk by the skill itself. SKILL.md points to official voidtools.com download URLs (expected). The only mild risk is the instruction to copy es.exe to the system directory — that action involves placing a third-party binary in a privileged location and is unnecessary for normal operation.
Credentials
No environment variables, credentials, or unrelated config paths are requested. The only capabilities needed are access to run es.exe and read files/directories on the Windows filesystem, which are proportional to the described purpose.
Persistence & Privilege
The skill is not set to always: true and does not request elevated platform privileges or modify other skills' configs. Autonomous invocation is allowed by default (platform normal) — note that this means the agent could run searches without additional prompts if enabled.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install es-file-search-win
  3. After installation, invoke the skill by name or use /es-file-search-win
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the Windows File Search Skill. - Provides fast and advanced file/folder search on Windows using Everything (es.exe) command line tool. - Includes automatic error handling and compatibility support for Everything 1.4 and 1.5a. - Detailed setup instructions and troubleshooting for es.exe installation/configuration. - Supports extensive search options, filters, sorting, data export, and result formatting.
Metadata
Slug es-file-search-win
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Windows File Search Skill via Everything?

Fast and comprehensive Windows file and folder search using the Everything command line tool with filters, sorting, and CSV export options. It is an AI Agent Skill for Claude Code / OpenClaw, with 300 downloads so far.

How do I install Windows File Search Skill via Everything?

Run "/install es-file-search-win" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Windows File Search Skill via Everything free?

Yes, Windows File Search Skill via Everything is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Windows File Search Skill via Everything support?

Windows File Search Skill via Everything is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Windows File Search Skill via Everything?

It is built and maintained by YrUqx (@thianda91); the current version is v1.0.0.

💬 Comments