Simple File Tree

Other

Show the directory tree structure of a folder. Displays files and subdirectories in a visual tree format. Use when the user wants to see what files are in a folder.

Install

openclaw skills install simple-file-tree

File Tree

Show the directory tree structure of any folder with a single command.

Usage

find <DIR_PATH> -maxdepth 3 | sort | sed 's|[^/]*/|  |g'

Arguments:

#NameDescription
1DIR_PATHPath to the directory to display

Example

find /home/user/project -maxdepth 3 | sort | sed 's|[^/]*/|  |g'

Output:

  project
    src
      main.py
      utils.py
    README.md

Success / Failure

  • Success: Indented file listing printed to stdout (exit code 0)
  • Failure: Error message (exit code non-zero, e.g. directory not found)