read
Installation
SKILL.md
Read Tool
Read a file's contents with line numbers.
REQUIRED: path (absolute path) OPTIONAL: limit (max lines), offset (start line, 0-indexed)
RULES:
- Always use absolute paths, never relative
- Use limit+offset for large files (read in chunks of 100-200 lines)
- Returns format: "N\tline_content" (tab-separated line number + content)
EXAMPLE:
{"name": "Read", "input": {"path": "/absolute/path/to/file.py"}}