UNPKG

pyb-ts

Version:

PYB-CLI - Minimal AI Agent with multi-model support and CLI interface

16 lines (15 loc) 676 B
const TOOL_NAME_FOR_PROMPT = "GrepTool"; const DESCRIPTION = ` - Fast content search tool that works with any codebase size - Searches file contents using regular expressions - Supports full regex syntax (eg. "log.*Error", "function\\s+\\w+", etc.) - Filter files by pattern with the include parameter (eg. "*.js", "*.{ts,tsx}") - Returns matching file paths sorted by modification time - Use this tool when you need to find files containing specific patterns - When you are doing an open ended search that may require multiple rounds of globbing and grepping, use the Agent tool instead `; export { DESCRIPTION, TOOL_NAME_FOR_PROMPT }; //# sourceMappingURL=prompt.js.map