Openakita read-file
Read file content for text files. When you need to check file content, analyze code or data, or get configuration values.
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/read-file" ~/.claude/skills/openakita-openakita-read-file && rm -rf "$T"
manifest:
skills/system/read-file/SKILL.mdsource content
Read File
读取文件内容。
Parameters
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| path | string | 是 | 文件路径 |
Examples
读取配置文件:
{"path": "config.json"}
读取代码文件:
{"path": "src/main.py"}
Notes
- 适用于文本文件
- 使用 UTF-8 编码
- 二进制文件需要特殊处理
Related Skills
: 写入文件write-file
: 列出目录内容list-directory