← Back to Skills Marketplace
llnancy

Hotboard

by fuyaotingyu · GitHub ↗ · v0.0.1 · MIT-0
cross-platform ✓ Security Clean
142
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install hotboard
Description
OpenClaw skill for fetching hot trending data from multiple platforms
README (SKILL.md)

Hotboard

OpenClaw skill for fetching hot trending data from multiple platforms.

你是 Hotboard 助手。当用户询问热榜、热搜、趋势相关内容时,你需要:

  1. 识别用户兴趣领域
  2. 推荐 2-3 个最相关的平台
  3. 使用 hotboard \x3Cplatform> 获取数据

何时激活此 skill

  • 用户询问"热榜"、"热搜"、"趋势"、"热点"
  • 用户询问特定平台的热门内容
  • 用户说"推荐一些热榜平台"

使用方式

# 列出所有支持的平台
hotboard list

# 获取指定平台热榜
hotboard \x3Cplatform>

# JSON 格式输出(所有平台都支持)
hotboard \x3Cplatform> --format json

# 查看平台支持的参数
hotboard \x3Cplatform> --help

所有平台都支持 --format 参数(markdown/json)。部分平台还有额外的特定参数,例如:

  • github: --type (daily/weekly/monthly)
  • baidu: --search-type (realtime/novel/movie/teleplay/car/game)
  • bilibili: --category (全站/动画/音乐/游戏等)
  • douban: --list-type (group/movie)
  • earthquake: --days, --location-range

使用 hotboard \x3Cplatform> --help 查看该平台的完整参数列表。

平台分类参考

使用 hotboard list 查看所有支持的平台。常见领域包括:

  • 📰 综合资讯:baidu, weibo, zhihu 等
  • 💻 科技媒体:ithome, kr36, sspai 等
  • 👨‍💻 开发者社区:github, juejin, v2ex 等
  • 🎬 视频娱乐:bilibili, douyin, kuaishou 等
  • 🎮 游戏社区:ngabbs, miyoushe, gameres 等
  • ⚽ 体育社区:hupu 等
  • 📚 社交阅读:douban, weread, jianshu 等
  • 🌍 国际平台:nytimes, hackernews 等
  • 🔔 实用工具:earthquake, weatheralarm, todayinhistory 等

推荐策略

场景 1:用户询问笼统("看看热榜")

步骤:

  1. 询问:"您更关注哪个领域?科技、娱乐、技术、游戏还是综合资讯?"
  2. 根据回答从对应分类中推荐 2-3 个平台
  3. 使用 hotboard \x3Cplatform> 获取数据

场景 2:用户明确平台("GitHub 热榜")

步骤:

  1. 直接调用 hotboard github
  2. 展示结果

场景 3:用户询问推荐("程序员适合看什么")

步骤:

  1. 根据用户身份匹配领域(程序员 → 开发者社区)
  2. 从该分类中推荐 2-3 个平台
  3. 询问:"需要我为您获取哪个平台的热榜?"

响应模板

推荐回复

根据您的需求,推荐以下平台:

• [平台名](hotboard [platform])
• [平台名](hotboard [platform])
• [平台名](hotboard [platform])

需要我为您获取哪个平台的热榜?

注意事项

  1. 推荐 2-3 个平台,避免选择过多让用户困惑
  2. 根据用户明确需求直接获取,不要反复确认
  3. 简洁回复,不要输出完整平台列表
  4. 记住用户偏好,下次直接推荐相同领域

示例

用户:"看看 GitHub 上有什么热门项目" 助手:hotboard github

用户:"推荐一些适合程序员的热榜平台" 助手:"推荐以下平台:

  • GitHub(hotboard github)
  • 掘金(hotboard juejin)
  • V2EX(hotboard v2ex)

需要我为您获取哪个平台的热榜?"

Usage Guidance
This skill appears coherent: it simply asks for a 'hotboard' CLI and tells the agent to run it to fetch trending lists. Before installing, verify the 'hotboard' package is trustworthy: check the PyPI project page, inspect its source repository, and confirm which network endpoints it calls (to ensure it doesn't exfiltrate data). Ask the skill author to provide a clean SKILL.md without hidden control characters and to clarify how "remember user preferences" is stored (agent memory vs. local file). If you proceed, pin a specific package version and prefer reviewing the package source code or checksum first.
Capability Assessment
Purpose & Capability
Name/description (fetch trending data) match the declared runtime requirement: a 'hotboard' binary. The install spec (PyPI package 'hotboard' producing a 'hotboard' binary) is consistent with the skill's purpose and there are no unrelated environment variables or config paths requested.
Instruction Scope
SKILL.md instructs the agent to recommend platforms and call only the 'hotboard' CLI (e.g., 'hotboard <platform>'). It does not request reading files or unrelated environment variables. Two minor notes: (1) the doc instructs the agent to 'remember user preferences' (persistence implied but not specified), and (2) a pre-scan detected 'unicode-control-chars' in the SKILL.md which can be used to obscure or tamper with displayed instructions — this warrants manual inspection of the raw SKILL.md.
Install Mechanism
Install uses a PyPI package ('uv' kind -> package 'hotboard') that creates a 'hotboard' binary. Installing from PyPI is a common and traceable mechanism but carries the usual moderate risk of third-party packages (supply-chain, malicious or compromised package). No direct downloads from arbitrary URLs were found.
Credentials
The skill requests no environment variables, no credentials, and no config paths. That is proportionate for a CLI-only trending-data retriever.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system-wide settings. The only potential persistence is the doc's suggestion to 'remember user preferences' — this is an instruction-level preference and not an explicit request for elevated privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hotboard
  3. After installation, invoke the skill by name or use /hotboard
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.0.1
Initial release of hotboard skill—fetch hot trending data from multiple platforms. - Provides commands to list and fetch trending topics from various domains (news, tech, dev, entertainment, etc.) - Includes usage guidelines, recommended user interaction flows, and response templates - Supports platform-specific parameters and output formats (markdown/json) - Offers user-centric recommendations by interest area - Ensures concise replies and remembers user preferences
Metadata
Slug hotboard
Version 0.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Hotboard?

OpenClaw skill for fetching hot trending data from multiple platforms. It is an AI Agent Skill for Claude Code / OpenClaw, with 142 downloads so far.

How do I install Hotboard?

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

Is Hotboard free?

Yes, Hotboard is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hotboard support?

Hotboard is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hotboard?

It is built and maintained by fuyaotingyu (@llnancy); the current version is v0.0.1.

💬 Comments