/install catfee-dokobot
CatFee Dokobot Skill
Use dokobot to read web pages through a real Chrome browser, enabling JavaScript rendering for dynamic/SPA pages.
Prerequisites
dokobotCLI installed globally:npm install -g @dokobot/cli- Chrome browser with Dokobot extension installed
- Local bridge running:
dokobot install-bridge(one-time setup) - Chrome must be open with the Dokobot extension enabled for
--localmode to work
Core Commands
Check Bridge Status
dokobot doko list
Shows connected browsers. If empty, open Chrome with the Dokobot extension.
Read a Web Page (Local Mode - Free)
dokobot read --local "\x3CURL>" --timeout 60000
Reads a page through local Chrome. Wait for --timeout (default 30s) to let JS render.
For dynamic pages (JS-rendered data):
dokobot read --local "\x3CURL>" --timeout 60000
Use --timeout 60000 (60s) for pages with heavy JS loading. For very slow pages, increase to 90000.
To continue a session (for paginated content):
dokobot read "\x3CURL>" --session-id \x3CSESSION_ID> --screens 5
Close a Session
dokobot doko close \x3CSESSION_ID>
Workflow
- Check bridge is running:
dokobot doko list - If no devices: Open Chrome with Dokobot extension, wait a few seconds, retry
- Read page:
dokobot read --local "\x3CURL>" --timeout 60000 - Parse output: Extract the data needed from the markdown output
- Present results: Format clearly for the user
Tips
- Delay for dynamic content: Use
--timeout 60000or higher. Pages like East Money (东方财富) data centers need 45-60 seconds to render. - Chrome not responding: If bridge shows device but read fails, close and reopen Chrome
- Session continuity: For multi-page reading, use
--session-idfrom previous read to continue - Headless limitation: If Chrome is closed or the extension is disabled, local mode won't work
Common Sites
| Site | URL Pattern | Notes |
|---|---|---|
| 东方财富 行情中心 | https://quote.eastmoney.com/changes |
盘口异动,60s timeout |
| 东方财富 龙虎榜 | https://data.eastmoney.com/stock/lhb.html |
60s timeout |
| 东方财富 个股资金流向 | https://data.eastmoney.com/zjlx/\x3CCODE>.html |
CODE = stock code without market prefix |
| 东方财富 数据中心 | https://data.eastmoney.com/ |
60s timeout |
Troubleshooting
| Problem | Solution |
|---|---|
| "No available devices" | Open Chrome with Dokobot extension enabled |
| "Bridge not running" | Run dokobot install-bridge |
| Data missing/incomplete | Increase --timeout to 90000 |
| Page shows "not found" | URL may have changed; search for correct URL |
| Read times out | Use longer --timeout or try again |
Example Workflows
Monitor Stock Changes (Every 30s × 6)
for ($i = 1; $i -le 6; $i++) {
Write-Host "=== 第${i}次刷新 $(Get-Date -Format 'HH:mm:ss') ==="
$result = dokobot read --local "\x3CURL>" --timeout 60000 2>&1
# Parse relevant lines
if ($i -lt 6) { Start-Sleep -Seconds 30 }
}
Read Dynamic Data Page
dokobot read --local "https://data.eastmoney.com/stock/lhb.html" --timeout 60000
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install catfee-dokobot - 安装完成后,直接呼叫该 Skill 的名称或使用
/catfee-dokobot触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
CatFee Dokobot 是什么?
Use dokotom (browser automation via real Chrome) to read web pages, extract JS-rendered content, and monitor dynamic data. Use when you need to fetch content... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 91 次。
如何安装 CatFee Dokobot?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install catfee-dokobot」即可一键安装,无需额外配置。
CatFee Dokobot 是免费的吗?
是的,CatFee Dokobot 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
CatFee Dokobot 支持哪些平台?
CatFee Dokobot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 CatFee Dokobot?
由 冢猫(@glory904649854)开发并维护,当前版本 v1.0.0。