find
Installation
SKILL.md
Glob Tool
Find files matching a glob pattern.
REQUIRED: pattern (glob pattern like "*/.py") OPTIONAL: path (directory to search in, defaults to cwd)
RULES:
- Use ** for recursive matching across directories
- Returns sorted list of matching file paths
- Good for finding files by extension or name pattern
EXAMPLE:
{"name": "Glob", "input": {"pattern": "**/*.py"}}