Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
A lightweight CLI tool wrapping Jina AI Reader API for AI Agents. Fetch and parse any URL into LLM-friendly formats (Markdown/Text/HTML). Perfect for reading X(Twitter), blogs, and news sites.
| Date | Stars |
|---|---|
| 2026-07-31 | 307 |
| 2026-08-06 | 307 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<div align="center"> # jina ### 为 AI Agent 打造的网页阅读 CLI 工具 [](https://opensource.org/licenses/MIT) [](https://github.com/geekjourneyx/jina-cli/releases) [](https://golang.org/) [](https://github.com/spf13/cobra) [English](#english) | [中文](#中文) </div> --- ## 中文 ### 简介 `jina` 是一个轻量级的命令行工具,封装了 [Jina AI Reader API](https://github.com/jina-ai/reader),可以将任意 URL 转换为 LLM 友好的输入格式。特别适合阅读 X (Twitter)、博客、新闻网站等复杂网页。 **核心功能:** - **read** - 读取 URL 内容,输出 Markdown/Text/HTML 格式 - **search** - 网络搜索,自动获取并处理搜索结果 --- ## 安装指南 jina 有三种独立的安装方式,根据你的使用场景选择: ### 方式一:OpenClaw Skill(推荐本地 AI 助理) **什么是 OpenClaw?** OpenClaw 是一个**本地 AI 助理**(可以理解为"有终端权限的 Claude"),运行在你的机器上。它通过 **Skills** 插件扩展能力,支持 9000+ 个技能插件。 **适用场景**:本地 AI 助理、自动化工作流、文件系统操作 **安装方式** - 直接复制 skill 文件: ```bash # 创建 jina-cli skill 目录并下载 mkdir -p ~/.openclaw/workspace/skills/jina-cli curl -o ~/.openclaw/workspace/skills/jina-cli/SKILL.md \ https://raw.githubusercontent.com/geekjourneyx/jina-cli/main/skills/jina-cli/SKILL.md ``` **验证安装**: ```bash # 启动 OpenClaw openclaw # 在 OpenClaw 中直接使用 jina 命令 # skill 会自动从 ~/.openclaw/workspace/skills/jina-cli/ 加载 ``` **你将获得**: - ✅ 本地 AI 助理直接调用 `jina read` 和 `jina search` - ✅ 无需安装 CLI 二进制 - ✅ 可以处理本地文件、执行脚本等 --- ### 方式二:Claude Code Skill(推荐用于 AI 辅助开发) **适用场景**:在 Claude Code 中使用 AI 协助你处理网页内容 **安装步骤**: ```bash # 1. 确保已安装 Node.js 和 Claude Code node --version # v18.0.0 或更高版本 # 2. 安装 jina skill npx skills add https://github.com/geekjourneyx/jina-cli --skill jina-cli ``` **安装后验证**: ```bash # 在 Claude Code 中可以直接使用 # 无需额外操作,skill 会自动加载 ``` **你将获得**: - ✅ 在 Claude Code 中直接调用 `jina read` 和 `jina search` 命令 - ✅ AI 会自动理解 jina 的功能和使用方式 - ✅ 无需手动安装 CLI 二进制文件 --- ### 方式三:CLI 二进制文件(推荐用于终端使用) **适用场景**:在终端/脚本中使用,或与其他工具集成 #### 一键安装(Linux/macOS) ```bash curl -fsSL https://raw.githubusercontent.com/geekjourneyx/jina-cli/main/scripts/install.sh | bash ``` 安装脚本会自动: 1. 检测你的系统架构(Linux/macOS,amd64/arm64) 2. 下载对应平台的二进制文件 3. 安装到 `~/.local/bin/jina` 或 `~/bin/jina` 4. 提示如何添加到 PATH(如需要) #### 验证安装 ```bash # 检查是否安装成功 jina --version # 预期输出: jina version 1.0.0 (构建时间: ..., 提交: ...) # 测试基本功能 jina read --url "https://example.com" ``` #### 手动安装 如果自动安装失败,可以手动下载: ```bash # 1. 下载对应平台的二进制 # Linux amd64: wget https://github.com/geekjourneyx/jina-cli/releases/latest/download/jina-linux-amd64 -O jina chmod +x jina sudo mv jina /usr/local/bin/ # macOS ARM64 (Apple Silicon): wget https://github.com/geekjourneyx/jina-cli/releases/latest/download/jina-darwin-arm64 -O jina chmod +x jina sudo mv jina /usr/local/bin/ # 2. 验证安装 jina --version ``` #### 从源码构建 ```bash git clone https://github.com/geekjourneyx/jina-cli.git cd jina-cli go build -o jina ./cli sudo mv jina /usr/local/bin/ ``` --- ### 三种安装方式对比 | 特性 | OpenClaw Skill | Claude Code Skill | CLI 二进制 | |------|----------------|-------------------|------------| | **安装位置** | `~/.openclaw/workspace/skills/jina-cli/` | `~/.claude/skills/` | `~/.local/bin/jina` | | **使用环境** | OpenClaw 本地 AI 助理 | Claude Code | 任何终端/脚本 | | **AI 集成** | AI 自动理解功能 | AI 自动理解功能 | 需要手动调用 | | **文件权限** | ✅ 可访问本地文件系统 | ❌ 受限 | ✅ 完整权限 | | **脚本执行** | ✅ 可执行脚本 | ❌ 受限 | ✅ 完整权限 | | **更新方式** | 重新下载/`npx skills update` | `npx skills update` | 重新运行安装脚本 | | **适用场景** | 本地 AI 助理、自动化 | AI 辅助开发 | 脚本集成、日常使用 | **推荐选择**: - **OpenClaw** → 最强能力,本地运行,可操作文件系统 - **Claude Code** → 开发体验好,AI 辅助编码 - **CLI 二进制** → 最轻量,适合脚本集成 **注意**:三种方式完全独立,可以同时安装,互不干扰。 --- ### 快速开始 #### 读取网页内容 ```bash # 读取单个 URL jina read --url "https://example.com" # 读取 X (Twitter) 帖子 jina read -u "https://x.com/user/status/123456789" --with-alt # 输出 Markdown 格式 jina read -u "https://example.com" --output markdown # 保存到文件 jina read -u "https://example.com" --output-file result.md ``` #### 批量处理 ```bash # 从文件读取 URL 列表 cat >
Excerpt of 18,164 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:5b14b6867dfe7e05, topic:ai-agent, desc:ai agents