A collection of Agent Skills for tracking, analyzing, and turning Chinese-internet hotspots into platform-native viral content via the trendradar MCP server.
Spec: agentskills.io/specification · License: Apache-2.0 · Suite version:
0.1.0
| Skill | Purpose | Triggers |
|---|---|---|
trend-monitor |
Multi-platform hotspot sweep + emerging-keyword extraction | 今日热点 / 各平台热搜 / what's trending |
trend-deep-dive |
Single-topic analysis (trend / lifecycle / viral / predict) | 深挖 XX / 这个话题怎么演变 / 会不会火 |
trend-alert |
Anomaly detection + push to 9 channels (飞书/钉钉/Telegram/…) | 异动告警 / 监控 XX / breakout alert |
viral-forge |
Platform-native viral content generation (6 platforms, 36 title patterns) | 写爆款 / 借势 XX / 抖音脚本 / 小红书笔记 |
trend-report |
Daily/weekly/monthly digest reports (3 audience templates) | 日报 / 周报 / 对比报告 / digest |
Pick trend-monitor to discover, then route to deep-dive / viral-forge / trend-report depending on intent. trend-alert runs in the background.
Skills follow the Agent Skills open format and are recognized by Claude Code, OpenAI Codex, Cursor, Gemini CLI, OpenCode, Goose, and 30+ other clients (full list).
Each skill folder is self-contained — clone the whole repo, or copy/symlink only the skills you want.
# Clone the suite
git clone https://github.com/asoiso/trend-radar.git
cd trend-radar
# Option A: symlink everything into Claude Code's global skill dir
for skill in trend-monitor trend-deep-dive trend-alert viral-forge trend-report; do
ln -s "$(pwd)/$skill" "$HOME/.claude/skills/$skill"
done
# Option B: copy a single skill into a project
cp -r viral-forge /path/to/project/.claude/skills/Per-client install paths and verification steps: see docs/installation.md.
All five skills assume the trendradar MCP server is connected and exposes the mcp__trendradar__* tool family (news discovery, topic analysis, sentiment, channel push). Without it, skills degrade to web search and local reasoning — the tracking and alert features will be limited.
Tool catalog: docs/mcp-tools.md.
trend-radar/
├── trend-monitor/ SKILL.md
├── trend-deep-dive/ SKILL.md + references/decision-tree.md
├── trend-alert/ SKILL.md
├── viral-forge/ SKILL.md + references/{title-patterns.md, platform-playbook.md}
├── trend-report/ SKILL.md
├── docs/ mcp-tools.md, installation.md (reader-facing, not loaded by agents)
├── .github/workflows/ validate.yml (CI: skills-ref validate)
├── LICENSE Apache-2.0
├── CHANGELOG.md
└── CONTRIBUTING.md
Each skill is independently installable. Cross-skill mentions in SKILL.md (e.g. trend-alert referencing ../trend-monitor) are informational only — skills don't depend on siblings to function.
- ✅ Claude Code, Claude.ai, OpenAI Codex, Cursor, VS Code (Copilot), Gemini CLI, OpenCode, Goose, Roo Code, Kiro, Workshop, and other Agent Skills clients.
⚠️ Some clients require enabling skills in settings — seedocs/installation.md.- 🌐 Skill content mixes 中文 + English triggers. Most useful when the agent answers in 中文.
PRs welcome. New skills must pass skills-ref validate and include WHAT + WHEN-TO-USE keywords in the description. See CONTRIBUTING.md.
Apache License 2.0 — see LICENSE.