一键收藏抖音B站视频到你的飞书多维表格

ReviewAudited by ClawScan on May 10, 2026.

Overview

This video-saving skill mostly matches its stated purpose, but it asks for unnecessary local command powers and depends on undeclared tools while writing to your Feishu table.

Before installing, restrict the allowed tools to the minimum needed, verify dokobot and lark-cli come from trusted sources, and use a dedicated Feishu table or app credential with limited permissions. Do not place sensitive credentials in the skill file, and check the table target before allowing automatic upserts.

Findings (4)

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

If this skill is invoked or mis-scoped, the agent has permission to run local JavaScript or delete local files even though that is not needed to save a video link.

Why it was flagged

The stated purpose only needs video-page fetching and a Feishu record write, but this grants unrelated local execution/deletion capabilities through node and rm.

Skill content
allowed-tools: Bash(curl *), Bash(node *), Bash(date *), Bash(mkdir *), Bash(rm *), WebFetch, Skill
Recommendation

Remove Bash(node *), Bash(rm *), and other unused local command permissions; keep only narrowly scoped commands that are required for the workflow.

What this means

The skill may fail unless those tools are already installed, and users may be tempted to install similarly named tools without a trusted source or pinned version.

Why it was flagged

The workflow depends on external tools, but the provided metadata and install specs declare no required binaries or install mechanism.

Skill content
dokobot read "<url>" --local --timeout 5000 ... lark-cli base +record-upsert
Recommendation

Declare dokobot and lark-cli as required dependencies, provide trusted installation sources and versions, and document the authentication model.

What this means

A wrong token, table ID, or over-privileged Feishu login could add or update records in the wrong workspace/table.

Why it was flagged

The skill writes records to a user-configured Feishu Base/Table, which is purpose-aligned but requires account or app authority through the Feishu CLI.

Skill content
Base Token: 你的Base Token ... Table ID: 你的Table ID ... lark-cli base +record-upsert --base-token <YOUR_BASE_TOKEN> --table-id <YOUR_TABLE_ID>
Recommendation

Use a dedicated Feishu table or bot/app with the minimum needed permissions, verify the Base Token and Table ID, and avoid putting secrets in a shared skill file.

What this means

Saved video links and summaries may be visible to other people who can access the Feishu base.

Why it was flagged

The skill persists fetched video metadata and generated summaries into a Feishu table, which is expected but creates a reusable/shared record of the user's saved content.

Skill content
"链接": "https://...", "UP主/博主": "UP主名", "内容总结": "内容概括...", "标签": ["想看"]
Recommendation

Review Feishu table sharing settings and avoid saving private or sensitive video links unless that workspace is appropriate.