You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix glob-tool: remove unused dep, fix mtime sort, drop noise
- Remove unused 'glob' crate dependency from Cargo.toml
- Fix mtime sort: store absolute paths for metadata lookups so sort works
correctly when path param is not CWD
- Return empty string on no matches (consistent with other tools)
- Remove redundant is_skip_dir parent check (WalkBuilder handles .gitignore)
description:"Find files matching a glob pattern (e.g., '**/*.rs', 'src/**/*.tsx'). Respects .gitignore. Returns matching file paths sorted by modification time. Use this for natural path pattern matching instead of regex-based find_files."
73
+
description:"Find files matching a glob pattern (e.g., '**/*.rs', 'src/**/*.tsx'). Respects .gitignore via ignore crate. Returns matching relative file paths sorted by modification time (newest first). Returns empty string when no files match. Use this for natural path pattern matching instead of regex-based find_files."
0 commit comments