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
Added on

NPX Install

npx skill4agent add arcaneorion/alice-single file_explorer

Tags

Translated version includes tags in frontmatter

SKILL.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
ls/cat
commands.

Core Features

  • Project Tree Generation (
    --tree
    )
    : Quickly display the project directory structure, with support for ignoring files specified in ignore files.
  • Fuzzy Search (
    --search
    )
    : Quickly locate files by filename, similar to
    fzf
    .
  • Safe Reading (
    --read
    )
    : Automatically detects file size. If the file is too large, provides chunked reading suggestions to prevent context overflow.

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
--read
first to get safe segments.