search

VerifiedSafe

Search the full-text index for content across all indexed sources.

Sby Skills Guide Bot
ProductivityBeginner
107/24/2026
Claude Code
#search#full-text#indexing#word-frequency

Recommended for

Our review

Search the full-text index across all indexed sources for content.

Strengths

  • Fast search across all documents
  • Ability to scope search to a specific project or source
  • Word frequency analysis for building vocab lists

Limitations

  • Requires sources to be added and indexed beforehand
  • Reindex is global and cannot be scoped per source
  • Encrypted PDFs cannot be indexed
When to use it

When the user needs to find specific text in their project documents or analyze term frequency.

When not to use it

When the documents have not been indexed yet; a reindex should be run first.

Security analysis

Safe
Quality score90/100

The skill instructs use of a local search and indexing tool 'arcane' with no destructive actions, no exfiltration, and no obfuscation. Commands are standard and safe.

No concerns found

Examples

Basic search
Search for the term 'neural network' in my project.
Word frequency
What are the most common words in my documentation project?
Reindex and search
Reindex all sources and then search for 'algorithm'.

Skill: search

Search the full-text index for content across all indexed sources.

When to use

  • User asks to "search", "find", "look up" text in their documents
  • User wants to know what books cover a topic
  • User wants word frequency counts across a project (freq)
  • Search returns stale results → run reindex first

Steps Claude must follow

  1. Search:

    # All projects:
    arcane search "<query>"
    
    # Scoped to a project:
    arcane search "<query>" --project "<project>"
    
    # Scoped to one source:
    arcane search "<query>" --project "<project>" --source "<title>"
    

    Show the user: result count, top hits (title, chapter, page).

  2. If results look stale or empty:

    arcane reindex
    

    Then re-run the search. Reindex is safe to run at any time (idempotent).

  3. Word frequency (when user wants "most common words", "term frequency", or to build a vocab list):

    arcane freq "<query>" --project "<project>"
    

    Output is word<TAB>count pairs, sorted descending.

  4. Fill in template.md and present the summary.

Notes

  • arcane reindex reindexes all sources; there is no per-source flag.
  • Sources must be added via arcane add before they can be indexed.
  • Encrypted PDFs cannot be indexed until unlocked.
Related skills