bilibili-video-extractor(B站(bilibili)视频分析专家)

PassAudited by ClawScan on May 8, 2026.

Overview

This skill appears to match its stated purpose of fetching and analyzing public Bilibili video data, but users should note that it makes network requests and stores retrieved data in a local cache.

This looks safe for its stated purpose. Before installing, understand that it will make network requests to Bilibili and may save fetched public video/comment data under scripts/.cache. If you need reproducible setup, check that Python dependencies such as requests are available and that the referenced workflow filename is corrected.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using the skill will contact Bilibili services and may process multiple supplied video URLs.

Why it was flagged

The script performs outbound requests to Bilibili APIs to retrieve video information, which is expected for a Bilibili extractor but should be understood before use.

Skill content
api_url = f"https://api.bilibili.com/x/web-interface/view?bvid={video_id}"
Recommendation

Use it only with video URLs you intend to analyze, and be mindful of Bilibili rate limits and terms of service.

What this means

Previously fetched public Bilibili data can remain on disk and may be reused until the cache expires or is deleted.

Why it was flagged

The extractor maintains a local cache directory and writes retrieved video data to JSON files, so public comments/danmaku and metadata may persist after analysis.

Skill content
CACHE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), '.cache')
Recommendation

Delete the scripts/.cache files if you do not want extracted video/comment data retained locally.

What this means

The agent may fail to locate the required workflow document or may operate with incomplete instructions.

Why it was flagged

The instruction references `references/core_workflow.md`, while the supplied manifest lists `references/core-workflow.md`; this mismatch could prevent the intended workflow file from being loaded.

Skill content
必须先读取与本技能同目录下的 `references/core_workflow.md`
Recommendation

Confirm the correct workflow filename before relying on the skill, or update the reference path to match the packaged file.