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.
npx agentmods add skills/aeonfun/aeon/crypto-trackernpx skills add aeonfun/aeon --skill crypto-trackergit clone --depth 1 https://github.com/aeonfun/aeonWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00034 | $0.00826 |
| Opus 5 | $0.00017 | $0.00413 |
| Sonnet 5 | $0.00007 | $0.00165 |
| Haiku 4.5 | $0.00003 | $0.00083 |
Grade A, and why
[REPLACE: SKILL_NAME] scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sf -H "x-cg-pro-api-key: $COINGECKO_API_KEY" "$URL" > .token-cache.json Copies of this mod
1 near-identical copy found in the catalogue:
- [REPLACE: SKILL_NAME] — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.
${var} — Optional. Pass a different CoinGecko ID to override the default. If empty, tracks the configured token.
Today is ${today}. Track [REPLACE: TOKEN_SYMBOL] price/volume and alert on anomalies.
Steps
-
Fetch current state — query CoinGecko for the latest price, 24h change, 24h volume. Use
COINGECKO_API_KEYif set, else the keyless endpoint:ID="${var:-[REPLACE: COINGECKO_ID]}" if [ -n "${COINGECKO_API_KEY:-}" ]; then URL="https://pro-api.coingecko.com/api/v3/simple/price?ids=$ID&vs_currencies=usd&include_24hr_change=true&include_24hr_vol=true" curl -sf -H "x-cg-pro-api-key: $COINGECKO_API_KEY" "$URL" > .token-cache.json else URL="https://api.coingecko.com/api/v3/simple/price?ids=$ID&vs_currencies=usd&include_24hr_change=true&include_24hr_vol=true" curl -sf "$URL" > .token-cache.json fiIf a
curlGET is flaky, use WebFetch on the same URL as a fallback (there is no network sandbox — WebFetch is just a convenience for flaky public reads). -
Read prior state — last 7 days of
memory/logs/YYYY-MM-DD.mdfor previous prices and volumes (parse lines like**[REPLACE: TOKEN_SYMBOL]**: price=$N, volume_24h=$N). -
Detect anomalies — flag if
|price_change_24h| >= [REPLACE: ALERT_THRESHOLD_PCT]%OR if 24h volume is>= 2xthe 7-day median. -
Write
output/articles/[REPLACE: SKILL_NAME]-${today}.mdwith:- Current price, 24h change, 24h volume
- 7-day price chart (sparkline as
▁▂▃▅▇characters) - Anomaly verdict:
QUIET/STEADY/ANOMALY(and which fired) - Links: CoinGecko page, Etherscan / explorer page if you know the contract address
-
Notify — if
ANOMALY, send via./notifywith the verdict + 1-2 sentences of context. Stay silent on QUIET/STEADY days. -
Log — append to
memory/logs/${today}.md:## [REPLACE: SKILL_NAME] - **[REPLACE: TOKEN_SYMBOL]**: price=$N, change_24h=$N%, volume_24h=$N - **Verdict**: QUIET | STEADY | ANOMALY:price | ANOMALY:volume
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.
- 2d ago First seen · 61 lines · 0 tokens per session scan A ba349bc6aa5e
[REPLACE: SKILL_NAME] is a skill published in the GitHub repository aeonfun/aeon (706 stars, last pushed 2d ago), licensed MIT. It adds 34 tokens to every session and 826 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
risk-scoring
Score how concentrated and risky a portfolio is on a 0-100 scale from its position weights. Use when the user asks how risky their portfolio is, whether it is too concentrated, or for a diversification check.
valuation
Estimate whether a stock looks cheap or expensive using a price-to-earnings (P/E) based fair-value method. Use when the user asks if a stock is over- or under-valued, or for a fair-value / target price.
comparable-company-analysis
生成上市公司可比公司分析报告。当用户请求分析某家公司的竞争对手、可比公司、同业对比、竞品分析、对标公司分析时使用此技能。.
财经分析工具包
专业的财经分析工具包,提供股票分析、市场趋势预测、投资建议等功能,帮助Agent进行财经决策和市场研究。.
regulatory-analysis
Analyzes documents and processes against FINRA, SEC, Federal Reserve, and CFPB regulatory frameworks. Identifies compliance gaps, classifies findings by severity, and recommends remediation. Use when performing compliance audits, regulatory reviews, gap analyses, or verifying policy adherence to financial regulations.
document-review
Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documents, regulatory filings, or when the user mentions compliance checks, financial audits, or document verification.