summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-17 17:13:26 -0400
committerN. Taylor Mullen <[email protected]>2025-04-17 14:15:20 -0700
commitece8630c3327588f291a165599d44fade2c63425 (patch)
tree5d307d07ee3adf9dfe6f431814920de5ea7984b5
parent81ba61df7f967f141cd8abc57d58a3612dfd4c2b (diff)
Revert camelCasing for schemas
-rw-r--r--packages/cli/src/tools/edit.tool.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/tools/edit.tool.ts b/packages/cli/src/tools/edit.tool.ts
index 6f7ebe8a..6b7f02cf 100644
--- a/packages/cli/src/tools/edit.tool.ts
+++ b/packages/cli/src/tools/edit.tool.ts
@@ -66,7 +66,7 @@ export class EditTool extends BaseTool<EditToolParams, EditToolResult> {
`Replaces a SINGLE, UNIQUE occurrence of text within a file. Requires providing significant context around the change to ensure uniqueness. For moving/renaming files, use the Bash tool with \`mv\`. For replacing entire file contents or creating new files use the ${WriteFileTool.Name} tool. Always use the ${ReadFileTool.Name} tool to examine the file before using this tool.`,
{
properties: {
- filePath: {
+ file_path: {
description: 'The absolute path to the file to modify. Must start with /. When creating a new file, ensure the parent directory exists (use the `LS` tool to verify).',
type: 'string'
},