Read file
A lightweight, secure executor for Claude Agent Skills. Inspired by OpenClaw but strictly designed with zero-trust whitelisting, written in Rust.
npx -y skills add stephen94125/peon-lib --skill read-fileAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Read the contents of a file from the filesystem and return them as a string. Use when the user asks to open, read, view, or show the contents of a specific file path.
SKILL.md
0.9 KB, as published. Nobody here has run it
Read File
When the user provides a file path, use the read_file tool to retrieve its contents.
When to use this skill
- User says "open", "read", "view", "show", or "display" followed by a path.
- User pastes a path and asks to inspect or summarize the file.
How to read a file
Call the read_file tool with the path exactly as provided by the user.
If the path is relative, resolve it against the current working directory.
Gotchas
- Binary files (images, PDFs, executables) will return garbled output — warn the user.
- Very large files may be truncated — inform the user if so.
- Permission errors should be surfaced clearly with the exact path that was denied.