yao/tools/agent/download_schema.json
Max da4a803c11 feat(locale): enhance locale handling and agent functionalities
- Added locale support in various components, including the Assistant's execution context and agent tools, to improve internationalization.
- Updated the `pickNodeByFilter` function to include a fallback mechanism for host_exec nodes when no container nodes are available.
- Introduced a new `agent_reference` tool for downloading agent source code for read-only study, alongside updates to the `agent_download` tool to restrict downloads to the 'smith' namespace.
- Enhanced documentation and tests to reflect the new functionalities and ensure robust locale extraction and handling.
2026-05-13 21:25:49 +08:00

16 lines
553 B
JSON

{
"name": "agent_download",
"description": "Download a smith-namespace agent into the development directory for editing. Restricted to the 'smith' namespace only. For read-only reference of other agents, use agent_reference instead.",
"process": "tools.agent_download",
"inputSchema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Agent ID in dot notation, must be smith namespace (e.g. 'smith.weather')"
}
},
"required": ["id"]
},
"x-process-args": ["$args.id"]
}