social-intelligence
17
总安装量
14
周安装量
#20753
全站排名
安装命令
npx skills add https://github.com/merit-systems/agentcash-skills --skill social-intelligence
Agent 安装分布
mcpjam
14
claude-code
14
replit
14
junie
14
windsurf
14
zencoder
14
Skill 文档
Social Intelligence with x402 APIs
Access X/Twitter (via Grok) and Reddit through x402-protected endpoints.
Setup
See rules/getting-started.md for installation and wallet setup.
Quick Reference
| Task | Endpoint | Price | Description |
|---|---|---|---|
| Search X posts | https://stableenrich.dev/api/grok/x-search |
$0.02 | Search tweets by keywords |
| Find X users | https://stableenrich.dev/api/grok/user-search |
$0.02 | Search users by criteria |
| Get user posts | https://stableenrich.dev/api/grok/user-posts |
$0.02 | Recent posts from user |
| 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.
X/Twitter via Grok
Search Posts
Search for X posts by keywords:
npx agentcash fetch https://stableenrich.dev/api/grok/x-search -m POST -b '{"query": "AI agents"}'
Parameters:
query– Search keywords (required)
Returns:
- Post text and author info
- Engagement metrics (likes, retweets, replies)
- Timestamps and URLs
- Media attachments
Search Users
Find X users matching criteria:
npx agentcash fetch https://stableenrich.dev/api/grok/user-search -m POST -b '{"query": "AI researcher San Francisco"}'
Returns:
- Username and display name
- Bio/description
- Follower/following counts
- Verification status
- Profile links
Get User’s Posts
Fetch recent posts from a specific user:
npx agentcash fetch https://stableenrich.dev/api/grok/user-posts -m POST -b '{"username": "elonmusk"}'
Parameters:
username– X username without @ (required)
Returns: Recent posts with full engagement metrics.
Search Posts
Search Reddit for posts:
npx agentcash 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 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 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 wallet info - Use
npx agentcash discover https://stableenrich.devto list all endpoints - Use
npx agentcash check <endpoint-url>to see expected parameters and pricing - Call endpoint with
npx agentcash fetch - Parse and present results
Brand Monitoring
- (Optional) Check balance:
npx agentcash wallet info - Search X for brand mentions
- Search Reddit for discussions
- Summarize sentiment and key mentions
npx agentcash fetch https://stableenrich.dev/api/grok/x-search -m POST -b '{"query": "YourBrand OR @YourBrand"}'
npx agentcash fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "YourBrand", "sort": "new"}'
Competitor Research
- Search Reddit for competitor reviews
- Search X for competitor mentions
- Analyze common complaints and praise
npx agentcash fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "competitor name review", "sort": "top", "time": "year"}'
Influencer Discovery
- Define criteria (topic, follower range)
- Search for matching users
- Get recent posts for top candidates
npx agentcash fetch https://stableenrich.dev/api/grok/user-search -m POST -b '{"query": "tech blogger 100k followers"}'
Community Sentiment
- Identify relevant subreddit
- Search for discussions on topic
- Get comments from top posts
- Synthesize overall sentiment
npx agentcash fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "new feature name", "subreddit": "relevant_community", "sort": "hot"}'
npx agentcash fetch https://stableenrich.dev/api/reddit/post-comments -m POST -b '{"postUrl": "https://reddit.com/..."}'
Response Data
X/Twitter Post Fields
text– Post contentauthor– Username, display name, verified statusmetrics– Likes, retweets, replies, quotes, viewscreatedAt– Timestampurl– Link to postmedia– Attached images/videos
X/Twitter User Fields
username– Handle without @displayName– Full namedescription– Biofollowers/following– Countsverified– Verification statusprofileImageUrl– Avatar
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 |
|---|---|---|
| Quick X search | 1 | $0.02 |
| User profile + posts | 2 | $0.04 |
| Reddit thread + comments | 2 | $0.04 |
| Full monitoring scan | 4-6 | $0.08-0.12 |