qwen-code/packages/server/src/tools
Taylor Mullen a0eb8e67c7 fix(glob): Improve glob tool accuracy and output
This commit enhances the glob tool by:

- Ensuring that glob patterns are used effectively. Previously, simple file names without glob syntax (e.g., "file.ts") would only search the root directory. This change encourages more precise glob patterns (e.g., "**\/file.ts") for broader searches.
- Returning absolute file paths instead of relative paths. This provides clearer, less ambiguous output and avoids encouraging the use of relative paths in subsequent operations.
- Adding comprehensive tests for various globbing scenarios, including case sensitivity and path specifications.

These changes address an issue where the glob tool could not find an expected item when a specific path was provided without appropriate glob syntax, and improve the overall reliability and usability of the tool.

Fixes https://b.corp.google.com/issues/418486553
2025-05-18 00:10:56 -07:00
..
edit.test.ts refactor: Unify file modification confirmation state 2025-05-16 23:34:48 -07:00
edit.ts refactor: Unify file modification confirmation state 2025-05-16 23:34:48 -07:00
glob.test.ts fix(glob): Improve glob tool accuracy and output 2025-05-18 00:10:56 -07:00
glob.ts fix(glob): Improve glob tool accuracy and output 2025-05-18 00:10:56 -07:00
grep.ts Enable tools to cancel active execution. 2025-05-10 00:21:09 -07:00
ls.ts Enable tools to cancel active execution. 2025-05-10 00:21:09 -07:00
memoryTool.test.ts ability to override core system prompt (via .gemini/system.md) and specify core tools via coreTools setting (e.g. coreTools:["ls", "GrepTool", ...]) ; added tests, but did not update docs for now (#413) 2025-05-17 19:45:16 -07:00
memoryTool.ts ability to override core system prompt (via .gemini/system.md) and specify core tools via coreTools setting (e.g. coreTools:["ls", "GrepTool", ...]) ; added tests, but did not update docs for now (#413) 2025-05-17 19:45:16 -07:00
read-file.ts Enable tools to cancel active execution. 2025-05-10 00:21:09 -07:00
read-many-files.ts feat: Implement CLI and model memory management (#371) 2025-05-16 16:36:50 -07:00
shell.json minimal shell tool (#191) 2025-04-27 18:57:10 -07:00
shell.md drop restriction on whitespace in bash commands (#272) 2025-05-06 23:38:36 -07:00
shell.ts Enable tools to cancel active execution. 2025-05-10 00:21:09 -07:00
tool-registry.test.ts ability to override core system prompt (via .gemini/system.md) and specify core tools via coreTools setting (e.g. coreTools:["ls", "GrepTool", ...]) ; added tests, but did not update docs for now (#413) 2025-05-17 19:45:16 -07:00
tool-registry.ts added timeout setting to mcp server config, also switched to custom config type without "stderr" field that does not make sense in settings (#410) 2025-05-17 16:53:22 -07:00
tools.ts fix: Ensure filename is available for diff rendering in write-file 2025-05-16 10:13:13 -07:00
web-fetch.ts Enable tools to cancel active execution. 2025-05-10 00:21:09 -07:00
write-file.test.ts fix: Prevent WriteFileTool from writing to directory paths 2025-05-17 00:01:35 -07:00
write-file.ts refactor: Remove console.error from WriteFileTool 2025-05-17 23:06:50 -07:00