Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Bulk Tiktok Downloader

v0.1.0

Bulk download TikTok videos from a text file of URLs using yt-dlp. Use when a user asks to download many TikTok videos at once, process a URL list file, or s...

0· 881·3 current·4 all-time
bymes@mes28io

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for mes28io/bulk-tiktok-downloader-skill.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Bulk Tiktok Downloader" (mes28io/bulk-tiktok-downloader-skill) from ClawHub.
Skill page: https://clawhub.ai/mes28io/bulk-tiktok-downloader-skill
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install bulk-tiktok-downloader-skill

ClawHub CLI

Package manager switcher

npx clawhub@latest install bulk-tiktok-downloader-skill
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included script and docs. The skill only requires yt-dlp (declared in requirements.txt) and reads a user-supplied URL list to download videos — nothing extraneous is requested.
Instruction Scope
SKILL.md instructs a local pip install and running the included Python script; the runtime instructions only reference the URLs file and an output folder. The script reads a local file, creates an output directory, and calls yt_dlp; it does not access other system files, env vars, or external endpoints beyond yt-dlp's normal network calls.
Install Mechanism
No install spec in registry; the SKILL.md instructs installing dependencies via pip from requirements.txt (yt-dlp from PyPI). This is a common, expected approach but carries the usual caution for installing packages from PyPI — moderate risk compared to no install. No unusual download URLs or archive extraction are used.
Credentials
The skill requires no environment variables, credentials, or config paths. The absence of secrets or unrelated credentials is proportionate to a downloader utility.
Persistence & Privilege
always is false and the skill does not request any persistent system-wide changes or modify other skills. It runs as an on-demand script and stores downloads only in the specified output folder.
Assessment
This skill appears to do exactly what it says: run a local Python script that uses yt-dlp to download TikTok videos listed in a text file. Before installing/running: (1) review the urls.txt input to avoid downloading unwanted content; (2) run pip install in a virtualenv or with --user to limit system exposure; (3) do not run as root; (4) be mindful of copyright and TikTok terms of service; (5) inspect the included downloader.py yourself (it's short and readable) and only use trusted versions of yt-dlp from PyPI. If you need stronger isolation, run the script inside a container or VM to confine network and disk access.

Like a lobster shell, security has layers — review code before you run it.

latestvk973rgnakdqr5qd3qexn0a8dxx81pwjg
881downloads
0stars
1versions
Updated 11h ago
v0.1.0
MIT-0

bulk TikTok downloader

Use this skill to run a local bulk TikTok downloader safely and reproducibly.

Safety + legality

  • Download only content you are authorized to download.
  • Respect platform Terms of Service, local copyright rules, and user privacy.
  • Do not bypass paywalls or private/protected content.

Inputs

  • URL list file (one URL per line)
  • Optional output directory

Lines starting with # are comments and ignored.

Setup

From workspace root:

python3 -m pip install --user -r skills/bulk-tiktok-downloader/scripts/requirements.txt

Run

Default (uses urls.txt next to script and downloads/ output):

python3 skills/bulk-tiktok-downloader/scripts/downloader.py

Custom URL file:

python3 skills/bulk-tiktok-downloader/scripts/downloader.py my_urls.txt

Custom URL file + output directory:

python3 skills/bulk-tiktok-downloader/scripts/downloader.py my_urls.txt my_downloads

Recommended workflow

  1. Validate URL list file exists and is non-empty.
  2. Run downloader.
  3. Report successful vs failed counts.
  4. Surface failed URLs and likely reason (private/deleted/region restricted/rate limit).

Troubleshooting

  • No module named yt_dlp → install requirements.
  • File not found → verify URL file path.
  • Frequent failures/rate limit → reduce batch size and retry later.

Upstream reference

See:

  • skills/bulk-tiktok-downloader/references/upstream-readme.md

Comments

Loading comments...