Agent skill · Backend & API

jina-reader

Web content extraction via Jina AI Reader API. Three modes: read (URL to markdown), search (web search + full content), ground (fact-checking). Extracts clean content without exposing server IP.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill jina-reader --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/jina-reader/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Jina Reader Extract clean web content via Jina AI — without exposing your server IP. ## Read a URL ```bash {baseDir}/scripts/reader.sh "https://example.com/article" ``` ## Search the web (top 5 results with full content) ```bash {baseDir}/scripts/reader.sh --mode search "latest AI news 2025" ``` ## Fact-check a statement ```bash {baseDir}/scripts/reader.sh --mode ground "OpenAI was founded in 2015" ``` ## Options | Flag | Description | Default | |------|-------------|---------| | `--mode` | `read`, `search`, `ground` | `read` | | `--selector` | CSS selector to extract specific region | — | | `--wait` | CSS selector to wait for before extraction | — | | `--remove` | CSS selectors to remove (comma-separated) | — | | `--proxy` | Country code for geo-proxy (`br`, `us`, etc.) | — | | `--nocache` | Force fresh content (skip cache) | off | | `--format` | `markdown`, `html`, `text`, `screenshot` | `markdown` | | `--json` | Raw JSON output | off | ## Examples ```bash # Extract article content {baseDir}/scripts/reader.sh "https://blog.example.com/post" # Extract specific section via CSS selector {baseDir}/scripts/reader.sh --selector "article.main" "https://example.com" # Remove nav and ad

What's inside
Steps it walks through
  1. Read a URL
  2. Search the web (top 5 results with full content)
  3. Fact-check a statement
  4. Options
  5. Examples
  6. API Key
  7. Pricing
  8. Why Jina Reader?
Ships with 1 file
  • metadata.json
Commands it runs
Extract article content
Extract specific section via CSS selector
Remove nav and ads before extraction
Search with JSON output
Read via Brazil proxy
Fact-check a claim
export JINA_API_KEY="jina_..."
More from claude-skill-registry
All skills →
About this skill
What does the jina-reader skill do?

Web content extraction via Jina AI Reader API. Three modes: read (URL to markdown), search (web search + full content), ground (fact-checking). Extracts clean content without exposing server IP.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill jina-reader --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going