Douyin Video Fetch
PassAudited by ClawScan on May 1, 2026.
Overview
This skill coherently downloads Douyin videos to local files, with only purpose-aligned notes about browser automation and undeclared Python dependencies.
This appears to be a straightforward Douyin video downloader. Before installing or running it, confirm you are comfortable with a Python script launching a headless browser, making network requests to Douyin/video hosts, and writing MP4 files locally. Also verify and install Playwright/aiohttp dependencies from trusted sources because no install spec is provided.
Findings (2)
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.
Running the skill will open an automated browser session and contact Douyin/video-hosting endpoints to fetch the requested video.
The downloader launches a headless Chromium browser and lets the Douyin page run so it can discover media URLs. This is purpose-aligned, but users should know the skill performs browser automation rather than a simple static HTTP download.
browser = await p.chromium.launch(headless=True)
Use it only for Douyin URLs or video IDs you intend to download, and run it in an environment where browser-based network access is acceptable.
The script may fail unless those packages and Playwright browser components are already installed, or the user installs them separately.
The code depends on third-party Python libraries, while the provided install specification says there is no install spec. This is a packaging/provenance note, not evidence of malicious behavior.
from playwright.async_api import async_playwright import aiohttp
Before running, inspect the full script and install dependencies from trusted, pinned sources where possible.
