file_explorer
Original:🇨🇳 Chinese
Translated
1 scriptsChecked / no sensitive code detected
Efficient project file browser. Use it when you need to list the entire project structure, fuzzy search files, or safely read (supports chunking of large files) local codebase content.
9installs
Sourcearcaneorion/alice-single
Added on
NPX Install
npx skill4agent add arcaneorion/alice-single file_explorerTags
Translated version includes tags in frontmatterSKILL.md Content (Chinese)
View Translation Comparison →File Explorer Skill
This skill is specifically designed for Alice to explore complex projects, providing a safer and more efficient alternative to native commands.
ls/catCore Features
- Project Tree Generation (): Quickly display the project directory structure, with support for ignoring files specified in ignore files.
--tree - Fuzzy Search (): Quickly locate files by filename, similar to
--search.fzf - Safe Reading (): Automatically detects file size. If the file is too large, provides chunked reading suggestions to prevent context overflow.
--read
Usage
Run in the terminal:
bash
# View project tree structure (default depth is 2)
python skills/file_explorer/explorer.py --tree --depth 3
# Fuzzy search files containing "config"
python skills/file_explorer/explorer.py --search "config"
# Safely read file content
python skills/file_explorer/explorer.py --read "agent.py"Notes
Alice has permission restrictions. This skill can only access files under the project root directory. Do not attempt to access content outside the allowed path.
For files larger than 10KB, please use first to get safe segments.
--read