You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Inserts content at specific line positions in a file. This is the primary tool for adding new content and code (functions/methods/classes, imports, attributes etc.) as it allows for precise insertions without overwriting existing content. The tool uses an efficient line-based insertion system that maintains file integrity and proper ordering of multiple insertions. Beware to use the proper indentation. This tool is the preferred way to add new content and code to files.
6
+
Parameters:
7
+
- path: (required) The path of the file to insert content into (relative to the current working directory ${args.cwd.toPosix()})
8
+
- operations: (required) A JSON array of insertion operations. Each operation is an object with:
9
+
* start_line: (required) The line number where the content should be inserted. The content currently at that line will end up below the inserted content.
10
+
* content: (required) The content to insert at the specified position. IMPORTANT NOTE: If the content is a single line, it can be a string. If it's a multi-line content, it should be a string with newline characters (\n) for line breaks. Make sure to include the correct indentation for the content.
11
+
Usage:
12
+
<insert_content>
13
+
<path>File path here</path>
14
+
<operations>[
15
+
{
16
+
"start_line": 10,
17
+
"content": "Your content here"
18
+
}
19
+
]</operations>
20
+
</insert_content>
21
+
Example: Insert a new function and its import statement
22
+
<insert_content>
23
+
<path>File path here</path>
24
+
<operations>[
25
+
{
26
+
"start_line": 1,
27
+
"content": "import { sum } from './utils';"
28
+
},
29
+
{
30
+
"start_line": 10,
31
+
"content": "function calculateTotal(items: number[]): number {\n return items.reduce((sum, item) => sum + item, 0);\n}"
0 commit comments