{ "tools": [ { "type": "function", "function": { "name": "codebase_search", "description": "Find snippets of code from the codebase most relevant to the search query.\nThis is a semantic search tool, so the query should ask for something semantically matching what is needed.\nIf it makes sense to only search in particular directories, please specify them in the target_directories field.\nUnless there is a clear reason to use your own search query, please just reuse the user's exact query with their wording.\nTheir exact wording/phrasing can often be helpful for the semantic search query. Keeping the same exact question format can also be helpful.", "parameters": { "type": "object", "properties": { "query": { "type": "string", "description": "The search query to find relevant code. You should reuse the user's exact query/most recent message with their wording unless there is a clear reason not to." }, "target_directories": { "type": "array", "items": { "type": "string" }, "description": "Glob patterns for directories to search over" }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "query" ] } } }, { "type": "function", "function": { "name": "read_file", "description": "Read the contents of a file (and the outline).\n\nWhen using this tool to gather information, it's your responsibility to ensure you have the COMPLETE context. Each time you call this command you should:\n1) Assess if contents viewed are sufficient to proceed with the task.\n2) Take note of lines not shown.\n3) If file contents viewed are insufficient, and you suspect they may be in lines not shown, proactively call the tool again to view those lines.\n4) When in doubt, call this tool again to gather more information. Partial file views may miss critical dependencies, imports, or functionality.\n\nIf reading a range of lines is not enough, you may choose to read the entire file.\nReading entire files is often wasteful and slow, especially for large files (i.e. more than a few hundred lines). So you should use this option sparingly.\nReading the entire file is not allowed in most cases. You are only allowed to read the entire file if it has been edited or manually attached to the conversation by the user.", "parameters": { "type": "object", "properties": { "relative_workspace_path": { "type": "string", "description": "The path of the file to read, relative to the workspace root." }, "should_read_entire_file": { "type": "boolean", "description": "Whether to read the entire file. Defaults to false." }, "start_line_one_indexed": { "type": "integer", "description": "The one-indexed line number to start reading from (inclusive)." }, "end_line_one_indexed_inclusive": { "type": "integer", "description": "The one-indexed line number to end reading at (inclusive)." }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "relative_workspace_path", "should_read_entire_file", "start_line_one_indexed", "end_line_one_indexed_inclusive" ] } } }, { "type": "function", "function": { "name": "run_terminal_cmd", "description": "PROPOSE a command to run on behalf of the user.\nIf you have this tool, note that you DO have the ability to run commands directly on the USER's system.\n\nAdhere to these rules:\n1. Based on the contents of the conversation, you will be told if you are in the same shell as a previous step or a new shell.\n2. If in a new shell, you should `cd` to the right directory and do necessary setup in addition to running the command.\n3. If in the same shell, the state will persist, no need to do things like `cd` to the same directory.\n4. For ANY commands that would use a pager, you should append ` | cat` to the command (or whatever is appropriate). You MUST do this for: git, less, head, tail, more, etc.\n5. For commands that are long running/expected to run indefinitely until interruption, please run them in the background. To run jobs in the background, set `is_background` to true rather than changing the details of the command.\n6. Dont include any newlines in the command.", "parameters": { "type": "object", "properties": { "command": { "type": "string", "description": "The terminal command to execute" }, "is_background": { "type": "boolean", "description": "Whether the command should be run in the background" }, "explanation": { "type": "string", "description": "One sentence explanation as to why this command needs to be run and how it contributes to the goal." }, "require_user_approval": { "type": "boolean", "description": "Whether the user must approve the command before it is executed. Only set this to true if the command is safe and if it matches the user's requirements for commands that should be executed automatically." } }, "required": [ "command", "is_background", "require_user_approval" ] } } }, { "type": "function", "function": { "name": "list_dir", "description": "List the contents of a directory. The quick tool to use for discovery, before using more targeted tools like semantic search or file reading. Useful to try to understand the file structure before diving deeper into specific files. Can be used to explore the codebase.", "parameters": { "type": "object", "properties": { "relative_workspace_path": { "type": "string", "description": "Path to list contents of, relative to the workspace root. Ex: './' is the root of the workspace" }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "relative_workspace_path" ] } } }, { "type": "function", "function": { "name": "grep_search", "description": "Fast text-based regex search that finds exact pattern matches within files or directories, utilizing the ripgrep command for efficient searching.\nResults will be formatted in the style of ripgrep and can be configured to include line numbers and content.\nTo avoid overwhelming output, the results are capped at 50 matches.\nUse the include or exclude patterns to filter the search scope by file type or specific paths.\n\nThis is best for finding exact text matches or regex patterns.\nMore precise than semantic search for finding specific strings or patterns.\nThis is preferred over semantic search when we know the exact symbol/function name/etc. to search in some set of directories/file types.", "parameters": { "type": "object", "properties": { "query": { "type": "string", "description": "The regex pattern to search for" }, "case_sensitive": { "type": "boolean", "description": "Whether the search should be case sensitive" }, "include_pattern": { "type": "string", "description": "Glob pattern for files to include (e.g. '*.ts' for TypeScript files)" }, "exclude_pattern": { "type": "string", "description": "Glob pattern for files to exclude" }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "query" ] } } }, { "type": "function", "function": { "name": "edit_file", "description": "Use this tool to propose an edit to an existing file.\nThis will be read by a less intelligent model, which will quickly apply the edit. You should make it clear what the edit is, while also minimizing the unchanged code you write.\nWhen writing the edit, you should specify each edit in sequence, with the special comment `// ... existing code ...` to represent unchanged code in between edited lines.\nFor example:\n```\n// ... existing code ...\nFIRST_EDIT\n// ... existing code ...\nSECOND_EDIT\n// ... existing code ...\nTHIRD_EDIT\n// ... existing code ...\n```\nYou should bias towards repeating as few lines of the original file as possible to convey the change.\nBut, each edit should contain sufficient context of unchanged lines around the code you're editing to resolve ambiguity.\nDO NOT omit spans of pre-existing code without using the `// ... existing code ...` comment to indicate its absence.\nMake sure it is clear what the edit should be.\nYou should specify the following arguments before the others: [target_file]", "parameters": { "type": "object", "properties": { "target_file": { "type": "string", "description": "The target file to modify. Always specify the target file as the first argument and use the relative path in the workspace of the file to edit" }, "instructions": { "type": "string", "description": "A single sentence instruction describing what you are going to do for the sketched edit. This is used to assist the less intelligent model in applying the edit. Please use the first person to describe what you are going to do. Dont repeat what you have said previously in normal messages. And use it to disambiguate uncertainty in the edit." }, "code_edit": { "type": "string", "description": "Specify ONLY the precise lines of code that you wish to edit. **NEVER specify or write out unchanged code**. Instead, represent all unchanged code using the comment of the language you're editing in - example: `// ... existing code ...`" }, "blocking": { "type": "boolean", "description": "Whether this tool call should block the client from making further edits to the file until this call is complete. If true, the client will not be able to make further edits to the file until this call is complete." } }, "required": [ "target_file", "instructions", "code_edit", "blocking" ] } } }, { "type": "function", "function": { "name": "file_search", "description": "Fast file search based on fuzzy matching against file path. Use if you know part of the file path but don't know where it's located exactly. Response will be capped to 10 results. Make your query more specific if need to filter results further.", "parameters": { "type": "object", "properties": { "query": { "type": "string", "description": "Fuzzy filename to search for" }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "query", "explanation" ] } } }, { "type": "function", "function": { "name": "delete_file", "description": "Deletes a file at the specified path. The operation will fail gracefully if:\n - The file doesn't exist\n - The operation is rejected for security reasons\n - The file cannot be deleted", "parameters": { "type": "object", "properties": { "target_file": { "type": "string", "description": "The path of the file to delete, relative to the workspace root." }, "explanation": { "type": "string", "description": "One sentence explanation as to why this tool is being used, and how it contributes to the goal." } }, "required": [ "target_file" ] } } }, { "type": "function", "function": { "name": "reapply", "description": "Calls a smarter model to apply the last edit to the specified file.\nUse this tool immediately after the result of an edit_file tool call ONLY IF the diff is not what you expected, indicating the model applying the changes was not smart enough to follow your instructions.", "parameters": { "type": "object", "properties": { "target_file": { "type": "string", "description": "The relative path to the file to reapply the last edit to." } }, "required": [ "target_file" ] } } }, { "type": "function", "function": { "name": "parallel_apply", "description": "When there are multiple locations that can be edited in parallel, with a similar type of edit, use this tool to sketch out a plan for the edits.\nYou should start with the edit_plan which describes what the edits will be.\nThen, write out the files that will be edited with the edit_files argument.\nYou shouldn't edit more than 50 files at a time.", "parameters": { "type": "object", "properties": { "edit_plan": { "type": "string", "description": "A detailed description of the parallel edits to be applied.\nThey should be specified in a way where a model just seeing one of the files and this plan would be able to apply the edits to any of the files.\nIt should be in the first person, describing what you will do on another iteration, after seeing the file." }, "edit_regions": { "type": "array", "items": { "type": "object", "description": "The region of the file that should be edited. It should include the minimum contents needed to read in addition to the edit_plan to be able to apply the edits. You should add a lot of cushion to make sure the model definitely has the context it needs to edit the file.", "properties": { "relative_workspace_path": { "type": "string", "description": "The path to the file to edit." }, "start_line": { "type": "integer", "description": "The start line of the region to edit. 1-indexed and inclusive." }, "end_line": { "type": "integer", "description": "The end line of the region to edit. 1-indexed and inclusive." } }, "required": [ "relative_workspace_path" ] } } }, "required": [ "edit_plan", "edit_regions" ] } } } ] }