[REPLACE: SKILL_NAME]

Monitors social mentions on X and Reddit and generates daily sentiment digests.

Updated May 25, 2026
One-click install
npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill replace-skill-name-cbowcrptex
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: [REPLACE: SKILL_NAME]
Source: https://github.com/Cbowcrptex/CBOWCRYPTEX/tree/main/templates/social-monitor
Command: npx skills add https://github.com/Cbowcrptex/CBOWCRYPTEX --skill replace-skill-name-cbowcrptex

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Tracking brand or topic mentions across social platforms manually is time-consuming and noisy. This Skill automates a daily sweep of X and Reddit for chosen keywords, filters out bots and low-engagement noise, and produces a concise digest with volume, sentiment, and top posts. ## Core Features & Use Cases - Cross-platform keyword monitoring: Searches X (via xAI API) and Reddit (via its keyless JSON endpoint) for each configured keyword, restricted to the last 24 hours. - Noise and bot filtering: Drops posts below a minimum likes threshold, reposts, and accounts matching bot heuristics (e.g., *_bot handles, new accounts with high posting velocity). - Sentiment tagging and digest output: Labels the top 10 posts as positive, neutral, or negative, then writes a Markdown digest to articles/, sends a short notification, and logs volume/sentiment status to memory/logs/. - Use Case: A crypto community manager wants a daily summary of mentions of their token on X and Reddit, with alerts only when volume spikes or sentiment turns negative. ## Quick Start Run the social monitor skill with your keywords to generate today's mention digest from X and Reddit.

Frequently Asked Questions about [REPLACE: SKILL_NAME]

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I monitor keyword mentions on X and Reddit daily?▼

Configure your keywords, then the skill searches X via the xAI API and Reddit via its keyless search.json endpoint for the past 24 hours. It scores posts by engagement and recency, picks the top 5 per platform, and writes a Markdown digest with volume and sentiment.

How do I filter out bot accounts from social media monitoring?▼

The skill drops handles matching patterns like `*_bot` and accounts younger than 7 days with more than 100 posts. It also enforces a minimum likes threshold so low-signal noise never reaches the digest.

Does X search work without an API key?▼

No. X search requires an XAI_API_KEY and uses the project's prefetch script pattern rather than raw curl inside a sandbox. Reddit's JSON endpoint is keyless but rate-limited, with WebFetch as a fallback on HTTP 429.

Why is the social monitor not sending notifications some days?▼

The skill stays silent on quiet days, defined as volume below 25% of the 7-day average with no negative-sentiment spike. Check `memory/logs/` for a SOCIAL_QUIET status to confirm this behavior.

Can I override the default monitored keywords at runtime?▼

Yes. Pass alternative comma-separated keywords through the optional var parameter, which overrides the default keyword list. Each token is trimmed, lowercased, and searched as its own query.