{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/deepreader-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=deepreader-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "__init__.py",
      "core/__init__.py",
      "core/router.py",
      "core/storage.py",
      "core/utils.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/deepreader-skill",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "DeepReader",
        "body": "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."
      },
      {
        "title": "Use when",
        "body": "A user shares a tweet, thread, or X article and you need to read its content\nA user shares a Reddit post and you need the discussion + top comments\nA user shares a YouTube video and you need the transcript\nA user shares any blog, article, or documentation URL and you need the text\nYou need to batch-read multiple URLs from a single message"
      },
      {
        "title": "Supported sources",
        "body": "SourceMethodAPI Key?Twitter / XFxTwitter API + Nitter fallbackNoneReddit.json suffix APINoneYouTubeyoutube-transcript-apiNoneAny URLTrafilatura + BeautifulSoupNone"
      },
      {
        "title": "Usage",
        "body": "from deepreader_skill import run\n\n# Automatic — triggered when message contains URLs\nresult = run(\"Check this out: https://x.com/user/status/123456\")\n\n# Reddit post with comments\nresult = run(\"https://www.reddit.com/r/python/comments/abc123/my_post/\")\n\n# YouTube transcript\nresult = run(\"https://youtube.com/watch?v=dQw4w9WgXcQ\")\n\n# Any webpage\nresult = run(\"https://example.com/blog/interesting-article\")\n\n# Multiple URLs at once\nresult = run(\"\"\"\n  https://x.com/user/status/123456\n  https://www.reddit.com/r/MachineLearning/comments/xyz789/\n  https://example.com/article\n\"\"\")"
      },
      {
        "title": "Output",
        "body": "Content is saved as .md files with structured YAML frontmatter:\n\n---\ntitle: \"Tweet by @user\"\nsource_url: \"https://x.com/user/status/123456\"\ndomain: \"x.com\"\nparser: \"twitter\"\ningested_at: \"2026-02-16T12:00:00Z\"\ncontent_hash: \"sha256:...\"\nword_count: 350\n---"
      },
      {
        "title": "Configuration",
        "body": "VariableDefaultDescriptionDEEPREEDER_MEMORY_PATH../../memory/inbox/Where to save ingested contentDEEPREEDER_LOG_LEVELINFOLogging verbosity"
      },
      {
        "title": "How it works",
        "body": "URL detected → is Twitter/X?  → FxTwitter API → Nitter fallback\n             → is Reddit?     → .json suffix API\n             → is YouTube?    → youtube-transcript-api\n             → otherwise      → Trafilatura (generic)\n\nTriggers automatically when any message contains https:// or http://."
      }
    ],
    "body": "DeepReader\n\nThe 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.\n\nUse when\nA user shares a tweet, thread, or X article and you need to read its content\nA user shares a Reddit post and you need the discussion + top comments\nA user shares a YouTube video and you need the transcript\nA user shares any blog, article, or documentation URL and you need the text\nYou need to batch-read multiple URLs from a single message\nSupported sources\nSource\tMethod\tAPI Key?\nTwitter / X\tFxTwitter API + Nitter fallback\tNone\nReddit\t.json suffix API\tNone\nYouTube\tyoutube-transcript-api\tNone\nAny URL\tTrafilatura + BeautifulSoup\tNone\nUsage\nfrom deepreader_skill import run\n\n# Automatic — triggered when message contains URLs\nresult = run(\"Check this out: https://x.com/user/status/123456\")\n\n# Reddit post with comments\nresult = run(\"https://www.reddit.com/r/python/comments/abc123/my_post/\")\n\n# YouTube transcript\nresult = run(\"https://youtube.com/watch?v=dQw4w9WgXcQ\")\n\n# Any webpage\nresult = run(\"https://example.com/blog/interesting-article\")\n\n# Multiple URLs at once\nresult = run(\"\"\"\n  https://x.com/user/status/123456\n  https://www.reddit.com/r/MachineLearning/comments/xyz789/\n  https://example.com/article\n\"\"\")\n\nOutput\n\nContent is saved as .md files with structured YAML frontmatter:\n\n---\ntitle: \"Tweet by @user\"\nsource_url: \"https://x.com/user/status/123456\"\ndomain: \"x.com\"\nparser: \"twitter\"\ningested_at: \"2026-02-16T12:00:00Z\"\ncontent_hash: \"sha256:...\"\nword_count: 350\n---\n\nConfiguration\nVariable\tDefault\tDescription\nDEEPREEDER_MEMORY_PATH\t../../memory/inbox/\tWhere to save ingested content\nDEEPREEDER_LOG_LEVEL\tINFO\tLogging verbosity\nHow it works\nURL detected → is Twitter/X?  → FxTwitter API → Nitter fallback\n             → is Reddit?     → .json suffix API\n             → is YouTube?    → youtube-transcript-api\n             → otherwise      → Trafilatura (generic)\n\n\nTriggers automatically when any message contains https:// or http://."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/astonysh/deepreader-skill",
    "publisherUrl": "https://clawhub.ai/astonysh/deepreader-skill",
    "owner": "astonysh",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}