Douyin Transcriber

PassAudited by ClawScan on May 10, 2026.

Overview

This is a coherent local transcription skill, but users should notice it relies on running an unpinned third-party Docker container that stays running until stopped.

This skill appears benign for local media transcription. Before using it, make sure you trust the Docker image, consider pinning a specific image version, process only media you intend to transcribe, and stop the Docker container when you are done.

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.

What this means

If the upstream image changes or is compromised, the container could run different code than the user expected.

Why it was flagged

The skill directs users to run a third-party Docker image using the mutable latest tag, so the actual code executed is not pinned in the artifacts.

Skill content
docker run -d -p PORT:PORT ... --name whisper-asr onerahmet/openai-whisper-asr-webservice:latest
Recommendation

Use a trusted image source, pin a specific version or digest, and review the Docker image before running it.

What this means

The local ASR service may remain active and listening on the configured port until the user stops it.

Why it was flagged

The documented Docker command starts the ASR service in detached mode, meaning it can continue running after the immediate transcription workflow finishes.

Skill content
docker run -d -p PORT:PORT ... --name whisper-asr
Recommendation

Stop or remove the container when finished, and bind the port to localhost only if remote access is not needed.