CommunityRedacción y edicióngithub.com

DerrickZeng33/find-files-with-everything

Fast Windows file discovery for Codex, Claude Code, and compatible AI agents using Voidtools Everything CLI.

¿Qué es find-files-with-everything?

find-files-with-everything is a Claude Code agent skill that fast Windows file discovery for Codex, Claude Code, and compatible AI agents using Voidtools Everything CLI.

Compatible conClaude CodeCodex CLI~Cursor
npx skills add DerrickZeng33/find-files-with-everything

Installed? Explore more Redacción y edición skills: steipete/notion, affaan-m/seo, affaan-m/brand-voice · View all 6 →

Preguntar en tu IA favorita

Abre un nuevo chat con esta habilidad de agente ya precargada.

Documentación

Find Files With Everything

Use es.exe as a read-only client for the running Everything index. Minimize tool calls and returned text.

Route the search

  1. Use Test-Path or Get-Item for an exact known path.
  2. Use rg --files for filenames inside a known workspace and rg for content in a known tree.
  3. Use Everything first when the location is unknown, outside the workspace, computer-wide, or based on indexed metadata.

Run an efficient query

  1. Check availability at most once per session, or after a failed query:

    Get-Command es.exe -ErrorAction SilentlyContinue
    

    Otherwise, run the search directly. If ES is missing or returns IPC error 8, use a narrowly scoped fallback. Do not install, start, or repair software unless the user asks.

  2. Narrow the query before increasing output:

    es.exe -n 20 "report"
    es.exe -path "C:\Work" /a-d -n 20 "ext:xlsx"
    es.exe -size -dm -n 20 "size:>1gb"
    

    Use /ad for folders, /a-d for files, -path for a subtree, and Everything search terms such as ext:, size:, dm:, and dc:. Quote paths and terms containing spaces.

  3. When invoking from PowerShell 7 or later, put -argv first. Omit it in Windows PowerShell 5.1 and other shells.

  4. Return plain paths by default. Use -json and extra columns only when structured metadata is required. Use -get-result-count only when the count matters or a capped query needs refinement.

  5. Keep the default cap at 20. If the cap is reached, refine the query before requesting more results. Do not export results to a file unless asked.

Report the result

  • Return the smallest sufficient set of exact paths and summarize omitted matches.
  • State the query or scope when no result is found.
  • Treat a zero-result search as evidence about the current Everything index, not proof that an unindexed location is empty.
  • Avoid content: for a known project tree; it is not indexed by default and is usually less efficient than rg.

Keep searches read-only

Do not use ES state-changing options such as -exit, -reindex, -save-db, run-count setters, or saved-setting changes. Do not delete, move, copy, or open results unless the user separately requests that action.

Skills relacionados

steipete/notion

Notion CLI/API for pages, Markdown content, data sources, files, comments, search, Workers, and raw API calls.

community

affaan-m/seo

Audit, plan, and implement SEO improvements across technical SEO, on-page optimization, structured data, Core Web Vitals, and content strategy. Use when the user wants better search visibility, SEO remediation, schema markup, sitemap/robots work, or keyword mapping.

community

affaan-m/brand-voice

Build a source-derived writing style profile from real posts, essays, launch notes, docs, or site copy, then reuse that profile across content, outreach, and social workflows. Use when the user wants voice consistency without generic AI writing tropes.

community

affaan-m/crosspost

Multi-platform content distribution across X, LinkedIn, Threads, and Bluesky. Adapts content per platform using content-engine patterns. Never posts identical content cross-platform. Use when the user wants to distribute content across social platforms.

community

affaan-m/x-api

X/Twitter API integration for posting tweets, threads, reading timelines, search, and analytics. Covers OAuth auth patterns, rate limits, and platform-native content posting. Use when the user wants to interact with X programmatically.

community

affaan-m/content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

community