- Updated the builtinSearch function to delegate search operations to the websearch tool, improving modularity and maintainability. - Enhanced context handling by passing the agent context to builtinSearch, allowing for user and team identification during searches. - Added a new DecryptValue function in cloud.go to streamline value decryption, delegating to the existing config.DecryptValue method. - Updated .gitignore to include tools/README.md for better project organization.
20 lines
541 B
JSON
20 lines
541 B
JSON
{
|
|
"name": "doclist",
|
|
"description": "List or search Yao process documentation. Returns matching entries with name, group, and description.",
|
|
"process": "tools.doclist",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"keyword": {
|
|
"type": "string",
|
|
"description": "Search keyword (empty to list all)"
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"description": "Max results (default 20)",
|
|
"default": 20
|
|
}
|
|
}
|
|
},
|
|
"x-process-args": ["$args.keyword", "$args.limit"]
|
|
}
|