技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.2.0
统计:⭐ 2 · 1k · 10 current installs · 10 all-time installs
⭐ 2
安装量(当前) 10
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:atyachin/reddit-api
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's described purpose (search Reddit via Xpoz) matches the runtime instructions, but there are inconsistencies and a moderate install risk (an npm package 'mcporter' will be installed) and undeclared credential/network dependencies in the registry metadata that you should check before installing.
目的
The name/description claim to search Reddit via Xpoz MCP without a Reddit API key. The SKILL.md consistently uses the mcporter CLI to call Xpoz endpoints (xpoz.getRedditPosts..., checkOperationStatus), which is coherent with the stated purpose. However, the registry metadata at the top-level omitted the SKILL.md's declared dependency on the xpoz-setup skill and the network host (mcp.xpoz.ai), which is an inconsistency that merits attention.
说明范围
The instructions are narrowly scoped to using the mcporter CLI to call Xpoz MCP operations and to poll operation status (including receiving S3 download URLs). They do not instruct the agent to read unrelated local files or arbitrary environment variables. Note: SKILL.md expects you to run the separate xpoz-setup skill to perform OAuth-based auth — that external OAuth flow and the resulting credentials are required for normal operation even th…
安装机制
The install spec installs an npm package 'mcporter' which will create a mcporter binary. Installing arbitrary npm packages has moderate risk because packages can execute code on install and create binaries in PATH. The install source is the public npm registry (no explicit release URL), and the package provenance is unknown from the data provided. This is proportionate to the skill's need for a CLI but should be verified before installation.
证书
Top-level registry metadata lists no required env vars, but SKILL.md metadata and prose state that an Xpoz account and OAuth (via xpoz-setup) are required and that the skill needs network access to mcp.xpoz.ai. Requesting OAuth credentials for Xpoz is proportionate to the service; the problem is the mismatch between SKILL.md and the registry summary (undeclared dependency on xpoz-setup and network).
持久
always:false and normal model invocation are used. The skill does install a binary (mcporter) but does not request permanent inclusion, system-wide config modification, or cross-skill credential access. No 'always: true' or other elevated persistence is requested.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Reddit Search」。简介:Reddit Search — Search posts, comments, users, and subreddits across 100M+ inde…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/atyachin/reddit-api/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: reddit-api
description: "Reddit Search — Search posts, comments, users, and subreddits across 100M+ indexed Reddit entries. Find discussions, track topics, discover communities, and analyze engagement. No Reddit API key needed — works through Xpoz MCP with natural language queries."
homepage: https://xpoz.ai
metadata:
{
"openclaw":
{
"requires": { "bins": ["mcporter"], "skills": ["xpoz-setup"], "network": ["mcp.xpoz.ai"], "credentials": "Xpoz account (free tier) — auth via xpoz-setup skill (OAuth 2.1)" },
"install": [{"id": "node", "kind": "node", "package": "mcporter", "bins": ["mcporter"], "label": "Install mcporter (npm)"}],
},
}
tags:
- reddit
- reddit-search
- reddit-api
- subreddit
- reddit-comments
- reddit-posts
- community
- discussion
- social-media
- mcp
- xpoz
- research
---
# Reddit Search
**Search 100M+ Reddit posts and comments without a Reddit API key.**
Find discussions, discover subreddits, look up users, and export results — all through Xpoz MCP. No Reddit API credentials needed, no rate limit headaches, no OAuth setup with Reddit.
---
## ⚡ Setup
👉 **Follow [`xpoz-setup`](https://clawhub.ai/skills/xpoz-setup)** — handles auth automatically. User just clicks "Authorize" once.
---
## Setup
Run `xpoz-setup` skill. Verify: `mcporter call xpoz.checkAccessKeyStatus`
## What You Can Search
| Tool | What It Does |
|------|-------------|
| `getRedditPostsByKeywords` | Search posts by topic |
| `getRedditCommentsByKeywords` | Search comments (where deep expertise lives) |
| `getRedditUsersByKeywords` | Find users discussing a topic |
| `getRedditSubredditsByKeywords` | Discover relevant communities |
| `getRedditPostsByAuthor` | Get a user's post history |
| `getRedditUser` | Look up a specific profile |
| `searchRedditUsers` | Find users by name |
---
## Quick Examples
### Search Posts
```bash
mcporter call xpoz.getRedditPostsByKeywords
query="self hosting AND docker"
startDate=2026-01-01
limit=100
# Always poll for results:
mcporter call xpoz.checkOperationStatus operationId=op_abc123
```
### Search Comments
Comments often contain the deepest expertise — practitioners sharing real experience:
```bash
mcporter call xpoz.getRedditCommentsByKeywords
query="kubernetes networking troubleshoot"
fields='["id","text","authorUsername","subredditName","score","createdAtDate"]'
```
### Find Subreddits
```bash
mcporter call xpoz.getRedditSubredditsByKeywords
query="machine learning"
limit=30
```
### Look Up a User
```bash
mcporter call xpoz.getRedditUser
identifier=spez
identifierType=username
```
---
## Boolean Queries
- `AND`, `OR`, `NOT` (uppercase)
- `"exact phrase"` for precise matching
- `()` for grouping
```bash
mcporter call xpoz.getRedditPostsByKeywords
query="(python OR rust) AND "web scraping" NOT selenium"
```
---
## CSV Export
Every search returns a `dataDumpExportOperationId`. Poll it to get a download URL with the full dataset (up to 64K rows):
```bash
mcporter call xpoz.checkOperationStatus operationId=op_datadump_xyz
# → result.url = S3 download link
```
---
## Why Not Use the Reddit API Directly?
| | Reddit API | Xpoz Reddit Search |
|--|-----------|-------------------|
| **Auth** | OAuth + client ID + secret | One-click Xpoz auth |
| **Rate limits** | 100 requests/min | Handled automatically |
| **Search quality** | Reddit's search is notoriously poor | Full-text indexed, boolean operators |
| **Comments** | No keyword search for comments | ✅ Full comment search |
| **Export** | Manual pagination | One-click CSV (64K rows) |
| **Historical** | Limited | Back to 2019 |
---
## Related Skills
- **[xpoz-social-search](https://clawhub.ai/skills/xpoz-social-search)** — Cross-platform search (Twitter + Instagram + Reddit)
- **[expert-finder](https://clawhub.ai/skills/expert-finder)** — Find domain experts from social data
- **[social-sentiment](https://clawhub.ai/skills/social-sentiment)** — Brand sentiment analysis
---
**Website:** [xpoz.ai](https://xpoz.ai) • **Free tier available** • No Reddit API key needed
Built for ClawHub • 2026