trend-spotter

trend-spotter is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 26 tokens per session (865 once invoked), scanned C, original, MIT.

A trend-research tool that looks for emerging topics using news, social media, search trends, and GitHub activity.

In plain words
What is it for?
Useful for finding current technology topics, content ideas, and industry developments for creators and product teams.
Why use it?
It brings signals from several public sources together instead of requiring separate searches for each source.

Skill for Claude CodeCodex

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

Good fit Useful for finding current technology topics, content ideas, and industry developments for creators and product teams.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/trend-spotter
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 malue-ai/dazee-small --skill trend-spotter
Clone the repo
git clone --depth 1 https://github.com/malue-ai/dazee-small

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 trend-spotter

README.md
[![agentmods](https://agentmods.dev/badge/skills/malue-ai/dazee-small/trend-spotter/github.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/trend-spotter)
Your own site
<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.

agentmods 80×15 button for trend-spotter

Your own site · 80×15
<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>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 865 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00026 $0.00865
Opus 5 $0.00013 $0.00432
Sonnet 5 $0.00005 $0.00173
Haiku 4.5 $0.00003 $0.00086

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

Security

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 "
instances/xiaodazi/skills/trend-spotter/SKILL.md · 111 lines

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

Read the full file on GitHub · 111 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. 9d ago First seen · 111 lines · 26 tokens per session scan C d9ac5662078f

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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.

microsoft/vscode · 53 tokens

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…

microsoft/vscode · 71 tokens

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…

vercel/next.js · 83 tokens