Install
openclaw skills install swipenode-2Lightning-fast web extraction for AI agents. Extracts structured JSON from Next.js, Nuxt.js, Gatsby, Remix without headless browsers. TLS spoofing bypasses C...
openclaw skills install swipenode-2Lightning-fast, zero-render web extraction CLI built for AI agents.
Extracts structured data (Next.js/Nuxt.js) without headless browsers.
Repo: https://github.com/sirToby99/swipenode
~/.openclaw/workspace/skills/swipenode/swipenode
Built from source (Go 1.24), single static binary, no runtime dependencies.
~/.openclaw/workspace/skills/swipenode/swipenode extract --url <url>
~/.openclaw/workspace/skills/swipenode/swipenode extract --url https://shop.example.com | jq '.props.pageProps.product'
~/.openclaw/workspace/skills/swipenode/swipenode batch --urls "https://a.com,https://b.com"
~/.openclaw/workspace/skills/swipenode/swipenode mcp
~/.openclaw/workspace/skills/swipenode/swipenode install-mcp
| Framework | Data source |
|---|---|
| Next.js | __NEXT_DATA__ JSON blob |
| Nuxt.js | window.__NUXT__ |
| Gatsby | window.___gatsby |
| Remix | window.__remixContext |
| JSON-LD | <script type="application/ld+json"> |
| Fallback | Clean visible text (boilerplate stripped) |
Smart pruning: Strips tracking pixels, telemetry, base64 images, UI noise → up to 98% fewer tokens vs raw HTML.
| Situation | Tool |
|---|---|
| Data-rich site (Next.js shop, news portal) | swipenode |
| Cloudflare-protected site | swipenode (TLS spoofing) |
| Need structured JSON from React/Vue app | swipenode |
| Simple static page / docs | web_fetch |
| Need screenshots / DOM interaction | browser |
| 308/421 redirect errors | try web_fetch as fallback |
~/.openclaw/workspace/skills/swipenode/swipenode extract --url https://news.ycombinator.com
# Returns: clean list of titles, points, comments
~/.openclaw/workspace/skills/swipenode/swipenode extract --url https://shop.example.com/product/123 | jq '.props.pageProps'
Raw HTML → LLM: ~15.000 tokens (div soup, scripts, tracking)
SwipeNode extract: ~300 tokens (clean structured JSON)
Savings: ~98%
# Requires Go 1.24+
export PATH="/tmp/go/bin:$PATH" # or system Go
git clone https://github.com/sirToby99/swipenode.git /tmp/swipenode-build
cd /tmp/swipenode-build
go build -o ~/.openclaw/workspace/skills/swipenode/swipenode .