← Back to Skills Marketplace
onlyloveher

热点聚合监控

by onlyloveher · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
174
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install hotspot-aggregator-clawd
Description
🔥 热点聚合监控 - 一站式聚合微博/百度/知乎/抖音热搜榜,自动生成每日热点报告,支持关键词订阅推送。适用于自媒体运营、内容创作、市场分析等场景。
README (SKILL.md)

🔥 热点聚合监控

一站式聚合全网热搜,让热点触手可及

聚合微博、百度、知乎、抖音四大平台热搜数据,自动生成热点报告,支持关键词订阅。


✨ 核心功能

功能 描述
📊 多平台聚合 微博热搜、百度热搜、知乎热榜、抖音热搜
📝 每日报告 自动生成结构化热点分析报告
🔔 关键词订阅 订阅感兴趣的关键词,匹配即推送
📈 趋势分析 分析热点分布、变化趋势

🚀 快速开始

安装

clawhub install hotspot-aggregator

获取热点数据

# 获取所有平台热搜
cd skills/hotspot-aggregator
./scripts/fetch-hotspots.sh all

# 获取单个平台
./scripts/fetch-hotspots.sh weibo    # 微博
./scripts/fetch-hotspots.sh baidu    # 百度
./scripts/fetch-hotspots.sh zhihu    # 知乎
./scripts/fetch-hotspots.sh douyin   # 抖音

生成热点报告

# 生成今日报告
./scripts/generate-report.sh

# 报告位置: /root/clawd/memory/hotspots/YYYY-MM-DD.md

关键词订阅

# 添加订阅
./scripts/subscribe.sh add "AI"
./scripts/subscribe.sh add "科技"

# 查看订阅列表
./scripts/subscribe.sh list

# 删除订阅
./scripts/subscribe.sh remove "AI"

# 检测关键词匹配
./scripts/check-keywords.sh

📋 输出示例

热点报告格式

# 🔥 今日热点报告 - 2026-03-20

## 📱 微博热搜 TOP10

1. 两会热点议题 🔥 123万热度
2. AI技术新突破引发热议 💬 98万热度
...

## 🔍 百度热搜 TOP10

1. 最新科技动态 🔥 搜索量: 89万
2. 国际新闻头条 💬 搜索量: 78万
...

## 📊 热点分析

- 🔬 科技类: 35%
- 🎬 娱乐类: 28%
- 📰 社会类: 22%
- 💼 财经类: 10%
- 🎨 其他: 5%

## 🎯 订阅关键词匹配

