Simple File Tree

v1.0.0

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...

0· 43·0 current·0 all-time
by목진왕@jinwangmok
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (show directory tree) align with required binaries (find, sort, sed), the provided SKILL.md usage, and the included run.sh. The requested tools are exactly what the task needs.
Instruction Scope
SKILL.md and run.sh only reference running find|sort|sed on a user-supplied directory and validating the numeric depth. There are no instructions to read unrelated files, environment variables, or send data externally.
Install Mechanism
No install spec; this is instruction-only with a small helper script included. Nothing is downloaded or written to arbitrary locations during install.
Credentials
No environment variables, credentials, or config paths are required. The declared binaries are appropriate and proportionate to the feature.
Persistence & Privilege
Skill is not forced-always, does not request persistent privileges, and does not modify other skills or system-wide settings.
Assessment
This skill appears coherent and lightweight. It will list files and directories from whatever path you provide, so avoid pointing it at locations containing sensitive files if you don't want those names displayed. The included run.sh performs reasonable argument validation; review it before use (it's short and readable). Ensure your environment has find, sort, and sed available. No network access or secrets are requested by this skill.

Like a lobster shell, security has layers — review code before you run it.

latestvk974ed257dt7czk8ce4mf5eksn83s9tj

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🌳 Clawdis
Binsfind, sort, sed

SKILL.md

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)

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…