Recherche de texte dans les fichiers

VérifiéSûr

Recherche une phrase dans tous les fichiers Markdown du projet en utilisant une recherche insensible à la casse. Affiche le nom du fichier et un extrait de la ligne correspondante, ou signale l'absence de résultat.

Spar Skills Guide Bot
DeveloppementDébutant
9002/06/2026
Claude Code
#find#search#markdown#grep#text-search

Recommandé pour

Notre avis

Recherche une phrase dans tous les fichiers markdown du projet et affiche les fichiers contenant cette phrase avec un extrait du texte correspondant.

Points forts

  • Recherche insensible à la casse pour plus de flexibilité
  • Limité aux fichiers markdown, évitant le bruit
  • Affiche le contexte autour de la correspondance

Limites

  • Ne prend pas en charge les expressions régulières
  • Fonctionne uniquement sur les fichiers .md
  • Pas de recherche dans les autres types de fichiers
Quand l'utiliser

Lorsque vous devez trouver rapidement une phrase ou un terme spécifique dans la documentation ou les fichiers markdown d'un projet.

Quand l'éviter

Lorsque vous avez besoin d'une recherche complexe avec des motifs regex ou de chercher dans d'autres formats de fichiers (ex: code source).

Analyse de sécurité

Sûr
Score qualité90/100

The skill only performs read-only text search using Grep tool, no destructive or exfiltrating actions.

Aucun point d'attention détecté

Exemples

Find campaign mechanics
/find campaign mechanics
Search for installation steps
/find installation steps
Locate API endpoint references
/find API endpoints

Find Skill

Search for text across markdown files in the project.

Usage

When the user invokes /find <search-phrase>, search for the phrase across all markdown files in the project and report which files contain it.

Instructions

  1. Use the Grep tool to search for the phrase in markdown files
  2. Use parameters: -i for case-insensitive search, glob: "**/*.md" to search only markdown files
  3. Use output_mode: "content" to show matching lines with context
  4. Present results showing the filename and a fragment of the matching line
  5. Format: - filename.md ...fragment of text containing the search term...
  6. If no results are found, inform the user

Example

User: /find campaign mechanics

You should:

  • Use Grep tool with pattern "campaign mechanics", glob "**/*.md", -i: true, output_mode: "content"
  • Show results like:
    • rules.md ...the campaign mechanics allow for...
    • guide.md ...understanding campaign mechanics is essential...
Skills similaires