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":"Read the contents of a file. Read files before editing them. Use this to inspect code, configs, and logs before making changes. For large files, use offset and limit to read specific line ranges instead of the whole file. Output includes line numbers. Prefer this over run_command for reading files.",
59
+
"description":"Read the contents of a file. Read files before editing them. Use this to inspect code, configs, and logs before making changes. For large files, use offset and limit to read specific line ranges instead of the whole file.",
"description":"Make a targeted edit by replacing old_string with new_string exactly once. Read the file first. Prefer this over write_file for localized changes. old_string must match the current file contents exactly, including whitespace. Include enough context to make the match unique.",
94
+
"description":"Make a targeted edit by replacing old_string with new_string exactly once. Read the file first. Prefer this over write_file for localized changes. old_string must match the current file contents exactly, including whitespace.",
"description":"List files and directories at a path. Use this to explore the workspace before reading or editing files. Returns names and types (file/directory).",
112
+
"description":"List files and directories at a path. Use this to explore the workspace before reading or editing files.",
"description":"Search for text in files within a directory. Prefer this over run_command for codebase exploration. Returns file paths and matching lines with context.",
128
+
"description":"Search for text in files within a directory. Prefer this over run_command for codebase exploration.",
"description":"Run a shell command and return its output. Use this mainly for build, test, lint, git, or validation tasks. Prefer read/search/list tools over shell commands for basic exploration. Requires user approval before execution. Avoid for reading files - use read_file instead.",
145
+
"description":"Run a shell command and return its output. Use this mainly for build, test, lint, git, or validation tasks. Prefer read/search/list tools over shell commands for basic exploration. Requires user approval before execution.",
"description":"Find files or directories by partial name anywhere in the workspace. Use this when you do not know the exact location of something. Faster than run_command find.",
162
+
"description":"Find files or directories by partial name anywhere in the workspace. Use this when you do not know the exact location of something.",
0 commit comments