Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

anysite-trend-analysis任意网站趋势分析

Agent Skill

anysite-trend-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

16

下载量

104
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:anysite-trend-analysis(任意网站趋势分析)
来源仓库:https://github.com/anysiteio/agent-skills
仓库路径:skills/anysite-trend-analysis
安装命令:
npx skills add https://github.com/anysiteio/agent-skills --skill anysite-trend-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/anysiteio/agent-skills --skill anysite-trend-analysis

简介

anysite-trend-analysis 用于追踪社交媒体上的新兴趋势和病毒式内容。

  • 适合品牌监测、热点预测和内容策略优化场景。
  • 支持 Twitter/X、Reddit、YouTube 等平台的话题热度分析。
  • 可识别 hashtag 表现和话题增长曲线,帮助把握传播时机。
  • 数据覆盖度约 75%,受限于各平台公开 API 的可用性和频率限制。

SKILL.md

anysite Trend Analysis

Discover emerging trends and track viral content across social platforms using anysite MCP. Identify what's gaining momentum before it peaks.

Overview

  • Detect emerging trends across multiple platforms
  • Track viral content and identify breakout topics
  • Monitor hashtag performance and trending keywords
  • Analyze topic momentum and growth patterns
  • Identify market shifts through social listening

Coverage: 75% - Good for Twitter, Reddit, YouTube, LinkedIn, Instagram

Supported Platforms

  • Twitter/X: Trending topics, viral tweets, hashtag tracking
  • Reddit: Trending posts, subreddit activity, upvote velocity
  • YouTube: Trending videos, search trends, rising channels
  • LinkedIn: Professional trends, industry discussions
  • Instagram: Trending hashtags, viral content

v2 Tool Interface

All data fetching uses the universal execute() meta-tool. Always call discover(source, category) first if you need to verify endpoint names or available parameters.

Core tools:

  • execute(source, category, endpoint, params) - Fetch data. Returns first page + cache_key.
  • get_page(cache_key, offset, limit) - Load more results from a previous execute.
  • query_cache(cache_key, conditions, sort_by, aggregate, group_by) - Filter, sort, or aggregate cached data without new API calls.
  • export_data(cache_key, format) - Export full dataset as CSV, JSON, or JSONL.

Error handling: If execute() returns an error with llm_hint, follow the hint to fix the request (e.g., correcting a parameter name or adjusting the query).

Quick Start

Step 1: Search for Trending Content

By platform:

  • Twitter: execute("twitter", "search", "search_tweets", {"query": "<topic>", "count": 100}) sorted by engagement
  • Reddit: execute("reddit", "search", "search", {"query": "<topic>"}) sorted by upvotes
  • YouTube: execute("youtube", "search", "search_videos", {"query": "<topic>", "count": 50}) by recent
  • LinkedIn: execute("linkedin", "post", "search_posts", {"keywords": "<topic>"}) by engagement
  • Instagram: execute("instagram", "search", "search_users", {"query": "<topic>"}) for hashtag/topic discovery

Step 2: Analyze Momentum

Use query_cache() to filter and sort cached results:

query_cache(cache_key, sort_by="engagement_desc", conditions=[{"field": "date", "op": ">", "value": "2024-01-01"}])

Check indicators:

  • Engagement velocity (growth rate)
  • Cross-platform presence
  • Comment volume and sentiment
  • Share/retweet patterns

Step 3: Track Over Time

Monitor changes:

  • Daily engagement growth
  • New platform adoption
  • Mainstream vs. niche spread
  • Peak timing prediction

Step 4: Report Insights

Use export_data(cache_key, "csv") to generate downloadable reports.

Deliver:

  • Trending topics list
  • Momentum indicators
  • Strategic recommendations
  • Early warnings or opportunities

Common Workflows

Workflow 1: Multi-Platform Trend Detection

Scenario: Identify what's trending in tech/AI space

Steps:

  1. Search Across Platforms
