Install
openclaw skills install swipenodeGive your agent the superpower to read the modern web without getting blocked by Cloudflare. Extracts clean JSON, saves 98% of LLM tokens, and executes zero...
openclaw skills install swipenodeIs your OpenClaw agent constantly hitting 403 Forbidden errors when trying to read websites? Or are headless browser skills eating up your RAM and exposing your machine to malicious JavaScript?
SwipeNode fixes all of this.
It is a lightning-fast, highly optimized Go binary that fetches websites and extracts structured data (__NEXT_DATA__, Nuxt, JSON-LD) without rendering the page.
To address security validations:
bogdanfinn/tls-client Go library to mimic the TLS handshake signature of a standard Chrome/Safari browser.install.sh script explicitly uses go install with a pinned version tag to pull the public code directly from GitHub safely.When to use this skill:
Whenever the user asks you to read a webpage, summarize an article, check the news, or extract data from a URL. You should generally prefer this tool over standard HTTP clients (curl, wget) because it handles structured data efficiently.
Ethical & Operational Guidelines:
How to use it:
Execute the following command in the terminal:
swipenode extract --url "<TARGET_URL>"
Pro Tip: If a high-security site actively blocks the default request, spoof the TLS fingerprint by appending --impersonate safari or --impersonate firefox.
Understanding the Output: The tool will output a JSON object to stdout.
"nextjs", "json_ld", or "nuxtjs_raw", parse this structured data to answer the user's request."text" key, which contains the clean, readable content."error", report the network issue to the user.This product includes software developed by Bogdan Finn (bogdanfinn/tls-client).