list_project_files
Search and retrieve project files using glob patterns to locate specific file types or directories within your Python project structure.
Instructions
List project files matching pattern, relative to project root.
Args: pattern: Glob pattern (*.py, src/**, etc.) max_depth: Maximum directory depth to search exclude_patterns: Comma-separated patterns to exclude
Returns: [relative_path, ...] sorted alphabetically
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | No | *.py | |
| max_depth | No | ||
| exclude_patterns | No | .git,__pycache__,node_modules,.venv,venv |