# Send Reddit Scraper 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": "reddit-scraper",
    "name": "Reddit Scraper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/javicasper/reddit-scraper",
    "canonicalUrl": "https://clawhub.ai/javicasper/reddit-scraper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/reddit-scraper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reddit-scraper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/TECHNICAL.md",
      "scripts/reddit_scraper.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "reddit-scraper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T00:38:34.542Z",
      "expiresAt": "2026-05-15T00:38:34.542Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reddit-scraper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reddit-scraper",
        "contentDisposition": "attachment; filename=\"reddit-scraper-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "reddit-scraper"
      },
      "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/reddit-scraper"
    },
    "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/reddit-scraper",
    "downloadUrl": "https://openagent3.xyz/downloads/reddit-scraper",
    "agentUrl": "https://openagent3.xyz/skills/reddit-scraper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reddit-scraper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reddit-scraper/agent.md"
  }
}
```
## Documentation

### Reddit Skill 📰

Read and search Reddit posts using the public JSON API. No API key required.

### Quick Start

# Read top posts from a subreddit
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit LocalLLaMA --limit 5

# Search for posts
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search "clawdbot" --limit 5

# Read newest posts
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit ClaudeAI --sort nuevos --limit 5

### Options

OptionShortDescriptionDefault--subreddit-sSubreddit name (without r/)---search-qSearch query---sort-Sort: hot, new, top, populares, nuevos, risingtop--time-tTime filter: hour, day, week, month, year, allday--limit-nNumber of posts (max 100)25--json-jOutput as JSONfalse--verbose-vShow post preview textfalse

### Read subreddit posts

# Top posts of the day (default)
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming

# Hot posts
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort hot

# New posts
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort nuevos

# Top posts of the week
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort top --time week

### Search posts

# Search all of Reddit
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search "machine learning"

# Search within a subreddit
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit selfhosted --search "docker"

# Search with time filter
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search "AI news" --time week

### JSON output

# Get raw JSON data for processing
python3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit technology --limit 3 --json

### Output Fields (JSON)

title: Post title
author: Username
score: Upvotes (net)
num_comments: Comment count
url: Link URL
permalink: Reddit discussion URL
subreddit: Subreddit name
created_utc: Unix timestamp
selftext: Post text (first 200 chars)
upvote_ratio: Upvote percentage (0-1)

### Limitations

Read-only: Cannot post, comment, or vote
Rate limits: Reddit may rate-limit if too many requests
No auth: Some content may be restricted

### Technical Details

See TECHNICAL.md for implementation details.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: javicasper
- Version: 1.0.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-08T00:38:34.542Z
- Expires at: 2026-05-15T00:38:34.542Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reddit-scraper)
- [Send to Agent page](https://openagent3.xyz/skills/reddit-scraper/agent)
- [JSON manifest](https://openagent3.xyz/skills/reddit-scraper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reddit-scraper/agent.md)
- [Download page](https://openagent3.xyz/downloads/reddit-scraper)