
Social Intelligence
- 117 installs
- 16 repo stars
- Updated July 14, 2026
- merit-systems/agentcash-skills
Analyze social signals, audience behavior, and conversation trends so agents inform content strategy, outreach timing, and lifecycle engagement decisions.
About
The social-intelligence skill helps AgentCash agents gather and interpret social media and audience signals, turning conversation trends, engagement patterns, and community behavior into analytics that inform content, distribution, and customer lifecycle strategies.
- Social signal monitoring for agents
- Audience and trend interpretation support
- Informs content and outreach planning
- AgentCash growth-oriented capability
- Lifecycle and distribution decision inputs
Social Intelligence by the numbers
- 117 all-time installs (skills.sh)
- +2 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #1,100 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/merit-systems/agentcash-skills --skill social-intelligenceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 117 |
|---|---|
| repo stars | ★ 16 |
| Last updated | July 14, 2026 |
| Repository | merit-systems/agentcash-skills ↗ |
What it does
Analyze social signals, audience behavior, and conversation trends so agents inform content strategy, outreach timing, and lifecycle engagement decisions.
Files
Social Intelligence with x402 APIs
Access Reddit through x402-protected endpoints.
Setup
See 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 for usage guidance.
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)subreddit- Limit to specific subredditsort- relevance, hot, new, toptime- hour, day, week, month, year, all
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",
"time": "year"
}'Get Post Comments
Get comments from a Reddit post:
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/post-comments -m POST -b '{"postUrl": "https://reddit.com/r/programming/comments/abc123/..."}'Returns:
- Comment text and author
- Upvotes/downvotes
- Reply threads
- Comment timestamps
Workflows
Standard
- [ ] (Optional) Check balance:
npx agentcash@latest balance - [ ] Use
npx agentcash@latest discover https://stableenrich.devto 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", "time": "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": "hot"}'npx agentcash@latest fetch https://stableenrich.dev/api/reddit/post-comments -m POST -b '{"postUrl": "https://reddit.com/..."}'Response Data
Reddit Post Fields
title- Post titleselftext- Post body (for text posts)author- Usernamesubreddit- Subreddit namescore- Upvotes minus downvotesnumComments- Comment counturl- Link to postcreatedUtc- Timestamp
Reddit Comment Fields
body- Comment textauthor- Usernamescore- Net upvotesreplies- Nested repliescreatedUtc- Timestamp
Cost Estimation
| Task | Calls | Cost |
|---|---|---|
| Reddit thread + comments | 2 | $0.04 |
| Full monitoring scan | 3-5 | $0.06-0.10 |
Getting Started
Setup
1. Install the agentcash CLI:
npm install -g agentcash2. Check wallet:
npx agentcash@latest balance3. Fund wallet (if needed):
- Redeem invite:
npx agentcash@latest redeem YOUR_CODE - Or run
npx agentcash@latest accountsto get Base or Solana deposit links and wallet addresses
Troubleshooting
| Issue | Solution |
|---|---|
| "Command not found" | Run npm install -g agentcash |
| "Insufficient balance" | Fund wallet with USDC |
| "Payment failed" | Check balance, retry (transient errors) |
| "405 Method Not Allowed" | Verify endpoint path matches exactly from Quick Reference table in SKILL.md |
Rate Limits and Usage Guidelines
General Guidelines
x402 endpoints don't have strict rate limits per se, but:
1. Respect platform norms - Don't spam searches 2. Space out requests - Avoid rapid-fire identical queries 3. Cache results - Don't re-fetch the same data repeatedly 4. Be specific - Targeted queries work better than broad ones
Reddit Considerations
Search Tips
- Subreddit filtering makes searches much more relevant
- Use sort="top" and time="year" for quality content
- "hot" gives current discussions
Comments
- Large threads may have truncated comments
- Focus on top-level comments for sentiment
- Deeply nested replies may not all be returned
What Works Well
- Subreddit-specific searches
- Top/hot post discovery
- Getting comment threads
What May Not Work
- Very old archived posts
- Deleted content
- Quarantined subreddits
Efficient Usage Patterns
Do This
# One targeted search (Reddit)
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "specific topic", "subreddit": "relevant", "sort": "top"}'Avoid This
# Multiple broad searches for same topic — wasteful
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "AI"}'
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "artificial intelligence"}'
npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "machine learning"}'Instead, craft one good query or search sequentially only when each result informs the next.
Cost Management
Reddit endpoints are $0.02 per call.
| Scenario | Typical Calls | Cost |
|---|---|---|
| Quick Reddit search | 1 | $0.02 |
| Thorough research | 3-5 | $0.06-0.10 |
| Full monitoring | 5-10 | $0.10-0.20 |
Budget for ~5-10 calls per monitoring session to cover Reddit search and comments.