Our review
Searches for a phrase across all markdown files in the project and reports which files contain it, showing a fragment of the matching line.
Strengths
- Case-insensitive search for flexibility
- Scoped to markdown files, reducing noise
- Provides context around the match
Limitations
- Does not support regular expressions
- Only works on .md files
- No search in other file types
When you need to quickly locate a specific phrase or term within documentation or markdown files in a project.
When you need complex pattern matching with regex or need to search across other file formats (e.g., source code).
Security analysis
SafeThe skill only performs read-only text search using Grep tool, no destructive or exfiltrating actions.
No concerns found
Examples
/find campaign mechanics/find installation steps/find API endpointsFind 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...
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.