Skip to main content

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 TRIGGERS: - "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. IMPORTANT: Use exact endpoint paths from the Quick Reference table below.

설치로 이동

소스 정보

저장소
Merit-Systems/agentcash-skills
최근 소스 활동
2026년 8월 11일 16:12
감지된 SKILL.md 언어
영어
스타
21
포크
20

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
social-intelligence
description
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 TRIGGERS: - "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. IMPORTANT: Use exact endpoint paths from the Quick Reference table below.
metadata
{"version":2}
# 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: ```bash 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 ```bash 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: ```bash 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 ```bash 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 ```bash 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 ```bash npx agentcash@latest fetch https://stableenrich.dev/api/reddit/search -m POST -b '{"query": "new feature name subreddit:relevant_community", "sort": "top"}' ``` ```bash 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 |
GitHub에서 보기