Simple File Tree
v1.0.0Show 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...
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & 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.
latest
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:
| # | Name | Description |
|---|---|---|
| 1 | DIR_PATH | Path 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 totalSelect a file
Select a file to preview.
Comments
Loading comments…
