/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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install catfee-dokobot - After installation, invoke the skill by name or use
/catfee-dokobot - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 91 downloads so far.
How do I install CatFee Dokobot?
Run "/install catfee-dokobot" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is CatFee Dokobot free?
Yes, CatFee Dokobot is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does CatFee Dokobot support?
CatFee Dokobot is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created CatFee Dokobot?
It is built and maintained by 冢猫 (@glory904649854); the current version is v1.0.0.