edit_html_range
Replace a range of lines in an HTML file with new content by sending only the changed lines, reducing token usage.
Instructions
Replace a range of lines in an HTML file with new content (most token-efficient edit — send only the changed lines)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_line | Yes | Last line to replace (1-indexed, inclusive) | |
| file_path | Yes | ||
| start_line | Yes | First line to replace (1-indexed) | |
| new_content | Yes | Replacement content for the specified lines |