bilibili-monitor

生成B站热门视频日报并发送邮件。触发词:B站热门、bilibili日报、视频日报、热门视频

7 stars

Best use case

bilibili-monitor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

生成B站热门视频日报并发送邮件。触发词:B站热门、bilibili日报、视频日报、热门视频

Teams using bilibili-monitor should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/bilibili-hot-monitor/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/jacobzwj/bilibili-hot-monitor/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/bilibili-hot-monitor/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How bilibili-monitor Compares

Feature / Agentbilibili-monitorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

生成B站热门视频日报并发送邮件。触发词:B站热门、bilibili日报、视频日报、热门视频

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# B站热门视频日报

## 执行流程(分步询问)

### 检查配置文件

首先检查是否存在配置文件:
```bash
test -f {baseDir}/bilibili-monitor.json && echo "CONFIG_EXISTS" || echo "CONFIG_NOT_EXISTS"
```

- 如果输出 `CONFIG_EXISTS` → 跳到【直接执行】
- 如果输出 `CONFIG_NOT_EXISTS` → 进入【分步创建配置】

---

### 分步创建配置(首次使用)

**第1步:询问 B站 Cookies**
```
请提供 B站 Cookies:
(获取方法:登录B站首页 → F12 → Network选项卡 → 刷新页面 → 点击 www.bilibili.com 请求 → 找到 Request Headers 中的 Cookie 字段 → 复制整个值)
```
等待用户回复,保存为变量 `COOKIES`

**第2步:询问 AI 服务**
```
AI 功能说明:
- 需要 OpenRouter API Key
- 用于生成视频内容总结(基于字幕)和 AI 点评

是否启用 AI 功能?
1 = 是(推荐,需要 OpenRouter API Key)
2 = 否(将无法生成视频总结和点评)
请回复数字:
```
等待用户回复

**第3步:如果选了 1(启用 AI)**
```
请选择模型:
1 = Gemini(推荐,便宜快速)
2 = Claude(高质量)
3 = GPT
4 = DeepSeek(性价比)
```
等待用户回复,然后:
```
请提供 OpenRouter API Key:
获取地址:https://openrouter.ai/keys
```
保存为 `OPENROUTER_KEY` 和 `MODEL`

**第4步:询问发件邮箱**
```
请提供 Gmail 发件邮箱:
```
等待用户回复,保存为 `SMTP_EMAIL`

**第5步:询问应用密码**
```
请提供 Gmail 应用密码(16位):
获取地址:https://myaccount.google.com/apppasswords
```
保存为 `SMTP_PASSWORD`

**第6步:询问收件人**
```
请提供收件人邮箱(多个用逗号分隔):
```
保存为 `RECIPIENTS`

**第7步:生成配置文件**

根据收集的信息创建配置文件:
```bash
cat > {baseDir}/bilibili-monitor.json << 'EOF'
{
  "bilibili": {
    "cookies": "COOKIES值"
  },
  "ai": {
    "openrouter_key": "OPENROUTER_KEY值或空",
    "model": "MODEL值"
  },
  "email": {
    "smtp_email": "SMTP_EMAIL值",
    "smtp_password": "SMTP_PASSWORD值",
    "recipients": ["收件人1", "收件人2"]
  },
  "report": {"num_videos": 10}
}
EOF
```

---

### 直接执行(已有配置)

**生成报告:**
```bash
python3 {baseDir}/generate_report.py --config {baseDir}/bilibili-monitor.json --output /tmp/bilibili_report.md
```

**发送邮件(邮件标题自动使用当前日期):**
```bash
python3 {baseDir}/send_email.py --config {baseDir}/bilibili-monitor.json --body-file /tmp/bilibili_report.md --html
```

---

## OpenRouter 模型映射

| 用户选择 | model 值 |
|---------|---------|
| 1 / Gemini | google/gemini-3-flash-preview |
| 2 / Claude | anthropic/claude-sonnet-4.5 |
| 3 / GPT | openai/gpt-5.2-chat |
| 4 / DeepSeek | deepseek/deepseek-chat-v3-0324 |

## 配置文件示例

见 `bilibili-monitor.example.json`

## ⚠️ 重要提示

**AI 视频总结说明:**
- 视频总结基于字幕生成,需要视频有字幕(CC字幕或AI字幕)
- 部分视频可能没有字幕,这些视频将无法生成总结
- 推荐启用 AI 功能以获得完整的视频分析体验
- 需要 OpenRouter API Key(支持 Gemini、Claude、GPT、DeepSeek 等模型)

Related Skills

task-monitor

7
from Demerzels-lab/elsamultiskillagent

Real-time web dashboard for OpenClaw sessions and background tasks. Mobile-responsive with auto-refresh.

testflight-monitor

7
from Demerzels-lab/elsamultiskillagent

Monitor available TestFlight beta slots with smart app lookups and silent batch checking.

aave-liquidation-monitor

7
from Demerzels-lab/elsamultiskillagent

Proactive monitoring of Aave V3 borrow positions with liquidation alerts.

web-monitor-pro

7
from Demerzels-lab/elsamultiskillagent

Monitor web pages for changes, price drops, stock availability, and custom conditions.

price-monitor

7
from Demerzels-lab/elsamultiskillagent

Surveille les prix de produits sur des sites e-commerce et alerte quand ils baissent.

ecommerce-price-monitor

7
from Demerzels-lab/elsamultiskillagent

This skill enables Claude to monitor and track **product prices across major e-commerce platforms**.

crypto-gold-monitor

7
from Demerzels-lab/elsamultiskillagent

加密货币与贵金属价格监控 / Crypto & Precious Metals Price Monitor - 监控BTC/ETH实时价格、黄金(XAU)/白银(XAG)走势,免费API无需Key

bluetooth-monitor

7
from Demerzels-lab/elsamultiskillagent

蓝牙设备监控 / Bluetooth Device Monitor - 查看Mac已连接的蓝牙设备列表,支持配对、连接、断开操作

uniswap-monitor-teneo

7
from Demerzels-lab/elsamultiskillagent

AI-powered blockchain monitoring agent with real-time monitoring of Uniswap V2, V3, and V4 most known pools. Track swaps, monitor specific liquidity pools by address, and receive intelligent insights

btc-indicator-monitor-teneo

7
from Demerzels-lab/elsamultiskillagent

Real-time BTC price monitoring agent that sends alerts when price crosses key technical indicator levels. Monitors SMA, EMA, RSI, Bollinger Bands, and 15+ other indicators. Checks every 20 seconds w

monitored-ralph-loop

7
from Demerzels-lab/elsamultiskillagent

Generate copy-paste bash scripts for Ralph Wiggum/AI agent loops (Codex, Claude Code, OpenCode, Goose)

screen-monitor

7
from Demerzels-lab/elsamultiskillagent

Dual-mode screen sharing and analysis. Model-agnostic (Gemini/Claude/Qwen3-VL).