您订阅的关键词 [AI] 匹配到:
- AI技术新突破 (微博 #2)
- 最新科技动态 (百度 #1)

⚙️ 配置

配置文件 config.json

{
  "platforms": ["weibo", "baidu", "zhihu", "douyin"],
  "reportTime": "08:00",
  "keywords": ["AI", "科技"],
  "notifyChannel": ""
}

启用真实API

默认使用演示数据。要启用真实API:

# 设置环境变量
export USE_REAL_API=true
export PROXY="http://your-proxy:port"  # 可选,如需代理

./scripts/fetch-hotspots.sh all

🔄 定时任务

配合 cron 实现每日自动推送:

# 每天早上8点推送
0 8 * * * cd /root/clawd/skills/hotspot-aggregator && ./scripts/generate-report.sh

📖 使用场景

场景 用法
自媒体运营 每日获取热点,选题参考
内容创作 订阅领域关键词,获取灵感
市场分析 追踪行业热点趋势
舆情监控 订阅品牌关键词,及时发现舆情

⚠️ 注意事项

  1. API限制: 真实API可能有访问频率限制
  2. 代理需求: 部分平台需要代理访问
  3. 演示模式: 默认使用模拟数据演示功能
  4. 更新频率: 建议每小时最多请求一次

🔧 高级用法

自定义数据源

编辑 scripts/fetch-hotspots.sh 添加新平台:

# 添加新平台
fetch_custom() {
    local url="https://your-api-endpoint"
    local output="$DATA_DIR/custom_${DATE}_${TIME}.json"
    # ... 处理逻辑
}

报告自定义

编辑 assets/report-template.md 自定义报告格式。


📊 数据源

平台 API 说明
微博 weibo.com/ajax/side/hotSearch 需登录/代理
百度 top.baidu.com/api/board 公开API
知乎 zhihu.com/api/v3/feed/topstory 需代理
抖音 api.oioweb.cn (聚合) 第三方API

让热点触手可及 🔥

Usage Guidance
This skill appears to implement its advertised features, but there are clear inconsistencies you should resolve before installing: (1) package.json expects curl and jq, and the runtime uses optional env vars USE_REAL_API and PROXY — these are not declared in the registry metadata; ensure your environment provides curl/jq and understand the effect of setting USE_REAL_API=true. (2) Scripts write/read data under /root/clawd/memory/hotspots (and create/edit config.json relative to the skill) — change DATA_DIR to a non-root path or run in a contained environment to avoid unintended writes. (3) The skill calls external endpoints (weibo/zhihu/baidu and third-party api.oioweb.cn). If you enable real API mode, network requests will go to those servers; review the endpoints and your network/ privacy policy. (4) Rate limits and proxy needs are mentioned — configure a proxy or respect API limits. Recommended actions: run the skill in a sandbox or non-privileged account, inspect and if needed modify DATA_DIR and config paths, verify/whitelist external endpoints, and ensure required binaries (curl, jq) are installed. If you need higher assurance, ask the author to update the manifest to declare required binaries, env vars, and the data path.
Capability Analysis
Type: OpenClaw Skill Name: hotspot-aggregator-clawd Version: 1.0.0 This skill bundle is a functional tool designed to aggregate social media trends from platforms like Weibo, Baidu, Zhihu, and Douyin. It uses standard Bash scripts (fetch-hotspots.sh, generate-report.sh) and utilities like curl and jq to collect data, manage keyword subscriptions, and generate Markdown reports. The code is transparent, follows its stated purpose, and contains no evidence of malicious intent, data exfiltration, or prompt injection.
Capability Assessment
Purpose & Capability
Name/description match the code: scripts fetch platform hot-search data, generate a markdown report, and manage keyword subscriptions. However, package.json lists required bins (curl, jq) while registry metadata claimed none; scripts also write/read under /root/clawd/memory which is not declared. These mismatches are disproportionate to the stated purpose (should not assume root paths or omit required binaries).
Instruction Scope
SKILL.md and the scripts instruct the agent to call external URLs (weibo, baidu, zhihu, and a third-party aggregator api.oioweb.cn), create and read files under /root/clawd/memory/hotspots, and use environment variables USE_REAL_API and PROXY although the skill declared no required env vars. The scripts will fetch remote data and write persistent files outside the skill directory — these behaviors are within the skill's stated purpose but the undocumented path and env usage are scope-creep that should be clarified.
Install Mechanism
No install spec (instruction-only with shipped scripts). No downloads from external URLs during install; code is bundled with the skill. This is low install-risk.
Credentials
The skill declares no required env vars or credentials but runtime uses optional envs USE_REAL_API and PROXY and package.json implies dependency on curl and jq. It also calls external third-party API endpoints (api.oioweb.cn). No secrets are requested, but the undeclared env/binary expectations and external endpoints are disproportionate to the manifest and should be documented.
Persistence & Privilege
Skill writes persistent data to /root/clawd/memory/hotspots and creates/edits config.json next to the scripts. Hard-coding a /root path is a privilege/assumption mismatch (may require root or a specific runtime layout). always:false (no forced global presence) so autonomous invocation is normal, but the skill's use of system/root paths increases its blast radius and should be addressed.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hotspot-aggregator-clawd
  3. After installation, invoke the skill by name or use /hotspot-aggregator-clawd
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
一站式聚合微博/百度/知乎/抖音热搜榜
Metadata
Slug hotspot-aggregator-clawd
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 热点聚合监控?

🔥 热点聚合监控 - 一站式聚合微博/百度/知乎/抖音热搜榜,自动生成每日热点报告,支持关键词订阅推送。适用于自媒体运营、内容创作、市场分析等场景。 It is an AI Agent Skill for Claude Code / OpenClaw, with 174 downloads so far.

How do I install 热点聚合监控?

Run "/install hotspot-aggregator-clawd" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 热点聚合监控 free?

Yes, 热点聚合监控 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 热点聚合监控 support?

热点聚合监控 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 热点聚合监控?

It is built and maintained by onlyloveher (@onlyloveher); the current version is v1.0.0.

💬 Comments