Find files by name or path pattern. Use this instead of find command.
<when_to_use> Use Glob when:
- Finding files by name: ".go", "config."
- Finding files in specific directories: "src/**/*.ts"
- Locating test files, configs, or specific extensions
Do NOT use Glob when:
- Searching file contents → use
grep - Need file contents → use
viewafter finding - Looking for symbol definitions → use
lsp_references</when_to_use>
<pattern_syntax>
*matches any characters except path separator**matches any characters including path separators?matches single character{a,b}matches alternatives[abc]matches character class </pattern_syntax>