Openakita list-directory
List directory contents including files and subdirectories. When you need to explore directory structure, find specific files, or check what exists in a folder.
install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/list-directory" ~/.claude/skills/openakita-openakita-list-directory && rm -rf "$T"
manifest:
skills/system/list-directory/SKILL.mdsource content
List Directory
列出目录内容。
Parameters
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| path | string | 是 | 目录路径 |
Returns
- 文件名和类型
- 文件大小
- 修改时间
Examples
列出当前目录:
{"path": "."}
列出指定目录:
{"path": "/home/user/documents"}
Related Skills
: 读取文件内容read-file
: 写入文件write-file