Fast file pattern matching tool that works with any codebase size.

Usage:
- Supports glob patterns like "**/*.js" or "src/**/*.ts"
- Returns matching file paths sorted by modification time
- Use this tool when you need to find files by name patterns

Parameters:
- pattern (required): The glob pattern to match files against
- path (optional): The directory to search in (defaults to current working directory)

When to Use:
- Finding files by extension or name pattern
- Locating specific file types in a directory tree
- Quick file discovery before reading

When NOT to Use:
- Searching for content inside files (use Grep instead)
- Finding a specific known file path (use Read instead)
