What's wrong with this entry?
When enabled, Claude Code shadows the system find and grep commands with faster embedded alternatives — bfs (breadth-first search) and ugrep — providing significantly improved search performance in the shell.
findis shadowed withbfs(breadth-first file search), configured with-regextype findutils-defaultfor compatibilitygrepis shadowed withugrep, configured with--ignore-files,--hidden,-I(skip binary), and automatic exclusion of.git,.svn,.hg,.bzrdirectories- Controlled by the
EMBEDDED_SEARCH_TOOLSenvironment variable - Only active when not running via SDK entrypoints (sdk-ts, sdk-py, sdk-cli)
- Shell aliases for
findandgrepare unaliased first to avoid conflicts - A tip in the system prompt mentions: "When using
find -regexwith alternation, put the longest alternative first"
Shell shadowing setup (search for "unalias find 2>/dev/null") — e6Y at line ~245057. Feature gate (search for "EMBEDDED_SEARCH_TOOLS")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.