mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-16 17:46:20 +00:00
* fix(sandbox): reverse-resolve forward-slash spellings of Windows host paths Forward resolution deliberately spells resolved paths with forward slashes in commands and file content (#3869: backslashes break bash escapes), but the reverse scanner anchored its matches on the native backslash base, so on Windows every forward-resolved path that came back in command output or agent-written files leaked the raw host path instead of mapping to its container path. Match separator-agnostically in LocalSandbox like sandbox.tools already does, align the two regex-cache tests with the documented spellings, and refresh the path_patterns rationale comments that described the old asymmetry. * test(sandbox): pin the reverse mask to separator-agnostic matching The flag is the entire Windows fix but is invisible on POSIX CI, so assert the routing kwargs in the direct-helper wiring test — the same pin test_tools_mask_patterns_route_through_the_helper already applies to the sandbox.tools copy. A revert to separator-exact matching now fails on every platform instead of silently reintroducing the host-path leak on Windows. --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>