SkillsHooksPromptsAgentsPersonasModelsPoliciesToolsTemplatesBundlesCategoriesStart here
← Tools
To toolcommandcodingfs-readstable

glob

Enumerate paths matching a glob pattern.

id tool/globv1.0.0function glob

Signature

ParameterTypeRequiredDescription
patternstringyesGlob pattern
rootstringnoRoot path
returnsarrayMatching 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.