glob
Enumerate paths matching a glob pattern.
id tool/globv1.0.0function glob
Signature
| Parameter | Type | Required | Description |
|---|---|---|---|
pattern | string | yes | Glob pattern |
root | string | no | Root path |
| returns | array | Matching paths. |
Tool definition for the model
{
"name": "glob",
"description": "Return paths matching a glob.",
"input_schema": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "Glob pattern"
},
"root": {
"type": "string",
"description": "Root path"
}
},
"required": [
"pattern"
]
}
}Author convergent-systems-key. Source convergent-systems-co/agent-atoms (original ↗). License Apache-2.0. Re-typed from tool-definition by scripts/migrate-policy-tool.py.