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内容、提取可读文本、网页内容抓取。
```
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"
})
```
```
wasm-sandbox-run({
wasmFile: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm",
allowedOutboundHosts: ["
args: ["
})
```
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"]
})
wasm-sandbox-run({
wasmFile: "~/.openclaw/skills/boxed-fetch/files/boxed-fetch-component.wasm",
allowedOutboundHosts: [],
args: ["--help"]
})
See references/usage.md for comprehensive usage instructions including all options and examples.
共 1 个版本