core-agent-ide/codex-rs/file-search
RQfreefly ec3738b47e
feat: move file name derivation into codex-file-search (#8334)
## Summary

  - centralize file name derivation in codex-file-search
  - reuse the helper in app-server fuzzy search to avoid duplicate logic
  - add unit tests for file_name_from_path

  ## Testing

  - cargo test -p codex-file-search
  - cargo test -p codex-app-server
2025-12-19 12:50:55 -08:00
..
src feat: move file name derivation into codex-file-search (#8334) 2025-12-19 12:50:55 -08:00
Cargo.toml feat: move file name derivation into codex-file-search (#8334) 2025-12-19 12:50:55 -08:00
README.md feat: standalone file search CLI (#1386) 2025-06-25 13:29:03 -07:00

codex_file_search

Fast fuzzy file search tool for Codex.

Uses https://crates.io/crates/ignore under the hood (which is what ripgrep uses) to traverse a directory (while honoring .gitignore, etc.) to produce the list of files to search and then uses https://crates.io/crates/nucleo-matcher to fuzzy-match the user supplied PATTERN against the corpus.