技能搜索加载器
动态发现与加载Cla
Yutori-web-research 通过调用 Yutori 的 Research API 与 Browsing API,在云端完成主题研究、来源收集与结构化信息提取。适用于需要专门网页代理的场景,如学术论文检索、竞品信息收集、产品资料整理或从特定站点提取列表数据。
前置条件
安装指令
本技能依赖 Node 运行脚本,需确保以下文件存在:
# 检查或放置运行脚本于技能目录
ls scripts/yutori-research.mjs
# 若缺失,需手动准备该脚本以创建并轮询研究任务
典型工作流
1. 研究主题(生成简报+阅读清单)
cd /Users/juanpin/.openclaw/workspace
node yutori-research.mjs "Research reinforcement learning papers from the last 30 days. Output (1) a concise 1-page brief of themes/trends and (2) a curated list of 12 papers with title, 2-sentence summary, why it matters, and a link. Prefer arXiv + conference links."
2. 浏览站点并提取信息
curl --request POST \
--url "$YUTORI_API_BASE/v1/browsing/tasks" \
--header "x-api-key: $YUTORI_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"task": "Give me a list of all employees (names and titles) of Yutori.",
"start_url": "https://yutori.com",
"max_steps": 60
}'
轮询至状态为 succeeded 后,返回去重结果。
见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | 研究主题描述或浏览任务指令;起始URL(浏览场景);最大步骤数 max_steps(可选);环境变量 YUTORI_API_KEY 与 YUTORI_API_BASE |
| 输出 | 研究简报(主题趋势摘要)、精选阅读清单(含标题/摘要/链接)、结构化提取数据、任务状态与 view_url |
| 适用人群 | 学术研究人员、竞争情报分析师、运营自动化人员、需云端浏览器替代本地方案的用户 |
| 不包含 | API Key 申请流程、Node 脚本具体代码、超步骤限制的多页操作、需登录或验证码的站点访问 |
原始链接:https://github.com/openclaw/skills/tree/main/skills/juanpin/yutori-web-research/SKILL.md
来源类型:GitHub 仓库