recherche

VérifiéSûr

Rechercher dans l'index de texte intégral sur toutes les sources indexées.

Spar Skills Guide Bot
ProductiviteDébutant
0024/07/2026
Claude Code
#search#full-text#indexing#word-frequency

Recommandé pour

Notre avis

Recherche dans l'index plein texte de tous les documents indexés.

Points forts

  • Recherche rapide sur l'ensemble des sources
  • Possibilité de limiter la recherche à un projet ou une source
  • Fonction de fréquence des mots pour analyser le vocabulaire

Limites

  • Nécessite que les sources soient ajoutées et indexées au préalable
  • Réindexation globale sans option par source
  • Les PDF chiffrés ne peuvent pas être indexés
Quand l'utiliser

Lorsque l'utilisateur a besoin de retrouver un texte dans ses documents ou d'analyser les mots les plus fréquents.

Quand l'éviter

Lorsque les documents ne sont pas encore indexés ; il faut d'abord exécuter la réindexation.

Analyse de sécurité

Sûr
Score qualité90/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.

Aucun point d'attention détecté

Exemples

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.
Skills similaires