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

### Reddit Explore

Search Reddit for posts on any topic using the Apify trudax/reddit-scraper-lite actor and produce a structured summary of community sentiment.

### Prerequisites

Before running, verify:

apify-client is installed: pip3 install apify-client
APIFY_TOKEN is set as an environment variable

If either is missing, refer the user to references/apify-setup.md in this skill's directory for setup instructions.

### Step 1: Determine the search topic

The search topic comes from $ARGUMENTS. If $ARGUMENTS is empty or missing, ask the user what topic they want to search Reddit for.

### Step 2: Run the Reddit search script

Execute the search script with the user's topic:

python3 ~/.agents/skills/reddit-explore/scripts/reddit_search.py --query "$ARGUMENTS" --max-items 30

The script outputs JSON results to stdout. If it fails:

"APIFY_TOKEN not found": Guide the user through setting up their token (see references/apify-setup.md)
"apify-client not installed": Run pip3 install apify-client
Other errors: Show the error message and help troubleshoot

### Step 3: Analyze and summarize results

Read the JSON output. Each item contains:

title - Post title
communityName - Subreddit name
upVotes - Score
numberOfComments - Comment count
url - Link to the post
body - Post text content
createdAt - When it was posted

### Step 4: Produce a structured summary

Present findings in this format:

Overview

Brief 2-3 sentence summary of what Reddit thinks about the topic.

Community Sentiment

Overall tone: Positive / Mixed / Negative
Key subreddits: List the most active communities discussing this

Key Themes

Positives / Pros:

Bullet points of praised aspects, with post references

Negatives / Cons:

Bullet points of criticized aspects, with post references

Neutral / Informational:

Notable factual observations from the community

Notable Posts

List 3-5 of the most relevant/upvoted posts with:

Title, subreddit, score
Brief summary of the post content
Link to the post

Summary

A concise takeaway of the community consensus.

### Tips

For broad topics, the script searches with the exact query provided. If results are sparse, suggest the user try alternative phrasings.
Posts are sorted by relevance by default.
The script deduplicates results by URL automatically.
Apify free tier provides $5/month in credits; each search typically costs a few cents.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: netmsglog
- Version: 0.0.3
## 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:36:54.222Z
- Expires at: 2026-05-15T00:36:54.222Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reddit-explore)
- [Send to Agent page](https://openagent3.xyz/skills/reddit-explore/agent)
- [JSON manifest](https://openagent3.xyz/skills/reddit-explore/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reddit-explore/agent.md)
- [Download page](https://openagent3.xyz/downloads/reddit-explore)