Video Analysis Workflow 视频案例分析助手

ReviewAudited by ClawScan on May 10, 2026.

Overview

The workflow is mostly purpose-aligned, but optional browser-cookie use for video downloads is high-impact and not tightly scoped, so it should be reviewed before use.

Before installing, check any setup script manually, install only the media tools you trust, and avoid granting browser-cookie access unless it is strictly necessary for a specific video you have rights to access. Use a dedicated browser profile or manual download when possible, and keep the generated Obsidian case library in a private location if the videos or transcripts are sensitive.

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.

ConcernMedium Confidence
ASI03: Identity and Privilege Abuse
What this means

Granting this permission could expose logged-in session data to the agent or downloader, not just the single video being analyzed.

Why it was flagged

The workflow may access local browser cookies, which are session credentials. Although it requires user authorization, the artifacts do not clearly specify which browser/profile/site cookies are read, whether only the target platform is used, or how cookie data is constrained.

Skill content
如果下载器提示需要 cookies,助手会先询问:

> 是否允许读取浏览器 cookies 重试下载?

没有授权时,不会读取浏览器 cookies。
Recommendation

Only authorize cookie access for a specific, trusted download attempt. Prefer manually downloading the video or using a dedicated browser profile with only the needed platform login.

What this means

Running an unreviewed setup script could change the local environment or install packages beyond what the registry metadata declares.

Why it was flagged

The skill documents a first-use setup script that installs FFmpeg, Python, Whisper, openai-whisper, and yt-dlp, but the supplied manifest does not include that script for review. This is aligned with the video-analysis purpose, but its provenance is not verifiable from the artifacts.

Skill content
powershell -ExecutionPolicy Bypass -File <Skill目录>\scripts\setup-video-case-env.ps1
Recommendation

Inspect the setup script before running it, confirm the package sources, and run it only in an environment where installing media-analysis tools is acceptable.

What this means

Saved transcripts, frames, prompts, and metadata could be reused later or shared with teammates if the case library is synced or exposed.

Why it was flagged

The skill intentionally stores transcripts and structured outputs for later AI workflow reuse. This is purpose-aligned, but it creates persistent local/team knowledge artifacts that may contain private video content or source paths.

Skill content
同时保留 Whisper 原始文件:`.json`、`.srt`、`.txt`、`.vtt`、`.tsv`,方便后续 AI 工作流调用和人工复查。
Recommendation

Store the case library in a controlled location, avoid adding confidential videos unless appropriate, and review generated notes before sharing or syncing them.