prompt.ts
1 export const TOOL_NAME_FOR_PROMPT = 'GlobTool' 2 3 export const DESCRIPTION = `- Fast file pattern matching tool that works with any codebase size 4 - Supports glob patterns like "**/*.js" or "src/**/*.ts" 5 - Returns matching file paths sorted by modification time 6 - Use this tool when you need to find files by name patterns 7 - When you are doing an open ended search that may require multiple rounds of globbing and grepping, use the Agent tool instead 8 `