Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

everything-search一切搜索

Agent Skill

everything-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

3

下载量

107
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:everything-search(一切搜索)
来源仓库:https://github.com/whizzest/everything-search
仓库路径:skills/everything-search
安装命令:
npx skills add https://github.com/whizzest/everything-search --skill everything-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/whizzest/everything-search --skill everything-search

简介

everything-search 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Everything Search Command Helper

This skill provides comprehensive guidance for using the ES (Everything Search) command-line interface tool.

IMPORTANT: Always Use -help First

CRITICAL: Before attempting any ES command, always run es -help to get the most up-to-date information. The ES tool is actively maintained and options may change. Using -help ensures you have the latest syntax and available options.

es -help

What is ES?

ES is a command-line interface to Everything, a powerful file search utility for Windows. It provides fast, efficient file searching with advanced filtering and sorting capabilities.

Installation

Check if Everything and ES are Installed

# Check Everything version
es -get-everything-version

# Check ES version
es -version

# Check if es command is available
es -help

If these commands fail, you need to install Everything and ES.

Install Everything and ES using winget

winget is available on Windows 10/11 by default.

Search for Everything and ES:

winget search Everything

Expected results:

  • voidtools.Everything - Everything (main application)
  • voidtools.Everything.Cli - ES (Everything CLI)

Install Everything:

winget install voidtools.Everything

Install ES (Everything CLI):

winget install voidtools.Everything.Cli

Verify installation:

es -version
es -get-everything-version

Post-Installation Setup

After installation:

  1. Start Everything: Launch Everything from Start menu
  2. Configure Everything: Let Everything index your files (usually quick)
  3. Verify ES connection: es -help

Troubleshooting Installation

ES command not found:

  • Restart your terminal
  • Verify ES is in your PATH: where es
  • Reinstall: winget install voidtools.Everything.Cli --force

Everything not running:

  • Start Everything from Start menu
  • Check if Everything is running in Task Manager

ES cannot connect to Everything:

  • Ensure Everything is running
  • Restart Everything

Basic Usage

Simple Search

es <search-term>

Limit Results

es -n 10 *.js
es -count 5 package.json

Search by Extension

es ext:exe;ini
es *.txt
es *.js

Search Options

Pattern Matching

  • -r <pattern> or -regex <pattern>: Use regular expressions
  • -i or -case: Match case (case-sensitive)
  • -w or -whole-word: Match whole words only
  • -p or -match-path: Match full path
  • -prefix: Match start of words
  • -suffix: Match end of words

Path Filtering

  • -path <path>: Search in specific path
  • -parent-path <path>: Search in parent of path
  • -parent <path>: Search files with specific parent path

File Type Filtering

  • /ad: Folders only
  • /a-d: Files only
  • /a[RHSDAVNTPLCOIEUPM]: DIR style attributes search (see es -help for details)

Sorting Options

Sort by Property

es -sort name <search-term>
es -sort size <search-term>
es -sort date-modified <search-term>
es -sort extension <search-term>

Sort Order

es -sort name-ascending <search-term>
es -sort size-descending <search-term>

Display Options

Show Specific Columns

es -name -size -extension *.js
es -path-column -date-modified -size *.log
es -full-path-and-name *.txt

Available Columns

  • -name: File name
  • -path-column: Path
  • -full-path-and-name: Full path and name
  • -extension or -ext: File extension
  • -size: File size
  • -date-created or -dc: Creation date
  • -date-modified or -dm: Modification date
  • -date-accessed or -da: Last access date
  • Use es -help for all available columns

Output Formats

es -csv *.js
es -json *.txt
es -tsv *.log
es -txt *.ini

Date Format (IMPORTANT for JSON/CSV exports)

CRITICAL: When using -json, -csv, or other export formats, dates are displayed as FILETIME integers by default, which are not human-readable. Use -date-format to convert to readable format.

# Default (FILETIME - not readable)
es -n 2 -json *.ts
# Output: "date_modified":133564093868587796

# ISO-8601 (local time) - RECOMMENDED
es -n 2 -json -date-format 1 *.ts
# Output: "date_modified":"2024-04-01T09:43:06"

# ISO-8601 (UTC) - for timezone-aware applications
es -n 2 -json -date-format 3 *.ts
# Output: "date_modified":"2024-04-01T01:43:06Z"

# ISO-8601 with full resolution (milliseconds)
es -n 2 -json -date-format 5 *.ts
# Output: "date_modified":"2024-04-01T09:43:06.8587796"

Available date formats:

  • 0 - auto (automatic selection)
  • 1 - ISO-8601 (local time) - RECOMMENDED
  • 2 - FILETIME (default, not readable)
  • 3 - ISO-8601 (UTC) - for timezone-aware applications
  • 4 - User Locale (system-specific format)
  • 5 - ISO-8601 with full resolution (milliseconds)
  • 6 - ISO-8601 (UTC) with full resolution

Best practice: Always use -date-format 1 or -date-format 3 when exporting to JSON or CSV for human-readable dates.

Export Options

Export to File

es -export-csv results.csv *.js
es -export-json results.json *.txt
es -export-txt results.txt *.log
es -export-tsv results.tsv *.ini

Use es -help for additional export options.

Statistics and Information

Get Result Count

es -get-result-count *.js

Get Total Size

es -get-total-size *.log

Get Folder Size

es -get-folder-size "C:\path\to\folder"

Version Information

es -version
es -get-everything-version

Advanced Examples

Search and Sort

es -n 20 -sort size -size -name *.log

Search in Specific Path with Custom Columns

es -n 10 -path "C:\Users" -name -size -date-modified *.pdf

Case-Sensitive Whole Word Search

es -i -w "MyFile"

Regex Search

es -r "test_\d+\.txt"

Export Large Results

es -export-json all_files.json *

Search for Folders Only

es /ad -n 20

Search for Hidden Files

es /aH -n 10

Everything Control

Database Operations

es -save-db
es -reindex

Exit Everything

es -exit

Best Practices

  1. Always check -help first - ES options may change
  2. Use -n to limit results - Prevent overwhelming output
  3. Specify columns explicitly - Get only the information you need
  4. Use appropriate output format - CSV/JSON for programmatic use, default for human reading
  5. Combine filters - Use path, extension, and attributes together for precise searches
  6. Export for large result sets - Use -export-* options instead of printing to console

Common Use Cases

Find recently modified files

es -n 50 -sort date-modified-descending *

Export file list for backup

es -export-csv backup_list.csv -path "C:\important\files" *

Troubleshooting

No Results Found

  • Check if Everything is running
  • Verify the search pattern is correct
  • Try a broader search term
  • Use -get-result-count to verify search is working

Command Not Found

  • Ensure ES is installed and in PATH
  • Check Everything is installed on your system

Slow Performance

  • Use -n to limit results
  • Add path filters to narrow search scope
  • Consider using -export-* for large result sets

Notes

  • Internal -'s in options can be omitted: -nodigitgrouping
  • Switches can start with / instead of -
  • Use double quotes to escape spaces and switches
  • Switches can be disabled by prefixing with no-: -no-size
  • Use ^ prefix or wrap with double quotes to escape special characters

When to Use This Skill

Invoke this skill when:

  • User asks about file searching on Windows
  • User needs help with es command syntax
  • User wants to search files efficiently
  • User asks about Everything search tool
  • User needs to export file lists
  • User wants to find files by specific criteria (size, date, type, etc.)
  • User mentions es command or Everything search

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.37%
按下载量换算36

Claude

30.23%
按下载量换算32

Cursor

16.76%
按下载量换算18

Gemini CLI

10.05%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/whizzest/everything-search --skill everything-search 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills