← 返回 Skills 市场
neverchenx

Hot Topics

作者 Never · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
415
总下载
0
收藏
9
当前安装
1
版本数
在 OpenClaw 中安装
/install hot-topics
功能描述
Get real-time trending topics and hot searches from major Chinese social media platforms including Weibo, Zhihu, Baidu, Douyin, Toutiao, and Bilibili. Use wh...
使用说明 (SKILL.md)

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 - Chinese YouTube equivalent

API Endpoints

Platform Endpoint Description
Weibo /v2/weibo Weibo hot search topics
Zhihu /v2/zhihu Zhihu trending questions
Baidu /v2/baidu/hot Baidu hot searches
Douyin /v2/douyin Douyin trending videos
Toutiao /v2/toutiao Toutiao hot news
Bilibili /v2/bili Bilibili 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("Weibo Hot Search:")
for i, topic in enumerate(hot_topics['data'][:10], 1):
    print(f"{i}. {topic['title']} - Heat: {topic.get('hot', 'N/A')}")

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("Zhihu Trending:")
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": "Topic title",
      "url": "https://...",
      "hot": "1234567",
      "rank": 1
    },
    ...
  ],
  "update_time": "2024-01-15 14:00:00"
}

Example Interactions

User: "What's hot on Weibo right now?"

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

response = "Weibo Hot Search TOP 5:\
\
"
for i, topic in enumerate(top_5, 1):
    response += f"{i}. {topic['title']}\
"
    response += f"   Heat: {topic.get('hot', 'N/A')}\
\
"

User: "What are people discussing on Zhihu?"

zhihu = get_zhihu_hot()
response = "Zhihu Current Hot Topics:\
\
"
for topic in zhihu['data'][:8]:
    response += f"- {topic['title']}\
"

User: "Compare trends across platforms"

def compare_platform_trends():
    all_topics = get_all_hot_topics()

    summary = "Platform Trends Overview\
\
"

    platforms = {
        'weibo': 'Weibo',
        'zhihu': 'Zhihu',
        'baidu': 'Baidu',
        'douyin': 'Douyin',
        'bili': 'Bilibili'
    }

    for key, name in platforms.items():
        if all_topics.get(key):
            top_topic = all_topics[key]['data'][0]
            summary += f"{name}: {top_topic['title']}\
"

    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 = "Today's Hot Topics\
\
"
    summary += "[Weibo Hot Search]\
"
    summary += "\
".join([f"{i}. {t['title']}"
                          for i, t in enumerate(weibo['data'][:3], 1)])
    summary += "\
\
[Zhihu Trending]\
"
    summary += "\
".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"Hot Keywords: {', '.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"Topic '{keyword}' is trending on: {', '.join(found_in)}"
    return f"Topic '{keyword}' is not trending on major platforms"

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 "hot" or "new"

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

  • 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

Changelog

Version Date Changes
v1.1.0 2025-03-15 Translated to English
v1.0.0 2024-01-15 Initial release

Related Resources

安全使用建议
Before installing, consider that this skill funnels all API calls through an unknown third‑party host (https://60s.viki.moe). That host could log requests, collect IP addresses, or capture any query parameters and results. If you need to protect user data or avoid leaking search queries, prefer skills that use official platform APIs or whose source/homepage you can verify. Ask the publisher for provenance (source repo, maintainer contact, privacy policy, and uptime/availability guarantees). If you proceed, limit agent autonomy (avoid allowing unattended/autonomous invocation), test the skill in a sandboxed environment, monitor outbound network requests, and avoid sending sensitive or personally identifying information through it. If the owner provides an official source or a trustworthy aggregator instead of the current unknown domain, re-evaluation could raise confidence to benign.
功能分析
Type: OpenClaw Skill Name: hot-topics Version: 1.1.0 The skill provides legitimate functionality for fetching trending topics from Chinese social media platforms (Weibo, Zhihu, etc.) via the public API at https://60s.viki.moe/v2. The provided Python and Bash examples in SKILL.md are standard HTTP GET requests aligned with the stated purpose, and the bundle contains no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
The name/description (fetch trending topics from Chinese platforms) matches the instructions (GET requests to platform-specific endpoints). Using an aggregator API is a plausible implementation choice, but the aggregator domain (60s.viki.moe) is not a known official provider and there is no homepage or source repository to verify intent.
Instruction Scope
SKILL.md instructs only simple GET requests to the listed endpoints and provides usage examples (Python requests, curl). The instructions do not read local files, require credentials, or request unrelated env vars. However every call is made to the single third‑party base URL, meaning user queries, request metadata, or derived results could be logged by that external host.
Install Mechanism
No install spec and no code files — this is instruction-only. Nothing is written to disk by an installer, which lowers the attack surface.
Credentials
The skill declares no required environment variables, credentials, or config paths. Requested privileges are minimal and proportionate to the stated purpose.
Persistence & Privilege
always is false and the skill does not request persistent presence or system modifications. It can be invoked by the agent, which is standard for skills; there is no elevated persistence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hot-topics
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hot-topics 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Translated to English
元数据
Slug hot-topics
版本 1.1.0
许可证 MIT-0
累计安装 9
当前安装数 9
历史版本数 1
常见问题

Hot Topics 是什么?

Get real-time trending topics and hot searches from major Chinese social media platforms including Weibo, Zhihu, Baidu, Douyin, Toutiao, and Bilibili. Use wh... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 415 次。

如何安装 Hot Topics?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hot-topics」即可一键安装,无需额外配置。

Hot Topics 是免费的吗?

是的,Hot Topics 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Hot Topics 支持哪些平台?

Hot Topics 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hot Topics?

由 Never(@neverchenx)开发并维护,当前版本 v1.1.0。

💬 留言讨论