Read File

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.

stephen94125 6090549 895 B Updated

File contents

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.

stephen94125/peon-lib/tree/main/skills/read-file commit 6090549bba

Frequently asked questions

npx skillmds@latest add stephen94125/read-file