--- name: read_file description: Read a file from the workspace with optional line range. Use this to view large tool outputs, logs, or any file in /workspace. parameters: path: type: string description: Path to the file to read (must be under /workspace) required: true offset: type: integer description: Start reading from this line number (default 1) required: false limit: type: integer description: Maximum number of lines to return (default 200) required: false ---