searchGlob
Locate files in a directory by matching a specific glob pattern. Specify the pattern and path to streamline file searches efficiently.
Instructions
Search for files matching a pattern
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | The directory to search in. Defaults to the current working directory. | |
pattern | Yes | The glob pattern to match files against |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The directory to search in. Defaults to the current working directory.",
"type": "string"
},
"pattern": {
"description": "The glob pattern to match files against",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}