read_range
Read a specific line range from a file. Use when you know exact lines to reduce token consumption.
Instructions
Read a specific line range from a file. Use when you know exact lines — lighter than reading the whole file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path | |
| start_line | Yes | Start line (1-indexed) | |
| end_line | Yes | End line (1-indexed, inclusive) | |
| session_id | No | Optional Claude Code session_id for cross-restart dedup (see smart_read). | |
| force | No | Bypass dedup (see smart_read.force). |