Install
openclaw skills install jina-ai-readerFetch clean, AI-friendly Markdown content from any URL using Jina.ai Reader. Bypasses paywalls, handles Twitter/X posts, renders JavaScript-heavy pages, returns structured content with titles and metadata. Use this when you need to read or extract content from web pages after search, or when dealing with paywalled sites, Twitter/X, or SPA pages that need JS rendering.
openclaw skills install jina-ai-readerFetch clean, AI-friendly Markdown content from any URL. No API key required.
node {baseDir}/scripts/jina-reader.mjs "https://example.com/article"
| Option | Description |
|---|---|
--wait-ms N | Wait N milliseconds for JavaScript to render |
--with-images | Include image captions in output |
--with-links | Include all links in output |
# Basic fetch
node {baseDir}/scripts/jina-reader.mjs "https://every.to/article"
# Twitter/X post
node {baseDir}/scripts/jina-reader.mjs "https://twitter.com/user/status/123456"
# Wait for JavaScript rendering
node {baseDir}/scripts/jina-reader.mjs "https://spa-site.com/page" --wait-ms 5000
# With images and links
node {baseDir}/scripts/jina-reader.mjs "https://blog.example.com/post" --with-images --with-links
--wait-ms to let scripts run