Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Extract clean, readable markdown content from any URL using Jina Reader API. Use when you need to fetch and parse web pages without dealing with HTML, JavaScript rendering, or paywalls. Ideal for research, article summarization, content analysis, and working with search results from tavily-search, web_search, or searxng skills.
Extract clean, readable markdown content from any URL using Jina Reader API. Use when you need to fetch and parse web pages without dealing with HTML, JavaScript rendering, or paywalls. Ideal for research, article summarization, content analysis, and working with search results from tavily-search, web_search, or searxng skills.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Jina Reader provides clean markdown extraction from any URL, bypassing HTML complexity, JavaScript rendering, and many paywalls. It returns structured text content with metadata (title, URL, published time) that's perfect for AI analysis.
scripts/jina-reader.py <url>
scripts/jina-reader.py <url> --format json
scripts/jina-reader.py <url> -o output.md
Extract clean markdown from any URL: scripts/jina-reader.py https://example.com/article Returns: Full markdown content including title, metadata headers, and structured text. Use when: You need readable text from a webpage for summarization, analysis, or content processing.
Get structured data with metadata: scripts/jina-reader.py https://example.com/article --format json Returns: { "status": "success", "metadata": { "title": "Article Title", "url": "https://example.com/article", "published": "Mon, 10 Feb 2026 12:00:00 GMT" }, "content": "Markdown content..." } Use when: You need programmatic access to metadata or want to integrate with other tools.
For simple one-liners: scripts/jina-reader.sh https://example.com/article Returns: Raw markdown content directly to stdout. Use when: Quick extraction without arguments or when piping to other commands.
When using tavily-search, web_search, or searxng skills: Get search results with relevant URLs Extract content from top results using jina-reader Process and summarize the extracted content # Example workflow URL="https://example.com/article" scripts/jina-reader.py "$URL" --format json | jq -r '.content'
Extract from multiple URLs: for url in $(cat urls.txt); do scripts/jina-reader.py "$url" -o "output/$(basename $url).md" done
Pipe extracted content to analysis tools: scripts/jina-reader.py https://example.com/article | wc -w scripts/jina-reader.py https://example.com/article | grep -i "keyword"
url (required): The URL to extract content from -f, --format: Output format - markdown or json (default: markdown) -t, --timeout: Request timeout in seconds (default: 30) -o, --output: Save output to file instead of stdout
url (required): The URL to extract content from
Timeout: Default 30 seconds. Increase with -t for slow-loading pages Rate limits: Jina Reader API has rate limits. Use batching strategically Dynamic content: Can't extract content generated by client-side JavaScript after page load Authentication: Can't access pages requiring login or special headers
scripts/jina-reader.py <url> -t 60 # Increase timeout
The tool auto-prepends https:// if missing. Use fully qualified URLs for reliability.
Some pages may block scraping. Try the shell script as fallback, or verify the URL is accessible.
Full-featured Python tool with JSON output, metadata extraction, and file saving.
Lightweight shell script for quick markdown extraction.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.