jina-reader
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Fetch and read web pages as Markdown via Jina Reader (https://r.jina.ai/). Use when you need the readable content of a URL (articles, docs, blog posts) without a browser/JS, or when you want a quick plain-text/markdown snapshot for summarization, quoting, or extraction.
3installs
Sourceiails01/skills
Added on
NPX Install
npx skill4agent add iails01/skills jina-readerTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Jina Reader 📖
Fetch a URL through Jina Reader and return the page as markdown text.
Tool: scripts/jina_reader.py
scripts/jina_reader.pyUse this script to fetch a page and emit markdown.
Inputs
- : The target web page. If no scheme is provided,
urlis assumed.https://
Outputs
- Markdown text to stdout by default, or to a file with .
--output
Options
- : Write markdown to a file instead of stdout.
--output PATH - : Request timeout (default: 30).
--timeout SECONDS
Examples
bash
python scripts/jina_reader.py https://example.combash
python scripts/jina_reader.py example.com --output output.mdWorkflow
- Choose the target URL.
- Run the script to fetch markdown.
- Use the markdown output for downstream tasks (summarize, quote, extract).