AI/manifest.json
|
{
"RESOLVE-RIPGREP": { "Name": "RESOLVE-RIPGREP", "Description": "Resolve ripgrep executable path from environment or PATH", "Parameters": {}, "Module": "TechToolbox.Agent.Builtin", "Meta": {} }, "RIPGREP": { "Name": "RIPGREP", "Description": "Fast recursive search and line counting", "Parameters": { "directory": { "Mandatory": true, "Type": "System.String", "Help": "Directory to search" }, "pattern": { "Mandatory": false, "Type": "System.String", "Help": "Optional search pattern" }, "command": { "Mandatory": true, "Type": "System.String", "Help": "Allowed command name" } }, "Module": "External", "Meta": { "Executable": "RESOLVE-RIPGREP", "AllowedCommands": { "count-lines": "rg -n \"\" {directory}", "count-matches": "rg --count-matches \"\" {directory}", "search": "rg {pattern} {directory}" } } } } |