merit-systems/agentcash-skills

social-intelligence

Search and monitor Reddit using x402-protected APIs. USE FOR: - Searching Reddit posts and discussions - Getting comments from Reddit threads - Social media monitoring and research - "reddit", "subreddit", "reddit discussion" - "what are people saying", "social media", "sentiment" - "trending", "viral", "popular posts" Use `npx agentcash@latest fetch` for Reddit endpoints. Reddit $0.02/call.

First seen Feb 20, 2026

Installation

$ npx skills add merit-systems/agentcash-skills --skill social-intelligence

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from merit-systems/agentcash-skills · top by installs.

npx skills add merit-systems/agentcash-skills

Browse all from merit-systems/agentcash-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 20
Default branch master
Open issues 12
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version2
More metadata
version
2

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,756 B
  • docs SUMMARY.md 505 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 128 installs

SKILL.md

Social Intelligence with x402 APIs

Access Reddit through x402-protected endpoints.

Setup

See [rules/getting-started.md](rules/getting-started.md) for installation and wallet setup.

Quick Reference

Task Endpoint Price Description
Search Reddit https://stableenrich.dev/api/reddit/search $0.02 Search Reddit posts
Get comments https://stableenrich.dev/api/reddit/post-comments $0.02 Comments on a post

See [rules/rate-limits.md](rules/rate-limits.md) for usage guidance.

Reddit

Search Posts

Search Reddit for posts:

npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "best programming languages 2024"}'

Parameters:

  • query - Search terms (required). Scope to a subreddit with Reddit's subreddit: operator inside the query (there is no separate subreddit field)
  • sort - relevance, new, top, comment_count (default: relevance)
  • timeframe - all, day, week, month, year (default: all)
  • maxResults - Maximum results, 1-25 (default: 10)
  • after - Pagination cursor from a previous response

Returns:

  • Post title and content
  • Author and subreddit
  • Upvotes and comment count
  • Post URL

Search in Subreddit

npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{
  "query": "typescript vs javascript subreddit:programming",
  "sort": "top",
  "timeframe": "year"
}'

Get Post Comments

Get comments from a Reddit post:

npx agentcash@latest fetch https://stableenrich.dev/api/reddit/post-comments -m POST -b '{"url": "https://reddit.com/r/programming/comments/abc123/..."}'

Parameters:

  • url - Full Reddit post URL (required)
  • cursor - Pagination cursor for more comments

Returns:

  • Post details
  • Comment text and author
  • Comment scores
  • Comment timestamps
  • hasMore / cursor for pagination

Workflows

Standard

  • (Optional) Check balance: npx agentcash@latest balance
  • Use npx agentcash@latest discover https://stableenrich.dev to list endpoints
  • Use npx agentcash@latest check <endpoint-url> to see expected parameters and pricing
  • Call endpoint with npx agentcash@latest fetch
  • Parse and present results

Brand Monitoring

  • (Optional) Check balance: npx agentcash@latest balance
  • Search Reddit for discussions
  • Summarize sentiment and key mentions
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "YourBrand", "sort": "new"}'

Competitor Research

  • Search Reddit for competitor reviews
  • Analyze common complaints and praise
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "competitor name review", "sort": "top", "timeframe": "year"}'

Community Sentiment

  • Identify relevant subreddit
  • Search for discussions on topic
  • Get comments from top posts
  • Synthesize overall sentiment
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "new feature name subreddit:relevant_community", "sort": "top"}'
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/post-comments -m POST -b '{"url": "https://reddit.com/..."}'

Response Data

Reddit Post Fields

  • title - Post title
  • selftext - Post body (for text posts; selftextTruncated flags truncation)
  • author - Username
  • subreddit - Subreddit name
  • score - Upvotes minus downvotes
  • numComments - Comment count
  • permalink - Link to post
  • createdAt - Timestamp

Search responses also include after (pagination cursor) and searchContext (query + result count).

Reddit Comment Fields

  • body - Comment text (bodyTruncated flags truncation)
  • author - Username
  • score - Net upvotes
  • createdAt - Timestamp

Comments are returned as a flat list; use hasMore and cursor to page through more.

Cost Estimation

Task Calls Cost
Reddit thread + comments 2 $0.04
Full monitoring scan 3-5 $0.06-0.10