/install boxed-fetch
boxed-fetch
WebAssembly-based sandboxed web fetcher for retrieving URL content and extracting readable text.
Trigger when: user asks to fetch a URL, scrape webpage content, extract readable text from HTML, or get page content from a specific URL / 抓取网页、获取URL内容、提取可读文本、网页内容抓取。
Quick Start
-
Download WASM file (first time only):
wasm-sandbox-download({ url: "https://raw.githubusercontent.com/guyoung/wasm-sandbox-openclaw-skills/main/boxed-fetch/files/boxed-fetch-component.wasm", dest: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm" }) -
Run fetch:
wasm-sandbox-run({ wasmFile: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm", allowedOutboundHosts: ["\x3Ctarget-host>"], args: ["\x3Ctarget-url>"] })
Fetching a URL
wasm-sandbox-run({
wasmFile: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm",
allowedOutboundHosts: ["https://github.com"],
args: ["https://github.com/guyoung/wasm-sandbox-node/blob/main/README.md"]
})
Getting Help
wasm-sandbox-run({
wasmFile: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm",
allowedOutboundHosts: [],
args: ["--help"]
})
Important Notes
- allowedOutboundHosts is required: You must specify the exact host(s) you want to fetch from
- First use: Download the WASM file before running for the first time
- URLs must use HTTPS: The sandbox only supports HTTPS URLs
Detailed Usage
See references/usage.md for comprehensive usage instructions including all options and examples.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install boxed-fetch - 安装完成后,直接呼叫该 Skill 的名称或使用
/boxed-fetch触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Boxed Fetch 是什么?
Lightweight web scraping tool based on WebAssembly sandbox mechanism. Fetches URL content and extracts readable text. Use when you need to fetch webpage cont... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 79 次。
如何安装 Boxed Fetch?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install boxed-fetch」即可一键安装,无需额外配置。
Boxed Fetch 是免费的吗?
是的,Boxed Fetch 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Boxed Fetch 支持哪些平台?
Boxed Fetch 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Boxed Fetch?
由 guyoung(@guyoung)开发并维护,当前版本 v1.0.0。