TopRank Skills

Official OpenClaw rules 36%

jina

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).

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 jina 技能。 若已安装,则直接安装 jina 技能。

Overview

Skill Key
adhishthite/jina-ai
Author
adhishthite
Source Repo
openclaw/skills
Version
-
Source Path
skills/adhishthite/jina-ai
Latest Commit SHA
184a21cf6b8cacd002ed80590581b234ab35843c

Extracted Content

SKILL.md excerpt

# Jina AI — Reader, Search & DeepSearch

Web reading and search powered by Jina AI. Requires `JINA_API_KEY` environment variable.

> **Trust & Privacy:** By using this skill, URLs and queries are transmitted to Jina AI (jina.ai). Only install if you trust Jina with your data.

> **Model Invocation:** This skill may be invoked autonomously by the model without explicit user trigger (standard for integration skills). If you prefer manual-only invocation, disable model invocation in your OpenClaw skill settings.

**Get your API key:** https://jina.ai/ → Dashboard → API Keys

## External Endpoints

This skill makes HTTP requests to the following external endpoints only:

| Endpoint | URL Pattern | Purpose |
|----------|-------------|---------|
| **Reader API** | `https://r.jina.ai/{url}` | Sends URL content request to Jina for conversion to markdown |
| **Search API** | `https://s.jina.ai/{query}` | Sends search query to Jina for web search results |
| **DeepSearch API** | `https://deepsearch.jina.ai/v1/chat/completions` | Sends research question to Jina for multi-step research |

No other external network calls are made by this skill.

## Security & Privacy

- **Authentication:** Only your `JINA_API_KEY` is transmitted to Jina's servers (via `Authorization` header)
- **Data sent:** URLs and search queries you provide are sent to Jina's servers for processing
- **Local files:** No local files are read or transmitted by this skill
- **Local storage:** No data is stored locally beyond stdout output
- **Environment access:** Scripts only access the `JINA_API_KEY` environment variable; no other env vars are read
- **Cookies:** Cookies are not forwarded by default; the `X-Set-Cookie` header is available for authenticated content but is opt-in only

## Endpoints

| Endpoint | Base URL | Purpose |
|----------|----------|---------|
| **Reader** | `https://r.jina.ai/{url}` | Convert any URL → clean markdown |
| **Search** | `https://s.jina.ai/{query}` | Web search with LLM-frien...

README excerpt

# Jina AI — Web Reader, Search & DeepSearch

[![ClawHub](https://img.shields.io/badge/ClawHub-Install-blue)](https://clawhub.ai/adhishthite/jina-ai)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

OpenClaw skill for Jina AI APIs. Fetch clean markdown from URLs, search the web, or run deep multi-step research.

**Get your API key:** https://jina.ai/ → Dashboard → API Keys

---

## Features

| Feature | Description | Script |
|---------|-------------|--------|
| **Reader** | Convert any URL → clean markdown | `scripts/jina-reader.sh` |
| **Search** | Web search with LLM-friendly results | `scripts/jina-search.sh` |
| **DeepSearch** | Multi-step research agent | `scripts/jina-deepsearch.sh` |

---

## Installation

### Via ClawHub (recommended)

```bash
openclaw skill install adhishthite/jina-ai
```

### Manual

```bash
git clone https://github.com/adhishthite/jina-ai-skill.git
# Add to your OpenClaw skills directory
```

---

## Configuration

Set your Jina AI API key as an environment variable:

```bash
export JINA_API_KEY="your-api-key"
```

Add to your shell profile (`~/.bashrc`, `~/.zshrc`, etc.) for persistence.

---

## Usage

### Reader — Fetch URL as Markdown

```bash
# Basic usage
./scripts/jina-reader.sh https://example.com

# JSON output (includes url, title, content)
./scripts/jina-reader.sh https://example.com --json

# Python version (no external deps)
python3 scripts/jina-reader.py https://example.com
```

### Search — Web Search

```bash
# Basic search
./scripts/jina-search.sh "OpenAI GPT-5"

# JSON output
./scripts/jina-search.sh "Python tutorials" --json

# Site-specific search
./scripts/jina-search.sh "OpenAI site:reddit.com"
```

### DeepSearch — Multi-step Research

```bash
./scripts/jina-deepsearch.sh "What are the latest developments in quantum computing?"
```

DeepSearch performs multiple search + read + reasoning steps to answer complex questions. Can take 30-120 seconds depending on complexity.

---

## API En...

Related Claw Skills