# Twitter
execute("twitter", "search", "search_tweets", {"query": "AI OR artificial intelligence", "count": 100})
→ Filter for: Posted within 24-48h, high engagement
→ Save cache_key as twitter_cache

# Reddit
execute("reddit", "search", "search", {"query": "artificial intelligence"})
→ Filter: r/technology, r/MachineLearning, r/singularity
→ Save cache_key as reddit_cache

# YouTube
execute("youtube", "search", "search_videos", {"query": "AI news", "count": 50})
→ Filter: Published this week, views >10k
→ Save cache_key as youtube_cache

# LinkedIn
execute("linkedin", "post", "search_posts", {"keywords": "artificial intelligence"})
→ Filter: High engagement, recent
→ Save cache_key as linkedin_cache
  1. Use query_cache to Filter Results
# Filter Twitter for high-engagement posts
query_cache(twitter_cache, sort_by="engagement_desc", conditions=[{"field": "likes", "op": ">", "value": 100}])

# Filter Reddit for specific subreddits
query_cache(reddit_cache, conditions=[{"field": "subreddit", "op": "contains", "value": "technology"}])

# Aggregate YouTube view counts
query_cache(youtube_cache, aggregate={"field": "views", "op": "avg"})
  1. Load More Results if Needed
# If execute() returned next_offset, paginate
get_page(twitter_cache, offset=10, limit=50)
get_page(reddit_cache, offset=10, limit=50)
  1. Extract Common Themes
Analyze content for recurring:
- Keywords and phrases
- Company/product mentions
- Events or announcements
- Questions or concerns
  1. Calculate Trend Score
For each theme:
- Platform count (how many platforms)
- Total engagement
- Growth velocity
- Sentiment distribution
  1. Identify Breakout Trends
Trends with:
- Presence on 3+ platforms
- Engagement growing >50% daily
- Positive or controversial sentiment
- Coverage by influencers/media

Expected Output:

  • Top 5-10 trending themes
  • Platform-by-platform breakdown
  • Momentum indicators
  • Strategic implications

Workflow 2: Hashtag Performance Tracking

Scenario: Monitor hashtag growth and adoption

Steps:

  1. Search by Hashtag
# Instagram - discover users/content around the hashtag
execute("instagram", "search", "search_users", {"query": "sustainability"})
→ Save cache_key as ig_cache

# Twitter
execute("twitter", "search", "search_tweets", {"query": "#sustainability", "count": 100})
→ Track tweet volume over time
→ Save cache_key as tw_cache

# LinkedIn
execute("linkedin", "post", "search_posts", {"keywords": "sustainability"})
→ Check professional adoption
→ Save cache_key as li_cache
  1. Calculate Velocity with query_cache
# Sort by recency and engagement
query_cache(tw_cache, sort_by="date_desc")
query_cache(ig_cache, sort_by="followers_desc")

Hashtag velocity:
- Posts in last 24h vs. previous 24h
- Engagement rate change
- New accounts using hashtag
- Geographic spread
  1. Analyze Content Evolution
Compare early vs. recent posts:
- Topic shifts
- Audience changes
- Influencer involvement
- Commercial adoption
  1. Export Results
export_data(tw_cache, "csv")
export_data(ig_cache, "json")
→ Share downloadable reports
  1. Predict Peak
Based on growth curve:
- Early stage (accelerating)
- Peak stage (plateauing)
- Decline stage (slowing)

Expected Output:

  • Hashtag performance report
  • Growth trajectory
  • Peak timing estimate
  • Strategic recommendations

Workflow 3: Reddit Trend Mining

Scenario: Find emerging discussions in specific communities

Steps:

  1. Search Target Subreddits
execute("reddit", "posts", "get", {"subreddit": "technology"})
→ Get top posts from last week
→ Save cache_key as reddit_tech_cache
  1. Analyze Post Momentum
# Sort cached posts by engagement
query_cache(reddit_tech_cache, sort_by="upvotes_desc")

# Aggregate engagement metrics
query_cache(reddit_tech_cache, aggregate={"field": "upvotes", "op": "avg"})

