Bilibili Transcript

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill mostly matches its transcription purpose, but it automatically uses browser cookies and has a Whisper fallback that can read and delete an unrelated TXT file in the chosen output folder.

Use this skill only in a dedicated empty output folder and be aware that it may use your logged-in browser session for Bilibili. Before installing, ask the maintainer to fix the broad TXT-file deletion and to make browser-cookie use explicit and optional.

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

A pre-existing text file in the output folder could be copied into the generated transcript and then deleted, causing data loss or accidental disclosure if the final transcript is shared.

Why it was flagged

During Whisper fallback, the script selects the first TXT file in the user-selected output directory, reads it as the transcript, and deletes it. If the user chooses a normal folder such as Documents, this can affect an unrelated file.

Skill content
TXT_FILE=$(find "$OUTPUT_DIR" -maxdepth 1 -name "*.txt" -type f 2>/dev/null | head -1)
...
TRANSCRIPT_TEXT=$(cat "$TXT_FILE")
rm -f "$TXT_FILE"
Recommendation

Only read and delete the specific Whisper output file created for this run, use a temporary working directory, and avoid deleting broad matches like any '*.txt' in a user-selected folder.

What this means

The skill may use your existing browser login session to access Bilibili content without an explicit per-run confirmation, which can expose account-authorized/member-only content to the transcript workflow.

Why it was flagged

The script automatically uses local Chromium or Edge browser cookie stores. This is disclosed in the docs for member-only videos, but it is high-impact session/profile access and the registry metadata declares no primary credential or required config path.

Skill content
COOKIE_PARAM="--cookies-from-browser chromium:$CHROMIUM_PATH"
...
COOKIE_PARAM="--cookies-from-browser edge:C:/Users/$WIN_USER/AppData/Local/Microsoft/Edge/User Data"
Recommendation

Declare the browser cookie/profile access in metadata, require explicit user approval before using cookies, and provide a clear no-cookies mode or a user-selected browser/profile option.

What this means

The skill may fail or behave differently depending on which local versions of these tools are installed.

Why it was flagged

The skill depends on local command-line tools, but the registry shows no install spec and no required binaries. The tools are expected for the transcription purpose, but users must supply trusted installations themselves.

Skill content
`yt-dlp` - Video/audio download
`ffmpeg` - Audio processing
`whisper` - Speech-to-text
`opencc` - Traditional to Simplified Chinese conversion
Recommendation

Declare required binaries and supported versions in metadata, and direct users to trusted installation sources.