# Send DeepReader to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "deepreader-skill",
    "name": "DeepReader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/astonysh/deepreader-skill",
    "canonicalUrl": "https://clawhub.ai/astonysh/deepreader-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/deepreader-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepreader-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "__init__.py",
      "core/__init__.py",
      "core/router.py",
      "core/storage.py",
      "core/utils.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "deepreader-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T10:32:33.326Z",
      "expiresAt": "2026-05-09T10:32:33.326Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepreader-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepreader-skill",
        "contentDisposition": "attachment; filename=\"deepreader-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "deepreader-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/deepreader-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/deepreader-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/deepreader-skill",
    "agentUrl": "https://openagent3.xyz/skills/deepreader-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/deepreader-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/deepreader-skill/agent.md"
  }
}
```
## Documentation

### 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

SourceMethodAPI Key?Twitter / XFxTwitter API + Nitter fallbackNoneReddit.json suffix APINoneYouTubeyoutube-transcript-apiNoneAny URLTrafilatura + BeautifulSoupNone

### 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

VariableDefaultDescriptionDEEPREEDER_MEMORY_PATH../../memory/inbox/Where to save ingested contentDEEPREEDER_LOG_LEVELINFOLogging 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://.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: astonysh
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T10:32:33.326Z
- Expires at: 2026-05-09T10:32:33.326Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/deepreader-skill)
- [Send to Agent page](https://openagent3.xyz/skills/deepreader-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/deepreader-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/deepreader-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/deepreader-skill)