{
  "schemaVersion": "1.0",
  "item": {
    "slug": "reddit-read-only",
    "name": "Reddit (read only - no auth)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/tristanmanchester/reddit-read-only",
    "canonicalUrl": "https://clawhub.ai/tristanmanchester/reddit-read-only",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/reddit-read-only",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reddit-read-only",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/reddit-readonly.mjs",
      "references/OUTPUT_SCHEMA.md"
    ],
    "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-read-only"
    },
    "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-read-only",
    "agentPageUrl": "https://openagent3.xyz/skills/reddit-read-only/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reddit-read-only/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reddit-read-only/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 Readonly",
        "body": "Read-only Reddit browsing for Clawdbot."
      },
      {
        "title": "What this skill is for",
        "body": "Finding posts in one or more subreddits (hot/new/top/controversial/rising)\nSearching for posts by query (within a subreddit or across all)\nPulling a comment thread for context\nProducing a shortlist of permalinks so the user can open Reddit and reply manually"
      },
      {
        "title": "Hard rules",
        "body": "Read-only only. This skill never posts, replies, votes, or moderates.\nBe polite with requests:\n\nPrefer small limits (5–10) first.\nExpand only if needed.\n\n\nWhen returning results to the user, always include permalinks."
      },
      {
        "title": "Output format",
        "body": "All commands print JSON to stdout.\n\nSuccess: { \"ok\": true, \"data\": ... }\nFailure: { \"ok\": false, \"error\": { \"message\": \"...\", \"details\": \"...\" } }"
      },
      {
        "title": "1) List posts in a subreddit",
        "body": "node {baseDir}/scripts/reddit-readonly.mjs posts <subreddit> \\\n  --sort hot|new|top|controversial|rising \\\n  --time day|week|month|year|all \\\n  --limit 10 \\\n  --after <token>"
      },
      {
        "title": "2) Search posts",
        "body": "# Search within a subreddit\nnode {baseDir}/scripts/reddit-readonly.mjs search <subreddit> \"<query>\" --limit 10\n\n# Search all of Reddit\nnode {baseDir}/scripts/reddit-readonly.mjs search all \"<query>\" --limit 10"
      },
      {
        "title": "3) Get comments for a post",
        "body": "# By post id or URL\nnode {baseDir}/scripts/reddit-readonly.mjs comments <post_id|url> --limit 50 --depth 6"
      },
      {
        "title": "4) Recent comments across a subreddit",
        "body": "node {baseDir}/scripts/reddit-readonly.mjs recent-comments <subreddit> --limit 25"
      },
      {
        "title": "5) Thread bundle (post + comments)",
        "body": "node {baseDir}/scripts/reddit-readonly.mjs thread <post_id|url> --commentLimit 50 --depth 6"
      },
      {
        "title": "6) Find opportunities (multi-subreddit helper)",
        "body": "Use this when the user describes criteria like:\n\"Find posts about X in r/a, r/b, and r/c posted in the last 48 hours, excluding Y\".\n\nnode {baseDir}/scripts/reddit-readonly.mjs find \\\n  --subreddits \"python,learnpython\" \\\n  --query \"fastapi deployment\" \\\n  --include \"docker,uvicorn,nginx\" \\\n  --exclude \"homework,beginner\" \\\n  --minScore 2 \\\n  --maxAgeHours 48 \\\n  --perSubredditLimit 25 \\\n  --maxResults 10 \\\n  --rank new"
      },
      {
        "title": "Suggested agent workflow",
        "body": "Clarify scope if needed: subreddits + topic keywords + timeframe.\nStart with find (or posts/search) using small limits.\nFor 1–3 promising items, fetch context via thread.\nPresent the user a shortlist:\n\ntitle, subreddit, score, created time\npermalink\na brief reason why it matched\n\n\nIf asked, propose draft reply ideas in natural language, but remind the user to post manually."
      },
      {
        "title": "Troubleshooting",
        "body": "If Reddit returns HTML, re-run the command (the script detects this and returns an error).\nIf requests fail repeatedly, reduce --limit and/or set slower pacing via env vars:\n\nexport REDDIT_RO_MIN_DELAY_MS=800\nexport REDDIT_RO_MAX_DELAY_MS=1800\nexport REDDIT_RO_TIMEOUT_MS=25000\nexport REDDIT_RO_USER_AGENT='script:clawdbot-reddit-readonly:v1.0.0 (personal)'"
      }
    ],
    "body": "Reddit Readonly\n\nRead-only Reddit browsing for Clawdbot.\n\nWhat this skill is for\nFinding posts in one or more subreddits (hot/new/top/controversial/rising)\nSearching for posts by query (within a subreddit or across all)\nPulling a comment thread for context\nProducing a shortlist of permalinks so the user can open Reddit and reply manually\nHard rules\nRead-only only. This skill never posts, replies, votes, or moderates.\nBe polite with requests:\nPrefer small limits (5–10) first.\nExpand only if needed.\nWhen returning results to the user, always include permalinks.\nOutput format\n\nAll commands print JSON to stdout.\n\nSuccess: { \"ok\": true, \"data\": ... }\nFailure: { \"ok\": false, \"error\": { \"message\": \"...\", \"details\": \"...\" } }\nCommands\n1) List posts in a subreddit\nnode {baseDir}/scripts/reddit-readonly.mjs posts <subreddit> \\\n  --sort hot|new|top|controversial|rising \\\n  --time day|week|month|year|all \\\n  --limit 10 \\\n  --after <token>\n\n2) Search posts\n# Search within a subreddit\nnode {baseDir}/scripts/reddit-readonly.mjs search <subreddit> \"<query>\" --limit 10\n\n# Search all of Reddit\nnode {baseDir}/scripts/reddit-readonly.mjs search all \"<query>\" --limit 10\n\n3) Get comments for a post\n# By post id or URL\nnode {baseDir}/scripts/reddit-readonly.mjs comments <post_id|url> --limit 50 --depth 6\n\n4) Recent comments across a subreddit\nnode {baseDir}/scripts/reddit-readonly.mjs recent-comments <subreddit> --limit 25\n\n5) Thread bundle (post + comments)\nnode {baseDir}/scripts/reddit-readonly.mjs thread <post_id|url> --commentLimit 50 --depth 6\n\n6) Find opportunities (multi-subreddit helper)\n\nUse this when the user describes criteria like: \"Find posts about X in r/a, r/b, and r/c posted in the last 48 hours, excluding Y\".\n\nnode {baseDir}/scripts/reddit-readonly.mjs find \\\n  --subreddits \"python,learnpython\" \\\n  --query \"fastapi deployment\" \\\n  --include \"docker,uvicorn,nginx\" \\\n  --exclude \"homework,beginner\" \\\n  --minScore 2 \\\n  --maxAgeHours 48 \\\n  --perSubredditLimit 25 \\\n  --maxResults 10 \\\n  --rank new\n\nSuggested agent workflow\nClarify scope if needed: subreddits + topic keywords + timeframe.\nStart with find (or posts/search) using small limits.\nFor 1–3 promising items, fetch context via thread.\nPresent the user a shortlist:\ntitle, subreddit, score, created time\npermalink\na brief reason why it matched\nIf asked, propose draft reply ideas in natural language, but remind the user to post manually.\nTroubleshooting\nIf Reddit returns HTML, re-run the command (the script detects this and returns an error).\nIf requests fail repeatedly, reduce --limit and/or set slower pacing via env vars:\nexport REDDIT_RO_MIN_DELAY_MS=800\nexport REDDIT_RO_MAX_DELAY_MS=1800\nexport REDDIT_RO_TIMEOUT_MS=25000\nexport REDDIT_RO_USER_AGENT='script:clawdbot-reddit-readonly:v1.0.0 (personal)'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tristanmanchester/reddit-read-only",
    "publisherUrl": "https://clawhub.ai/tristanmanchester/reddit-read-only",
    "owner": "tristanmanchester",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/reddit-read-only",
    "downloadUrl": "https://openagent3.xyz/downloads/reddit-read-only",
    "agentUrl": "https://openagent3.xyz/skills/reddit-read-only/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reddit-read-only/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reddit-read-only/agent.md"
  }
}