{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/reddit-scraper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reddit-scraper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/TECHNICAL.md",
      "scripts/reddit_scraper.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/reddit-scraper",
    "agentPageUrl": "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"
  },
  "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": "Reddit Skill 📰",
        "body": "Read and search Reddit posts using the public JSON API. No API key required."
      },
      {
        "title": "Quick Start",
        "body": "# Read top posts from a subreddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit LocalLLaMA --limit 5\n\n# Search for posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"clawdbot\" --limit 5\n\n# Read newest posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit ClaudeAI --sort nuevos --limit 5"
      },
      {
        "title": "Options",
        "body": "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"
      },
      {
        "title": "Read subreddit posts",
        "body": "# Top posts of the day (default)\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming\n\n# Hot posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort hot\n\n# New posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort nuevos\n\n# Top posts of the week\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort top --time week"
      },
      {
        "title": "Search posts",
        "body": "# Search all of Reddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"machine learning\"\n\n# Search within a subreddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit selfhosted --search \"docker\"\n\n# Search with time filter\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"AI news\" --time week"
      },
      {
        "title": "JSON output",
        "body": "# Get raw JSON data for processing\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit technology --limit 3 --json"
      },
      {
        "title": "Output Fields (JSON)",
        "body": "title: Post title\nauthor: Username\nscore: Upvotes (net)\nnum_comments: Comment count\nurl: Link URL\npermalink: Reddit discussion URL\nsubreddit: Subreddit name\ncreated_utc: Unix timestamp\nselftext: Post text (first 200 chars)\nupvote_ratio: Upvote percentage (0-1)"
      },
      {
        "title": "Limitations",
        "body": "Read-only: Cannot post, comment, or vote\nRate limits: Reddit may rate-limit if too many requests\nNo auth: Some content may be restricted"
      },
      {
        "title": "Technical Details",
        "body": "See TECHNICAL.md for implementation details."
      }
    ],
    "body": "Reddit Skill 📰\n\nRead and search Reddit posts using the public JSON API. No API key required.\n\nQuick Start\n# Read top posts from a subreddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit LocalLLaMA --limit 5\n\n# Search for posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"clawdbot\" --limit 5\n\n# Read newest posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit ClaudeAI --sort nuevos --limit 5\n\nOptions\nOption\tShort\tDescription\tDefault\n--subreddit\t-s\tSubreddit name (without r/)\t-\n--search\t-q\tSearch query\t-\n--sort\t-\tSort: hot, new, top, populares, nuevos, rising\ttop\n--time\t-t\tTime filter: hour, day, week, month, year, all\tday\n--limit\t-n\tNumber of posts (max 100)\t25\n--json\t-j\tOutput as JSON\tfalse\n--verbose\t-v\tShow post preview text\tfalse\nExamples\nRead subreddit posts\n# Top posts of the day (default)\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming\n\n# Hot posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort hot\n\n# New posts\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort nuevos\n\n# Top posts of the week\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit programming --sort top --time week\n\nSearch posts\n# Search all of Reddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"machine learning\"\n\n# Search within a subreddit\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit selfhosted --search \"docker\"\n\n# Search with time filter\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --search \"AI news\" --time week\n\nJSON output\n# Get raw JSON data for processing\npython3 /root/clawd/skills/reddit/scripts/reddit_scraper.py --subreddit technology --limit 3 --json\n\nOutput Fields (JSON)\ntitle: Post title\nauthor: Username\nscore: Upvotes (net)\nnum_comments: Comment count\nurl: Link URL\npermalink: Reddit discussion URL\nsubreddit: Subreddit name\ncreated_utc: Unix timestamp\nselftext: Post text (first 200 chars)\nupvote_ratio: Upvote percentage (0-1)\nLimitations\nRead-only: Cannot post, comment, or vote\nRate limits: Reddit may rate-limit if too many requests\nNo auth: Some content may be restricted\nTechnical Details\n\nSee TECHNICAL.md for implementation details."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/javicasper/reddit-scraper",
    "publisherUrl": "https://clawhub.ai/javicasper/reddit-scraper",
    "owner": "javicasper",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}