Claude Skill
geekjourneyx/jina-cli
jina-cli is a Go-based CLI tool wrapping Jina AI Reader API. Fetch and parse any URL into Markdown, Text, or HTML for AI agents. Ideal for reading X (Twitter), blogs, and news sites.
Overview
Repository
Install this Skill
npx skills add https://github.com/geekjourneyx/jina-cli --skill jina-cliRegistry
npx skills add https://github.com/geekjourneyx/jina-cli --skill jina-cligit clone https://github.com/geekjourneyx/jina-cli.git
Summary
jina-cli is a lightweight Go-based CLI tool that wraps the Jina AI Reader API, enabling AI agents to fetch and parse any URL into LLM-friendly formats such as Markdown, Text, or HTML. It is optimized for reading content from X (Twitter), blogs, and news sites, making it an essential utility for AI-driven data ingestion pipelines.
一个轻量级CLI工具,封装了Jina AI Reader API,专为AI代理设计。可抓取并解析任意URL,将其转换为适合LLM的格式(Markdown/Text/HTML)。非常适合读取X(Twitter)、博客和新闻网站。
Key features
- Wraps Jina AI Reader API for seamless URL-to-LLM-format conversion
- Supports Markdown, Text, and HTML output formats
- Optimized for reading X (Twitter), blogs, and news sites
- Lightweight Go binary with minimal dependencies
- Designed for integration with AI agents and Claude Skill workflows
Use cases
- Feed web content directly into AI agents for analysis or summarization
- Convert social media posts (X/Twitter) into structured text for LLM processing
- Extract clean article text from blogs and news sites for knowledge bases
- Automate data ingestion pipelines for AI research and content aggregation
README excerpt
<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 中可