yao/tools/agent/list_schema.json
Max 639f0c59fc feat(assistant): add hot-reload functionality for assistants and enhance gRPC metadata handling
- Implemented AssistantReloadFunc to enable hot-reloading of assistants after deployment, improving deployment flexibility.
- Enhanced gRPC authProvider to include workspace and sandbox IDs from incoming context metadata, enriching the authentication context.
- Updated tools to support new agent-related functionalities, including listing, downloading, deploying, and connecting agents.
- Expanded system tools documentation to include new agent commands, ensuring comprehensive guidance for users.
2026-05-13 14:52:32 +08:00

15 lines
474 B
JSON

{
"name": "agent_list",
"description": "List available agents on the host. Returns agent ID, name, description, and capabilities. Optionally filter by namespace.",
"process": "tools.agent_list",
"inputSchema": {
"type": "object",
"properties": {
"namespace": {
"type": "string",
"description": "Optional namespace filter (e.g. 'yao', 'smith'). If omitted, lists all agents."
}
}
},
"x-process-args": ["$args.namespace"]
}