For each high-momentum post:
  execute("reddit", "search", "search", {"query": "<post topic>"})
  → Deeper analysis

Calculate:
- Upvotes per hour
- Comment velocity
- Award count
- Controversial score
  1. Extract Discussion Themes
From high-momentum posts:
- What problems are discussed?
- What solutions are proposed?
- What companies/products mentioned?
- What sentiment (positive, negative, concerned)?
  1. Track Cross-Pollination
Check if trending Reddit topics appear on:
- Twitter: execute("twitter", "search", "search_tweets", {"query": "<topic>"})
- LinkedIn: execute("linkedin", "post", "search_posts", {"keywords": "<topic>"})
- YouTube: execute("youtube", "search", "search_videos", {"query": "<topic>"})

Expected Output:

  • Top Reddit trends
  • Community sentiment
  • Mainstream potential
  • Early mover opportunities

MCP Tools Reference (v2)

Twitter/X

  • execute("twitter", "search", "search_tweets", {"query":..., "count": N}) - Find tweets, filter by engagement
  • execute("twitter", "user", "get", {"username":...}) - Check influencer adoption

Reddit

  • execute("reddit", "search", "search", {"query":...,}) - Find discussions
  • execute("reddit", "posts", "get", {"subreddit":...}) - Get subreddit posts and momentum
  • execute("reddit", "user", "get", {"username":...}) - Get user details

YouTube

  • execute("youtube", "search", "search_videos", {"query":..., "count": N}) - Find trending videos
  • execute("youtube", "video", "video", {"video":...}) - Track view velocity
  • execute("youtube", "video", "video_comments", {"video":..., "count": N}) - Gauge interest

LinkedIn

  • execute("linkedin", "post", "search_posts", {"keywords":...}) - Professional trends
  • execute("linkedin", "company", "get", {"company":...}) - Company details

Instagram

  • execute("instagram", "search", "search_users", {"query":...}) - Discover users/hashtags
  • execute("instagram", "post", "post", {"post":...}) - Engagement metrics

Pagination & Analysis

  • get_page(cache_key, offset, limit) - Load additional results from any execute() call
  • query_cache(cache_key, conditions, sort_by, aggregate, group_by) - Filter, sort, aggregate cached data
  • export_data(cache_key, "csv"|"json"|"jsonl") - Export datasets for reporting

Trend Identification Framework

Trend Stages:

  1. Emergence (0-20% awareness)

- Niche communities discussing - Low but accelerating engagement - Early adopters experimenting - Action: Monitor closely, prepare strategy

  1. Growth (20-50% awareness)

- Crossing into mainstream platforms - Rapid engagement growth - Influencer adoption - Action: Create content, engage actively

  1. Peak (50-80% awareness)

- Maximum visibility - Slowing growth rate - Saturation approaching - Action: Maximize presence before decline

  1. Decline (80-100% awareness)

- Engagement decreasing - Moving to "background noise" - New trends emerging - Action: Shift focus to next trend

Momentum Indicators:

  • Volume: Mentions per day
  • Velocity: Growth rate (% change)
  • Reach: Unique accounts discussing
  • Spread: Number of platforms
  • Sentiment: Positive/negative ratio
  • Influence: Key accounts involved

Output Formats

Chat Summary:

  • Top 5 trends with momentum scores
  • Platform breakdown
  • Strategic recommendations

CSV Export (via export_data(cache_key, "csv")):

  • Trend name, platforms, volume
  • Growth rate, sentiment
  • Key influencers mentioning

JSON Export (via export_data(cache_key, "json")):

  • Complete trend data
  • Time-series metrics
  • Cross-platform correlations

Reference Documentation

  • SOCIAL_MONITORING.md - Social listening techniques, monitoring strategies, and trend prediction methods

Ready to discover trends? Ask Claude to help you identify emerging topics, track viral content, or monitor market shifts across social platforms!

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

40.28%
按下载量换算42

Claude

28.64%
按下载量换算30

Cursor

18.91%
按下载量换算20

Gemini CLI

9.58%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills