-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
29 lines (29 loc) · 1.05 KB
/
tools.json
File metadata and controls
29 lines (29 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"tools": [
{
"name": "Grep",
"description": "Searches for patterns in files using regular expressions. Supports recursive searches and file type filtering.",
"tags": ["search", "pattern", "regex", "file"]
},
{
"name": "Glob",
"description": "Fast file pattern matching tool that works with any codebase size. Supports glob patterns like **/*.js or src/**/*.ts.",
"tags": ["file", "pattern", "search", "glob"]
},
{
"name": "Edit",
"description": "Performs exact string replacements in files. Supports multi-line replacements and preserves file formatting.",
"tags": ["edit", "file", "replace", "string"]
},
{
"name": "Read",
"description": "Reads a file from the local filesystem. Supports reading specific line ranges and file types.",
"tags": ["file", "read", "text"]
},
{
"name": "Write",
"description": "Writes content to a file. Supports creating new files and overwriting existing ones.",
"tags": ["file", "write", "create"]
}
]
}