/trends-bulletin
多平台热词速报,采集 HuggingFace、GitHub、Hacker News、Product Hunt、Reddit、YouTube 6 个平台的热门趋势并推送到 Telegram。当用户提到热词速报、趋势推送、多平台趋势、trends bulletin 时使用此 skill。
$ npx -y skills add iamzhihuix/happy-claude-skills --skill trends-bulletin --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/trends-bulletin
Context preview
The summary Claude sees to decide when to auto-load this skill.
多平台热词速报,采集 HuggingFace、GitHub、Hacker News、Product Hunt、Reddit、YouTube 6 个平台的热门趋势并推送到 Telegram。当用户提到热词速报、趋势推送、多平台趋势、trends bulletin 时使用此 skill。
SKILL.md
trends-bulletin.SKILL.mdname: trends-bulletin
description: 多平台热词速报,采集 HuggingFace、GitHub、Hacker News、Product Hunt、Reddit、YouTube 6 个平台的热门趋势并推送到 Telegram。当用户提到热词速报、趋势推送、多平台趋势、trends bulletin 时使用此 skill。
metadata:
author: iamzhihuix
version: "1.0.0"
多平台热词速报
一键采集 6 个平台热门趋势,格式化后推送到 Telegram。
依赖
使用 Bun 运行时内置 fetch,无需安装额外依赖。
环境变量
必须配置以下环境变量(或在 `.env` 文件中设置):
| 变量 | 必须 | 说明 | |------|------|------| | `TELEGRAM_BOT_TOKEN` | 是 | Telegram Bot Token | | `TELEGRAM_CHAT_ID` | 是 | Telegram 目标 Chat ID | | `GROK_API_KEY` | 否 | xAI Grok API Key(为空则跳过 AI 趋势分析) | | `PRODUCT_HUNT_TOKEN` | 否 | Product Hunt API Token(为空则跳过 PH) | | `YOUTUBE_API_KEY` | 否 | YouTube Data API Key(为空则跳过 YouTube) |
执行
**Agent Execution Instructions**: 1. Determine this SKILL.md file's directory path as `{baseDir}` 2. Script path = `{baseDir}/scripts/main.ts` 3. Replace all `{baseDir}` in this document with the actual path 4. Resolve `${BUN_X}` runtime: if `bun` installed → `bun`; if `npx` available → `npx -y bun`; else suggest installing bun
${BUN_X} run {baseDir}/scripts/main.ts指定 `.env` 文件路径:
${BUN_X} --env-file=/path/to/.env run {baseDir}/scripts/main.tsDry-run 模式(只打印不发送):
${BUN_X} run {baseDir}/scripts/main.ts --dry-run输出格式
按平台分组推送到 Telegram,顶部附带 AI 分析的三大关键趋势(需配置 GROK_API_KEY):
🔥 热词速报
━━━ 🎯 三大关键趋势 ━━━
1️⃣ AI代理兴起
💡 核心观点:AI代理技术正推动自动化任务执行
📊 关键数据:GitHub BitNet 今日+2149⭐
❗ 为什么重要:降低部署成本,促进广泛应用
🔗 https://github.com/microsoft/BitNet
━━━ HuggingFace Spaces ━━━
1. microsoft/TRELLIS.2 (🔥315)
2. Qwen/Qwen-Image-Layered (🔥264)
━━━ 每日论文 ━━━
1. SWE-EVO: Benchmarking... (👍3)
━━━ Hacker News ━━━
1. Python 3.15's interpreter... (🔥102 | 💬23)
━━━ Product Hunt ━━━
1. DiffSense (🔺211)
━━━ Reddit 热帖 ━━━
1. [r/singularity] GPT-5.2 Pro... (🔺346 | 💬83)
━━━ GitHub Trending ━━━
1. rendercv/rendercv ⭐+1,797 Python
自定义
脚本支持通过环境变量自定义:
- `REDDIT_SUBS` - Reddit 子版列表,逗号分隔(默认:`MachineLearning,LocalLLaMA,artificial,ChatGPT,singularity`)
- `ITEMS_PER_PLATFORM` - 每个平台展示条数(默认:`5`)
示例
用户请求:
帮我发一下热词速报
执行流程: 1. 检查环境变量是否配置(TELEGRAM_BOT_TOKEN、TELEGRAM_CHAT_ID) 2. 执行 `${BUN_X} run {baseDir}/scripts/main.ts` 3. 确认 Telegram 发送结果
Read more
name: trends-bulletin description: 多平台热词速报,采集 HuggingFace、GitHub、Hacker News、Product Hunt、Reddit、YouTube 6 个平台的热门趋势并推送到 Telegram。当用户提到热词速报、趋势推送、多平台趋势、trends bulletin 时使用此 skill。 metadata: author: iamzhihuix version: "1.0.0"
多平台热词速报
一键采集 6 个平台热门趋势,格式化后推送到 Telegram。
依赖
使用 Bun 运行时内置 fetch,无需安装额外依赖。
环境变量
必须配置以下环境变量(或在 `.env` 文件中设置):
| 变量 | 必须 | 说明 | |------|------|------| | `TELEGRAM_BOT_TOKEN` | 是 | Telegram Bot Token | | `TELEGRAM_CHAT_ID` | 是 | Telegram 目标 Chat ID | | `GROK_API_KEY` | 否 | xAI Grok API Key(为空则跳过 AI 趋势分析) | | `PRODUCT_HUNT_TOKEN` | 否 | Product Hunt API Token(为空则跳过 PH) | | `YOUTUBE_API_KEY` | 否 | YouTube Data API Key(为空则跳过 YouTube) |
执行
**Agent Execution Instructions**: 1. Determine this SKILL.md file's directory path as `{baseDir}` 2. Script path = `{baseDir}/scripts/main.ts` 3. Replace all `{baseDir}` in this document with the actual path 4. Resolve `${BUN_X}` runtime: if `bun` installed → `bun`; if `npx` available → `npx -y bun`; else suggest installing bun
${BUN_X} run {baseDir}/scripts/main.ts指定 `.env` 文件路径:
${BUN_X} --env-file=/path/to/.env run {baseDir}/scripts/main.tsDry-run 模式(只打印不发送):
${BUN_X} run {baseDir}/scripts/main.ts --dry-run输出格式
按平台分组推送到 Telegram,顶部附带 AI 分析的三大关键趋势(需配置 GROK_API_KEY):
🔥 热词速报 ━━━ 🎯 三大关键趋势 ━━━ 1️⃣ AI代理兴起 💡 核心观点:AI代理技术正推动自动化任务执行 📊 关键数据:GitHub BitNet 今日+2149⭐ ❗ 为什么重要:降低部署成本,促进广泛应用 🔗 https://github.com/microsoft/BitNet ━━━ HuggingFace Spaces ━━━ 1. microsoft/TRELLIS.2 (🔥315) 2. Qwen/Qwen-Image-Layered (🔥264) ━━━ 每日论文 ━━━ 1. SWE-EVO: Benchmarking... (👍3) ━━━ Hacker News ━━━ 1. Python 3.15's interpreter... (🔥102 | 💬23) ━━━ Product Hunt ━━━ 1. DiffSense (🔺211) ━━━ Reddit 热帖 ━━━ 1. [r/singularity] GPT-5.2 Pro... (🔺346 | 💬83) ━━━ GitHub Trending ━━━ 1. rendercv/rendercv ⭐+1,797 Python
自定义
脚本支持通过环境变量自定义:
- `REDDIT_SUBS` - Reddit 子版列表,逗号分隔(默认:`MachineLearning,LocalLLaMA,artificial,ChatGPT,singularity`)
- `ITEMS_PER_PLATFORM` - 每个平台展示条数(默认:`5`)
示例
用户请求:
帮我发一下热词速报
执行流程: 1. 检查环境变量是否配置(TELEGRAM_BOT_TOKEN、TELEGRAM_CHAT_ID) 2. 执行 `${BUN_X} run {baseDir}/scripts/main.ts` 3. 确认 Telegram 发送结果
A collection of practical skill plugins for AI coding agents. Works with Claude Code, Codex, Factory Droid, OpenClaw, Cursor, and 40+ agents.
Repo: iamzhihuix/happy-claude-skills
Other skills on happy-claude-skills.
- /1password
使用 1Password CLI (op) 管理密码和 API credentials。保存、查询、读取 API key/token,注入环境变量到脚本。当用户提到保存密码、保存 API key、查询密码、1password、op CLI、secret 管理时使用此 skill。
Open skill - /browser
Minimal Chrome DevTools Protocol tools for browser automation and scraping. Use when you need to start Chrome, navigate pages, execute JavaScript, take screenshots, or interactively pick DOM elements. Triggers include "browse website", "scrape page", "take screenshot", "automate
Open skill - /docx-format-replicator
Extract formatting from existing Word documents and generate new documents with the same format but different content. Use this skill when users need to create multiple documents with consistent formatting, replicate document templates, or maintain corporate document standards
Open skill - /happy-app-audit
Audit a local macOS app's telemetry / reporting behavior using static analysis only. Reverse-engineers an .app bundle to identify embedded SDKs (AppLog/TEA, Parfait, TTNet, mars, MMKV, Sentry, Firebase, Bugly, Umeng, etc.), mapped upload endpoints, local on-disk queues, and
Open skill - /happy-audio-gen
Universal AI voice / text-to-speech skill supporting OpenAI TTS (gpt-4o-mini-tts, tts-1), ElevenLabs multilingual TTS with voice cloning, Bailian Qwen TTS (qwen-tts / qwen3-tts-vd with voice-design custom voices, long-text chunking built in), MiniMax speech-02-hd, SiliconFlow
Open skill - /happy-dreamina
ByteDance Jimeng (Dreamina) image and video generation via the official `dreamina` CLI. Use this skill whenever the user mentions 即梦, Dreamina, Jimeng, or asks to generate images or videos specifically through ByteDance's Jimeng service. Covers text2image, image2image,
Open skill

