📦 B站视频分析

v1.0.0

使用内置脚本获取B站视频信息并总结

0· 74·0 当前·0 累计
下载技能包
最后更新
2026/4/12
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
总体而言,该技能的代码和说明基本符合其既定目的(获取B站视频元数据并总结),但 SKILL.md 与所含文件之间存在不一致,会导致运行时错误,在信任该技能前需予以修正。
评估建议
This skill generally does what it claims — it extracts a BV id and queries the public Bilibili API for metadata. Before installing, check and correct the obvious inconsistencies: (1) SKILL.md calls scripts/fetch.js but the included file is scripts/fecth.js (likely a typo). Fixing the filename or the instruction is required for the skill to run. (2) Clarify the SKILL.md statement that forbids web_fetch/browser: the bundled script uses fetch() to contact api.bilibili.com; make sure the runtime env...
详细分析 ▾
用途与能力
The skill name/description (B站视频分析) align with the included code: the script calls Bilibili's public API and returns title, owner, desc, view, like — all expected for this purpose. No unrelated binaries or credentials are requested. Minor note: SKILL.md explicitly forbids using web_fetch/browser while the bundled script itself uses fetch() to call the Bilibili API; this is ambiguous but not necessarily malicious.
指令范围
SKILL.md instructs the agent to call scripts/fetch.js, but the repository contains scripts/fecth.js (typo). This filename mismatch means the runtime instruction will fail unless corrected. Otherwise, the instructions restrict operations appropriately (call internal script, no other system files accessed, network call only to Bilibili API).
安装机制
No install spec and only a small JS script are included; nothing is downloaded or installed at runtime. This is low-risk from an install-perspective.
凭证需求
The skill declares no environment variables or credentials and the script does not access any secrets or config paths. The only external interaction is a GET to api.bilibili.com, which is proportional to the stated purpose.
持久化与权限
The skill does not request persistent/always-on presence and uses normal agent invocation rules. It does not attempt to modify other skills or system-wide settings.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/12

- 重大更新:技能重构,专注通过获取并展示基础视频信息来总结 Bilibili 视频。 - 技能名称由 “bilibili-subtitle” 改为 “bilibili-summary”。 - 移除字幕获取、登录及时间戳搜索功能。 - 新增内部脚本(scripts/fetch.js)用于拉取 Bilibili 视频数据。 - 输出格式统一为:标题、上传者、播放数、点赞数及摘要。 - 技能现仅需视频链接/BVID 作为输入;不再支持 cookie/登录处理与字幕提取。

无害

安装命令

点击复制
官方npx clawhub@latest install bilibili-summary-raise
镜像加速npx clawhub@latest install bilibili-summary-raise --registry https://cn.longxiaskill.com

技能文档

输入 B站视频链接,返回视频信息并总结

--- # 执行流程

  • 接收用户输入(URL 或 BV号)
  • 调用内部脚本:scripts/fetch.js
  • 获取 JSON 数据
  • 生成总结

--- # 输出格式

  • 标题:
  • UP主:
  • 播放量:
  • 点赞数:
  • 内容总结:

--- # 约束

  • 必须调用内部 scripts
  • 不允许使用 web_fetch
  • 不允许使用 browser
数据来源ClawHub ↗ · 中文优化:龙虾技能库