/install deepreader-skill
DeepReader
The default web content reader for OpenClaw agents. Automatically detects URLs in messages, fetches content using specialized parsers, and saves clean Markdown with YAML frontmatter to agent memory.
Use when
- A user shares a tweet, thread, or X article and you need to read its content
- A user shares a Reddit post and you need the discussion + top comments
- A user shares a YouTube video and you need the transcript
- A user shares any blog, article, or documentation URL and you need the text
- You need to batch-read multiple URLs from a single message
Supported sources
| Source | Method | API Key? |
|---|---|---|
| Twitter / X | FxTwitter API + Nitter fallback | None |
| .json suffix API | None | |
| YouTube | youtube-transcript-api | None |
| Any URL | Trafilatura + BeautifulSoup | None |
Usage
from deepreader_skill import run
# Automatic — triggered when message contains URLs
result = run("Check this out: https://x.com/user/status/123456")
# Reddit post with comments
result = run("https://www.reddit.com/r/python/comments/abc123/my_post/")
# YouTube transcript
result = run("https://youtube.com/watch?v=dQw4w9WgXcQ")
# Any webpage
result = run("https://example.com/blog/interesting-article")
# Multiple URLs at once
result = run("""
https://x.com/user/status/123456
https://www.reddit.com/r/MachineLearning/comments/xyz789/
https://example.com/article
""")
Output
Content is saved as .md files with structured YAML frontmatter:
---
title: "Tweet by @user"
source_url: "https://x.com/user/status/123456"
domain: "x.com"
parser: "twitter"
ingested_at: "2026-02-16T12:00:00Z"
content_hash: "sha256:..."
word_count: 350
---
Configuration
| Variable | Default | Description |
|---|---|---|
DEEPREEDER_MEMORY_PATH |
../../memory/inbox/ |
Where to save ingested content |
DEEPREEDER_LOG_LEVEL |
INFO |
Logging verbosity |
How it works
URL detected → is Twitter/X? → FxTwitter API → Nitter fallback
→ is Reddit? → .json suffix API
→ is YouTube? → youtube-transcript-api
→ otherwise → Trafilatura (generic)
Triggers automatically when any message contains https:// or http://.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install deepreader-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/deepreader-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
DeepReader 是什么?
The default web content reader for OpenClaw. Reads X (Twitter), Reddit, YouTube, and any webpage into clean Markdown — zero API keys required. Use when you n... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 823 次。
如何安装 DeepReader?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install deepreader-skill」即可一键安装,无需额外配置。
DeepReader 是免费的吗?
是的,DeepReader 完全免费(开源免费),可自由下载、安装和使用。
DeepReader 支持哪些平台?
DeepReader 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 DeepReader?
由 Tony Li(@astonysh)开发并维护,当前版本 v0.1.0。