PluginBench
Skill
Review
Audit score 70

hot-topics

vikiboss/60s-skills

Fetch real-time trending topics and hot searches from major Chinese social media platforms.

What is hot-topics?

This skill retrieves trending topics and hot searches from Weibo, Zhihu, Baidu, Douyin, Toutiao, and Bilibili. Use it when users want to know what's currently trending on Chinese social media, understand popular discussions, or track viral content across platforms.

  • Fetch trending topics from Weibo (Chinese Twitter)
  • Get hot questions and discussions from Zhihu (Chinese Quora)
  • Retrieve search trends from Baidu (China's largest search engine)
  • Access trending videos from Douyin (TikTok China) and Bilibili (Chinese YouTube)
  • Compare trending topics across multiple platforms simultaneously
  • Return structured data with titles, heat scores, URLs, and timestamps

How to install hot-topics

npx skills add https://github.com/vikiboss/60s-skills --skill hot-topics
Claude Code
Cursor
Windsurf
Cline

How to use hot-topics

  1. 1.Call the appropriate API endpoint for your target platform (e.g., GET https://60s.viki.moe/v2/weibo for Weibo trends)
  2. 2.Parse the JSON response containing data array with topic titles, URLs, heat scores, and rank
  3. 3.Extract the top N topics (typically top 5-10) for display or analysis
  4. 4.Optionally cache results for 5-10 minutes to reduce API calls
  5. 5.Handle network errors gracefully and retry if data appears stale

Use cases

Good for
  • Get daily trending summary across multiple Chinese social media platforms
  • Find common topics and keywords trending across Weibo, Zhihu, and Baidu
  • Check if a specific keyword is trending on major platforms
  • Recommend trending content based on user interests
  • Track platform-specific trends for entertainment, news, or lifestyle content
Who it's for
  • Content creators monitoring Chinese social media trends
  • Researchers studying Chinese internet culture and viral topics
  • Marketing professionals tracking trending topics for campaigns
  • News aggregators covering Chinese social media
  • AI agents serving Chinese-speaking users

hot-topics FAQ

Which platforms are supported?

Weibo (微博), Zhihu (知乎), Baidu (百度), Douyin (抖音), Toutiao (今日头条), and Bilibili (B站).

How often is the trending data updated?

Data updates every few minutes on most platforms. Results are cached, so you may see slight delays. Avoid calling APIs too frequently to respect rate limits.

What information is included in each trending topic?

Responses include title, URL, heat score (热度), rank, and update timestamp. The exact fields vary slightly by platform.

Can I compare trends across multiple platforms at once?

Yes, you can call multiple endpoints and aggregate the results to compare trending topics across different platforms.

What should I do if an API returns empty or null data?

The API might be updating. Retry after a few seconds, check your network connectivity, and ensure you're using the correct endpoint URL.

Full instructions (SKILL.md)

Source of truth, from vikiboss/60s-skills.


name: hot-topics description: 获取微博、知乎、百度、抖音、今日头条、B站等主流中文平台的实时热搜榜单和热门话题。Use when users want to know trending topics, hot searches, or popular content on Chinese social media platforms. license: MIT metadata: author: vikiboss version: "1.0" api_base: https://60s.viki.moe/v2 tags: - trending - social-media - hot-search - china

Hot Topics & Trending Content Skill

This skill helps AI agents fetch trending topics and hot searches from major Chinese social media and content platforms.

When to Use This Skill

Use this skill when users:

  • Want to know what's trending on social media
  • Ask about hot topics or viral content
  • Need to understand current popular discussions
  • Want to track trending topics across platforms
  • Research social media trends

Supported Platforms

  1. Weibo (微博) - Chinese Twitter equivalent
  2. Zhihu (知乎) - Chinese Quora equivalent
  3. Baidu (百度) - China's largest search engine
  4. Douyin (抖音) - TikTok China
  5. Toutiao (今日头条) - ByteDance news aggregator
  6. Bilibili (B站) - Chinese YouTube equivalent

API Endpoints

PlatformEndpointDescription
Weibo/v2/weiboWeibo hot search topics
Zhihu/v2/zhihuZhihu trending questions
Baidu/v2/baidu/hotBaidu hot searches
Douyin/v2/douyinDouyin trending videos
Toutiao/v2/toutiaoToutiao hot news
Bilibili/v2/biliBilibili trending videos

All endpoints use GET method and base URL: https://60s.viki.moe/v2

How to Use

Get Weibo Hot Searches

import requests

def get_weibo_hot():
    response = requests.get('https://60s.viki.moe/v2/weibo')
    return response.json()

hot_topics = get_weibo_hot()
print("🔥 微博热搜:")
for i, topic in enumerate(hot_topics['data'][:10], 1):
    print(f"{i}. {topic['title']} - 热度: {topic['热度']}")

Get Zhihu Hot Topics

def get_zhihu_hot():
    response = requests.get('https://60s.viki.moe/v2/zhihu')
    return response.json()

topics = get_zhihu_hot()
print("💡 知乎热榜:")
for topic in topics['data'][:10]:
    print(f"· {topic['title']}")

Get Multiple Platform Trends

def get_all_hot_topics():
    platforms = {
        'weibo': 'https://60s.viki.moe/v2/weibo',
        'zhihu': 'https://60s.viki.moe/v2/zhihu',
        'baidu': 'https://60s.viki.moe/v2/baidu/hot',
        'douyin': 'https://60s.viki.moe/v2/douyin',
        'bili': 'https://60s.viki.moe/v2/bili'
    }
    
    results = {}
    for name, url in platforms.items():
        try:
            response = requests.get(url)
            results[name] = response.json()
        except:
            results[name] = None
    
    return results

# Usage
all_topics = get_all_hot_topics()

Simple bash examples

# Weibo hot search
curl "https://60s.viki.moe/v2/weibo"

# Zhihu trending
curl "https://60s.viki.moe/v2/zhihu"

# Baidu hot search
curl "https://60s.viki.moe/v2/baidu/hot"

# Douyin trending
curl "https://60s.viki.moe/v2/douyin"

# Bilibili trending
curl "https://60s.viki.moe/v2/bili"

Response Format

Responses typically include:

{
  "data": [
    {
      "title": "话题标题",
      "url": "https://...",
      "热度": "1234567",
      "rank": 1
    },
    ...
  ],
  "update_time": "2024-01-15 14:00:00"
}

Example Interactions

User: "现在微博上什么最火?"

hot = get_weibo_hot()
top_5 = hot['data'][:5]

response = "🔥 微博热搜 TOP 5:\n\n"
for i, topic in enumerate(top_5, 1):
    response += f"{i}. {topic['title']}\n"
    response += f"   热度:{topic.get('热度', 'N/A')}\n\n"

User: "知乎上大家在讨论什么?"

zhihu = get_zhihu_hot()
response = "💡 知乎当前热门话题:\n\n"
for topic in zhihu['data'][:8]:
    response += f"· {topic['title']}\n"

User: "对比各平台热点"

def compare_platform_trends():
    all_topics = get_all_hot_topics()
    
    summary = "📊 各平台热点概览\n\n"
    
    platforms = {
        'weibo': '微博',
        'zhihu': '知乎',
        'baidu': '百度',
        'douyin': '抖音',
        'bili': 'B站'
    }
    
    for key, name in platforms.items():
        if all_topics.get(key):
            top_topic = all_topics[key]['data'][0]
            summary += f"{name}:{top_topic['title']}\n"
    
    return summary

Best Practices

  1. Rate Limiting: Don't call APIs too frequently, data updates every few minutes
  2. Error Handling: Always handle network errors and invalid responses
  3. Caching: Cache results for 5-10 minutes to reduce API calls
  4. Top N: Usually showing top 5-10 items is sufficient
  5. Context: Provide platform context when showing trending topics

Common Use Cases

1. Daily Trending Summary

def get_daily_trending_summary():
    weibo = get_weibo_hot()
    zhihu = get_zhihu_hot()
    
    summary = "📱 今日热点速览\n\n"
    summary += "【微博热搜】\n"
    summary += "\n".join([f"{i}. {t['title']}" 
                          for i, t in enumerate(weibo['data'][:3], 1)])
    summary += "\n\n【知乎热榜】\n"
    summary += "\n".join([f"{i}. {t['title']}" 
                          for i, t in enumerate(zhihu['data'][:3], 1)])
    
    return summary

2. Find Common Topics Across Platforms

def find_common_topics():
    all_topics = get_all_hot_topics()
    
    # Extract titles from all platforms
    all_titles = []
    for platform_data in all_topics.values():
        if platform_data and 'data' in platform_data:
            all_titles.extend([t['title'] for t in platform_data['data']])
    
    # Simple keyword matching (can be improved)
    from collections import Counter
    keywords = []
    for title in all_titles:
        keywords.extend(title.split())
    
    common = Counter(keywords).most_common(10)
    return f"🔍 热门关键词:{', '.join([k for k, _ in common])}"

3. Platform-specific Trending Alert

def check_trending_topic(keyword):
    platforms = ['weibo', 'zhihu', 'baidu']
    found_in = []
    
    for platform in platforms:
        url = f'https://60s.viki.moe/v2/{platform}' if platform != 'baidu' else 'https://60s.viki.moe/v2/baidu/hot'
        data = requests.get(url).json()
        
        for topic in data['data']:
            if keyword.lower() in topic['title'].lower():
                found_in.append(platform)
                break
    
    if found_in:
        return f"✅ 话题 '{keyword}' 正在以下平台trending: {', '.join(found_in)}"
    return f"❌ 话题 '{keyword}' 未在主流平台trending"

4. Trending Content Recommendation

def recommend_content_by_interest(interest):
    """Recommend trending content based on user interest"""
    all_topics = get_all_hot_topics()
    
    recommendations = []
    for platform, data in all_topics.items():
        if data and 'data' in data:
            for topic in data['data']:
                if interest.lower() in topic['title'].lower():
                    recommendations.append({
                        'platform': platform,
                        'title': topic['title'],
                        'url': topic.get('url', '')
                    })
    
    return recommendations

Platform-Specific Notes

Weibo (微博)

  • Updates frequently (every few minutes)
  • Includes "热度" (heat score)
  • Some topics may have tags like "热" or "新"

Zhihu (知乎)

  • Focuses on questions and discussions
  • Usually more in-depth topics
  • Great for understanding what people are curious about

Baidu (百度)

  • Reflects search trends
  • Good indicator of mainstream interest
  • Includes various categories

Douyin (抖音)

  • Video-focused trending
  • Entertainment and lifestyle content
  • Young audience interests

Bilibili (B站)

  • Video platform trends
  • ACG (Anime, Comic, Games) culture
  • Creative content focus

Troubleshooting

Issue: Empty or null data

  • Solution: API might be updating, retry after a few seconds
  • Check network connectivity

Issue: Old timestamps

  • Solution: Data is cached, this is normal
  • Most platforms update every 5-15 minutes

Issue: Missing platform

  • Solution: Ensure correct endpoint URL
  • Check API documentation for changes

Related Resources

Related skills

More from vikiboss/60s-skills and the wider catalog.

WEweather-query logo

weather-query

vikiboss/60s-skills

查询中国各地实时天气和天气预报,包括温度、湿度、风速、空气质量等信息。Use when users ask about weather conditions, forecasts, or climate information for locations in China.

755 installsAudited
GIgitlab-cli-skills logo

gitlab-cli-skills

vince-winkintel/gitlab-cli-skills

Comprehensive GitLab CLI (glab) command reference and workflows for all GitLab operations via terminal. Use when user mentions GitLab CLI, glab commands, GitLab automation, MR/issue management via CLI, CI/CD pipeline commands, repo operations, authentication setup, or any GitLab terminal operations. Routes to specialized sub-skills for auth, CI, MRs, issues, releases, repos, and 30+ other glab commands. Triggers on glab, GitLab CLI, GitLab commands, GitLab terminal, GitLab automation.

1.2k installs
DJdjango-celery-expert logo

django-celery-expert

vintasoftware/django-ai-plugins

Expert Django Celery guidance for asynchronous task processing. Use when designing background tasks, configuring Celery workers, handling task retries and errors, optimizing Celery performance, implementing periodic tasks with Celery Beat, or setting up production monitoring for Celery. Do not use for general Django questions unrelated to Celery, non-Celery task systems (Django Q, Huey, RQ), ML/data pipeline orchestration (Airflow, Prefect), or frontend and API-only concerns. Follows Vinta's Django Celery best practices.

700 installs
DJdjango-expert logo

django-expert

vintasoftware/django-ai-plugins

Expert guidance for Django models, views, APIs, testing, and production deployment following best practices.

4.3k installs
DEdesign-an-interface logo

design-an-interface

vinvcn/mattpocock-skills-zh-cn

使用 parallel sub-agents 为 module 生成多个 radically different interface designs。Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".

737 installsAudited
DIdiagnose logo

diagnose

vinvcn/mattpocock-skills-zh-cn

Disciplined debugging loop: reproduce → minimize → hypothesize → instrument → fix → regression-test for tricky bugs and performance regressions.

1.5k installsAudited