/install litebrowse
LiteBrowse Skill
Direct access:
Purpose
LiteBrowse is an OpenClaw skill for low-token webpage research.
Use it when:
- the user wants facts from a specific webpage
- the page is long or cluttered
- token cost matters
- you need the most relevant passages first instead of full-page dumps
Core Rule
Do not load or summarize the full page first.
Always run the local extractor before reasoning on webpage content:
python3 ./scripts/web_relevance_extract.py "\x3Curl-or-html-file>" "\x3Cquery>"
The extractor returns only the most relevant blocks under a fixed character budget. Use that compact output as the default context for answering.
Required Workflow
- Restate the information target as a short query string.
- Run:
python3 ./scripts/web_relevance_extract.py "\x3Csource>" "\x3Cquery>" --top-k 5 --max-chars 2400 --format json - Read only the returned blocks.
- Answer from those blocks if they are sufficient.
- Only if recall is clearly insufficient, rerun with one controlled expansion:
- increase
--top-k - or increase
--max-chars - or narrow / refine the query
- increase
- Do not jump to raw-page scraping unless the extractor failed.
Budget Discipline
- Prefer
--max-chars 1200to2400for narrow fact lookup. - Keep
--top-kbetween3and6unless the user explicitly asks for breadth. - Narrow the query instead of widening the token budget when possible.
- If the first run already contains the answer, stop there.
Output Discipline
When answering:
- cite which returned block supports the answer
- say when the extractor output is incomplete or ambiguous
- distinguish extracted text from your inference
- do not claim the full page was reviewed unless it actually was
Examples
Find pricing details from a long page:
python3 ./scripts/web_relevance_extract.py "https://example.com/pricing" "pricing tiers api limits enterprise" --max-chars 1600 --top-k 4 --format text
Find job requirements from a careers page:
python3 ./scripts/web_relevance_extract.py "https://example.com/jobs/ml-engineer" "requirements python llm retrieval location" --max-chars 1800 --top-k 5 --format json
Use a saved HTML file:
python3 ./scripts/web_relevance_extract.py "/tmp/page.html" "refund policy cancellation deadline" --max-chars 1200
Failure Handling
If the page cannot be fetched or parsed:
- report the fetch or parse failure directly
- ask for a local HTML copy if network access is blocked
- do not fabricate an answer from URL guesses
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install litebrowse - 安装完成后,直接呼叫该 Skill 的名称或使用
/litebrowse触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
LiteBrowse 是什么?
Extracts and summarizes the most relevant webpage passages for focused, low-token research without loading or summarizing the full page. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 140 次。
如何安装 LiteBrowse?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install litebrowse」即可一键安装,无需额外配置。
LiteBrowse 是免费的吗?
是的,LiteBrowse 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
LiteBrowse 支持哪些平台?
LiteBrowse 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 LiteBrowse?
由 agitalent(@agitalent)开发并维护,当前版本 v0.1.1。