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
Added on

NPX Install

npx skill4agent add iails01/skills jina-reader

Tags

Translated version includes tags in frontmatter

Jina Reader 📖

Fetch a URL through Jina Reader and return the page as markdown text.

Tool:
scripts/jina_reader.py

Use this script to fetch a page and emit markdown.

Inputs

  • url
    : The target web page. If no scheme is provided,
    https://
    is assumed.

Outputs

  • Markdown text to stdout by default, or to a file with
    --output
    .

Options

  • --output PATH
    : Write markdown to a file instead of stdout.
  • --timeout SECONDS
    : Request timeout (default: 30).

Examples

bash
python scripts/jina_reader.py https://example.com
bash
python scripts/jina_reader.py example.com --output output.md

Workflow

  1. Choose the target URL.
  2. Run the script to fetch markdown.
  3. Use the markdown output for downstream tasks (summarize, quote, extract).