read_file_segment
Read a specific line range from a repository file. Provide the file path and start/end line numbers to extract that segment.
Instructions
Read a specific line range from a file in the repo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Repo-relative path, e.g. 'src/app.js'. | |
| start_line | Yes | First line to read (1-based). | |
| end_line | Yes | Last line to read (inclusive). |