jina-ai

Use Jina AI APIs for converting URLs to LLM-friendly Markdown (Reader) and searching the web (Search).

Best use case

jina-ai is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Use Jina AI APIs for converting URLs to LLM-friendly Markdown (Reader) and searching the web (Search).

Teams using jina-ai should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/jina-ai/SKILL.md --create-dirs "https://raw.githubusercontent.com/closedloop-technologies/awesome-deep-researchers/main/.claude/skills/jina-ai/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/jina-ai/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How jina-ai Compares

Feature / Agentjina-aiStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Use Jina AI APIs for converting URLs to LLM-friendly Markdown (Reader) and searching the web (Search).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Jina AI Skill

This skill integrates Jina AI's Reader (r.jina.ai) and Search (s.jina.ai) APIs to convert URLs and web search results into clean, LLM-friendly Markdown.

## Setup

1. **Dependencies:** Requires `requests`.

    ```bash
    pip install requests python-dotenv
    ```

2. **API Key Configuration (Recommended):** Jina APIs offer higher limits with an API key (JINA_API_KEY).

    ```bash
    read -p "Enter your Jina API key (optional, press Enter to skip): " JINA_KEY
    if [ ! -z "$JINA_KEY" ]; then
        echo "JINA_API_KEY=$JINA_KEY" >> .env
        if [ -f .gitignore ] && ! grep -q ".env" .gitignore; then echo ".env" >> .gitignore; fi
        echo "API key saved to .env."
    fi
    ```

## Usage

The script `scripts/jina_tools.py` supports `read` and `search` operations.

### 1. Read URL (Jina Reader)

Convert a URL into clean Markdown.

```bash
python3 scripts/jina_tools.py read "<url>"
```

**Example:**

```bash
python3 scripts/jina_tools.py read "https://en.wikipedia.org/wiki/Large_language_model"
```

### 2. Search Web (Jina Search)

Search the web and return the top results converted to Markdown.

```bash
python3 scripts/jina_tools.py search "<query>"
```

**Example:**

```bash
python3 scripts/jina_tools.py search "What is Jina AI?"
```

## Output

The script outputs results in JSON format, containing title, URL, and `content_markdown`.

Related Skills

xai-grok

7
from closedloop-technologies/awesome-deep-researchers

Use xAI Grok API with Agent Tools for real-time web and X (Twitter) search and synthesis. Requires XAI_API_KEY.

tavily-search

7
from closedloop-technologies/awesome-deep-researchers

Use Tavily Search API for optimized, real-time web search results for RAG. Requires TAVILY_API_KEY.

stanford-storm

7
from closedloop-technologies/awesome-deep-researchers

Run Stanford STORM (knowledge-storm) to generate comprehensive, Wikipedia-style articles with citations. Requires LLM and Search API keys (Bing or You.com).

smolagents

7
from closedloop-technologies/awesome-deep-researchers

Use Hugging Face Smolagents framework for code-based agentic research with tool support. Supports multiple LLM providers and web search.

perplexity-sonar

7
from closedloop-technologies/awesome-deep-researchers

Use Perplexity Sonar API for real-time, citation-backed answers. Ideal for up-to-date information and quick synthesis. Requires PERPLEXITY_API_KEY

openai-deep-research

7
from closedloop-technologies/awesome-deep-researchers

Use OpenAI's Deep Research API (o3 / o4 models) to automate multi-step, citation-backed research workflows.

langchain-deep-research

7
from closedloop-technologies/awesome-deep-researchers

Run LangChain Open Deep Research agent for iterative web research and comprehensive reports. Requires LLM API keys and search API (e.g., OPENAI_API_KEY, TAVILY_API_KEY).

gpt-researcher

7
from closedloop-technologies/awesome-deep-researchers

Run the GPT Researcher autonomous agent to generate comprehensive deep research reports. Requires LLM and Search API keys (e.g., OPENAI_API_KEY, TAVILY_API_KEY).

exa-research

7
from closedloop-technologies/awesome-deep-researchers

Use Exa AI for neural search, content retrieval, and automated deep research. Requires EXA_API_KEY.

jina-deepsearch

3891
from openclaw/skills

Jina DeepSearch API access via AIHubMix - use curl to call the HTTP API directly.

jina

3891
from openclaw/skills

Web reading and searching via Jina AI APIs. Fetch clean markdown from URLs (r.jina.ai), web search (s.jina.ai), or deep multi-step research (DeepSearch).

jina-reader

533
from sundial-org/awesome-openclaw-skills

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.