用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aaronjmars/aeon --skill replace-skill-name命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Write a publication-ready article in one of three angles - a trending long-form piece, a watched-repo thesis, or a project-through-a-lens essay. Optional Replicate hero image with --visual.
Curated trending across GitHub repos and the Hugging Face Hub (models, datasets, spaces) - filtered, clustered, and labeled by momentum with a one-line why-notable per pick.
Crypto market scanner and single-token analyst - movers scans top winners/losers/trending or on-chain runners with pump-risk flags; single-token produces a verdict-first deep report for one token.
基于 SOC 职业分类
正在显示 SKILL.md
| name | [REPLACE: SKILL_NAME] |
| description | Mention/keyword sweep on social platforms for [REPLACE: KEYWORDS] — trends, sentiment, top posts |
${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.
Resolve keywords — KEYWORDS="${var:-[REPLACE: KEYWORDS]}". Split on commas, trim each, lower-case. Each token becomes its own search query.
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.
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"
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).
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.
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. ...
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).
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
X / xAI requires XAI_API_KEY; a bare $XAI_API_KEY on a curl line is refused by the Bash analyzer, so call ./secretcurl with the {XAI_API_KEY} placeholder (the key is injected via requires:). Reddit's JSON endpoint is keyless but rate-limited per IP — WebFetch is the fallback when curl returns 429.
SPIKE (volume > 2x 7d avg) is a real signal; sentiment shifts within normal volume often aren't.MIN_LIKES = [REPLACE: MIN_LIKES] is a starting threshold — raise it as the topic gains attention so noise stays out.