Qveris
v1.0.0通过 QVeris API 搜索和执行动态工具。当需要动态查找和调用外部 API/工具(如天气、搜索、数据检索、股票交易等)时使用。
详细分析 ▾
运行时依赖
安装命令
点击复制本土化适配说明
Qveris 安装说明: 安装命令:["openclaw skills install qveris-skill","npx clawhub@latest install qveris-skill"]
技能文档
QVeris 工具搜索和执行 QVeris 提供动态工具发现和执行 - 按能力搜索工具,然后带参数执行它们。 设置 需要环境变量:QVERIS_API_KEY - 从 https://qveris.ai 获取 快速开始 搜索工具 uv run scripts/qveris_tool.py search "weather forecast API" 执行工具 uv run scripts/qveris_tool.py execute openweathermap_current_weather --search-id --params '{"city": "London", "units": "metric"}' 脚本用法 scripts/qveris_tool.py [options] 命令: search 按能力描述搜索工具 execute 带参数执行特定工具 选项: --limit N 搜索结果最大数(默认:5) --search-id ID 来自之前搜索的搜索 ID(执行时必需) --params JSON 工具参数作为 JSON 字符串 --max-size N 响应大小最大字节数(默认:20480) --json 输出原始 JSON 而不是格式化显示 工作流 搜索:描述所需的能力(而不是特定参数) 好: "weather forecast API" 坏: "get weather for London" 选择:查看工具的 success_rate 和 avg_execution_time 执行:调用工具带 tool_id、search_id 和参数 示例会话 # 查找天气工具 uv run scripts/qveris_tool.py search "current weather data" # 执行带返回的 tool_id 和 search_id uv run scripts/qveris_tool.py execute openweathermap_current_weather \ --search-id abc123 \ --params '{"city": "Tokyo", "units": "metric"}' 用例 天气数据:获取当前天气、任何位置的预报 股票市场:查询股票价格、历史数据、收益日历 搜索:网页搜索、新闻检索 数据 API:货币兑换、地理位置、翻译 更多:QVeris 聚合了成千上万的 API 工具