Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Generates an ASCII tree or JSON representation of a directory structure. Use when you need to visualize file hierarchies, document folder contents, or debug...
Generates an ASCII tree or JSON representation of a directory structure. Use when you need to visualize file hierarchies, document folder contents, or debug...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
A utility skill to visualize directory structures in ASCII tree format or JSON.
# Generate ASCII tree for current directory node skills/folder-tree-generator/index.js # Generate ASCII tree for specific directory node skills/folder-tree-generator/index.js /path/to/dir # Generate JSON output node skills/folder-tree-generator/index.js --json # Limit depth node skills/folder-tree-generator/index.js --depth 2
--json: Output as JSON. --depth <n>: Limit recursion depth. [dir]: Directory to scan (default: .).
ASCII Output: . โโโ file1.txt โโโ dir1 โโโ file2.txt โโโ file3.txt JSON Output: { "name": ".", "type": "directory", "children": [ { "name": "file1.txt", "type": "file" }, { "name": "dir1", "type": "directory", "children": [...] } ] }
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.