[REPLACE: SKILL_NAME]

[REPLACE: SKILL_NAME] is a skill for Claude Code, Codex from aeonfun/aeon. It costs 0 tokens per session (1,064 once invoked), scanned B, original, MIT.

A scheduled social-listening task that searches X and Reddit for chosen keywords, then summarizes trends, sentiment, and popular posts.

In plain words
What is it for?
Tracking public discussion about a topic, finding emerging trends, and reviewing sentiment or highly liked posts.
Why use it?
It gathers mentions from two social platforms in one run and filters out low-engagement posts to reduce noise.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Tracking public discussion about a topic, finding emerging trends, and reviewing sentiment or highly liked posts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aeonfun/aeon/social-monitor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aeonfun/aeon --skill social-monitor
Clone the repo
git clone --depth 1 https://github.com/aeonfun/aeon

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for [REPLACE: SKILL_NAME]

README.md
[![agentmods](https://agentmods.dev/badge/skills/aeonfun/aeon/social-monitor/github.svg)](https://agentmods.dev/skills/aeonfun/aeon/social-monitor)
Your own site
<a href="https://agentmods.dev/skills/aeonfun/aeon/social-monitor"><img src="https://agentmods.dev/badge/skills/aeonfun/aeon/social-monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for [REPLACE: SKILL_NAME]

Your own site · 80×15
<a href="https://agentmods.dev/skills/aeonfun/aeon/social-monitor"><img src="https://agentmods.dev/badge/skills/aeonfun/aeon/social-monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,064 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 24
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 25
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01064
Opus 5 $0.00000 $0.00532
Sonnet 5 $0.00000 $0.00213
Haiku 4.5 $0.00000 $0.00106

Measured 12d ago against content hash 485a54b7e9f8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

[REPLACE: SKILL_NAME] scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

# ./secretcurl -H "Authorization: Bearer {XAI_API_KEY}" -d @/tmp/payload.json

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

# Reddit's keyless JSON endpoint. WebFetch fallback if curl fails (sandbox).
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

docs/examples/skill-templates/social-monitor/SKILL.md · 83 lines

How it starts

The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.

${var} — Optional. Pass alternative keywords (comma-separated) to override the default. If empty, monitors [REPLACE: KEYWORDS].

Today is ${today}. Monitor social mentions of [REPLACE: KEYWORDS] and produce a summary.

Steps

  1. Resolve keywordsKEYWORDS="${var:-[REPLACE: KEYWORDS]}". Split on commas, trim each, lower-case. Each token becomes its own search query.

  2. Search X — for each keyword, use the X / xAI search path (project's standard pattern):

    # Uses XAI_API_KEY in-run via ./secretcurl (the key is injected via requires:).
    # Mirror the fetch-tweets skill: POST https://api.x.ai/v1/responses with
    #   ./secretcurl -H "Authorization: Bearer {XAI_API_KEY}" -d @/tmp/payload.json
    # WebFetch (or a Nitter mirror) is the last-resort fallback.
    

    Restrict to language [REPLACE: LANGUAGE] (e.g. en, fr, any). Drop posts with fewer than [REPLACE: MIN_LIKES] likes — that filter is what protects the channel from low-signal noise.

  3. Search Reddit — for each keyword:

    # Reddit's keyless JSON endpoint. WebFetch fallback if curl fails (sandbox).
    curl -sf "https://www.reddit.com/search.json?q=$KEYWORD&t=day&restrict_sr=0" \
      -H "User-Agent: aeon/1.0" > .reddit-cache.json || \
      echo "use WebFetch on https://www.reddit.com/search.json?q=$KEYWORD&t=day"
    
  4. Score and pick top 5 per platform — score on engagement (likes, comments, score) × recency (last 24h gets full marks). Drop reposts and obvious bot accounts (handles like *_bot, account age < 7 days with > 100 posts).

  5. Tag sentiment — for the top 10 posts overall, label each positive / neutral / negative based on tone of the post text. Keep this lightweight — one-token classification, no nested reasoning.

  6. Write output/articles/[REPLACE: SKILL_NAME]-${today}.md:

    # [REPLACE: KEYWORDS] — ${today}
    
    ## Volume
    - X: N posts (vs 7d avg M)
    - Reddit: N posts (vs 7d avg M)
    
    ## Sentiment
    positive: X · neutral: Y · negative: Z
    
    ## Top posts
    1. [Author · platform · timestamp]
       "Excerpt or paraphrase."
       → URL
    
    2. ...
    
  7. Notify via ./notify with a 2-3 line summary: *[REPLACE: KEYWORDS] — ${today}* · N posts · sentiment skews positive/negative · top: <one-line title>. Full digest: <url>. Silent on quiet days (volume < 25% of 7d average AND no negative-sentiment spike).

  8. Log to memory/logs/${today}.md:

    ## [REPLACE: SKILL_NAME]
    - **Volume**: x_posts=N, reddit_posts=N, vs_7d_avg=Δ%
    - **Sentiment**: pos=X, neu=Y, neg=Z
    - **Status**: SOCIAL_OK | SOCIAL_QUIET | SOCIAL_SPIKE (vol > 2x avg) | SOCIAL_DEGRADED
    

Read the full file on GitHub · 83 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 83 lines · 0 tokens per session scan B 485a54b7e9f8

Subscribe to this mod's changes

[REPLACE: SKILL_NAME] is a skill published in the GitHub repository aeonfun/aeon (723 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,064 tokens. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.