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
- •Use the Grep tool to search for the phrase in markdown files
- •Use parameters:
-ifor case-insensitive search,glob: "**/*.md"to search only markdown files - •Use
output_mode: "content"to show matching lines with context - •Present results showing the filename and a fragment of the matching line
- •Format:
- filename.md ...fragment of text containing the search term... - •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...
- •