edit_block
Perform precise text replacements in files using a block-based format. Define search and replace content for targeted edits, with verification after application. Ideal for minor changes under 20% of file size.
Instructions
Apply surgical text replacements to files. Best for small changes (<20% of file size). Multiple blocks can be used for separate changes. Will verify changes after application. Format: filepath, then <<<<<<< SEARCH, content to find, =======, new content, >>>>>>> REPLACE.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockContent | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockContent": {
"type": "string"
}
},
"required": [
"blockContent"
],
"type": "object"
}