glob_files
Recursively search for files using glob patterns from a specified base directory, automatically excluding common dependency and cache folders like .git, node_modules, .venv, and pycache.
Instructions
Find files matching a glob pattern (e.g. '/*.py', 'src//*.ts'). Searches recursively from the given base path. Skips .git, node_modules, .venv, pycache directories.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Base directory to search from (default: current directory). | . |
| pattern | Yes | Glob pattern (e.g. '**/*.py', '*.json', 'src/**/*.ts'). |