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 skills add malue-ai/dazee-small --skill trend-spottergit clone --depth 1 https://github.com/malue-ai/dazee-smallWrote 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.
[](https://agentmods.dev/skills/malue-ai/dazee-small/trend-spotter)<a href="https://agentmods.dev/skills/malue-ai/dazee-small/trend-spotter"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/trend-spotter/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.
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/trend-spotter"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/trend-spotter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00026 | $0.00865 |
| Opus 5 | $0.00013 | $0.00432 |
| Sonnet 5 | $0.00005 | $0.00173 |
| Haiku 4.5 | $0.00003 | $0.00086 |
Grade C, and why
trend-spotter scanned grade C 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 9d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -s "https://trends.google.com/trends/trendingsearches/daily/rss?geo=CN" | python3 -c " Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "https://trends.google.com/trends/trendingsearches/daily/rss?geo=CN" | python3 -c " How it starts
The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
趋势与热点发现
从新闻、社交媒体和搜索数据中发现新兴趋势和热门话题。
使用场景
- 用户说「最近 AI 领域有什么新趋势」「今天有什么热点」
- 内容创作者需要找热门话题
- 产品经理需要了解行业动向
数据来源
1. Google Trends(搜索趋势)
# 实时热搜(中国)
curl -s "https://trends.google.com/trends/trendingsearches/daily/rss?geo=CN" | python3 -c "
import xml.etree.ElementTree as ET
import sys
tree = ET.parse(sys.stdin)
root = tree.getroot()
ns = {'ht': 'https://trends.google.com/trends/trendingsearches/daily'}
for item in root.findall('.//item')[:10]:
title = item.find('title').text
traffic = item.find('ht:approx_traffic', ns)
traffic_text = traffic.text if traffic is not None else '?'
print(f'🔥 {title} ({traffic_text})')
"
2. 新闻聚合
# 通过公开 RSS 获取行业新闻
# 配合 blogwatcher Skill 使用
# 或直接用 curl 获取新闻 API(免费的如 NewsAPI 有限额)
curl -s "https://newsapi.org/v2/top-headlines?country=cn&category=technology&apiKey=$NEWS_API_KEY&pageSize=10"
3. GitHub Trending
# 获取 GitHub 趋势项目
curl -s "https://api.github.com/search/repositories?q=stars:>100+pushed:>$(date -v-7d +%Y-%m-%d)&sort=stars&order=desc&per_page=10" | python3 -c "
import json, sys
data = json.load(sys.stdin)
for repo in data.get('items', [])[:10]:
name = repo['full_name']
stars = repo['stargazers_count']
desc = (repo.get('description') or '')[:60]
print(f'⭐ {name} ({stars} stars)')
print(f' {desc}')
"
4. Hacker News 热门
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | python3 -c "
import json, sys, urllib.request
ids = json.load(sys.stdin)[:10]
for id in ids:
url = f'https://hacker-news.firebaseio.com/v0/item/{id}.json'
item = json.loads(urllib.request.urlopen(url).read())
title = item.get('title', '')
score = item.get('score', 0)
print(f'📰 [{score}分] {title}')
"
报告格式
## 趋势报告 — {领域}
**日期**: 2025-02-07
### 🔥 热门话题 Top 5
1. **话题名** — 简要描述 + 热度指标
2. ...
### 📈 上升趋势
- 趋势 A:过去 7 天搜索量增长 200%
- 趋势 B:GitHub 相关项目 Star 数激增
### 💡 洞察
- 行业正在向 XX 方向发展
- 值得关注的新技术/产品:XX
### 📌 内容创作建议
- 热门选题:XX
- 最佳发布时间:XX
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.
- 9d ago First seen · 111 lines · 26 tokens per session scan C d9ac5662078f
trend-spotter is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 26 tokens to every session and 865 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…