# What would be ideal:
fs_read(".", mode="Find", pattern="*auth*")
# Returns: {"type": "find", "matches": [{"path": "src/auth/login.ts"}, ...]}
This would let find_files be fully native with zero Python filtering. The Directory + Python glob interim works correctly but depth=10 means contextinator walks the whole tree upfront even if only 2 files match — a native Find mode would be more efficient.
This would let
find_filesbe fully native with zero Python filtering. TheDirectory+ Python glob interim works correctly butdepth=10means contextinator walks the whole tree upfront even if only 2 files match — a nativeFindmode would be more efficient.