WeryAI video tool — subtitle translate

PassAudited by ClawScan on May 10, 2026.

Overview

This skill appears to do the described WeryAI subtitle translation, but it uses your WeryAI API key, sends the video URL to WeryAI, and has limited source provenance.

Before installing, make sure you trust this registry package, set WERYAI_API_KEY only for this intended workflow, confirm the exact HTTPS video URL and target language before any paid submit/wait run, and avoid using sensitive private videos unless you are comfortable with WeryAI processing them.

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

An accidental invocation could consume WeryAI credits or process the wrong video.

Why it was flagged

Submitting or waiting can start a paid remote processing job, so user confirmation matters. The artifact discloses this and adds an explicit pre-submit gate.

Skill content
Do **not** run `submit` / `wait` until the user explicitly confirms the video URL and `target_language`. Paid runs are not idempotent.
Recommendation

Confirm the exact video URL and target language before running submit or wait, and use the documented dry-run first when practical.

What this means

The API key can authorize actions against the user’s WeryAI account and may consume paid credits.

Why it was flagged

The script reads the WeryAI API key from the environment and uses it as a bearer token for WeryAI API requests.

Skill content
const apiKey = (process.env.WERYAI_API_KEY || "").trim(); ... headers.Authorization = `Bearer ${apiKey}`;
Recommendation

Use a dedicated or least-privilege WeryAI key if available, avoid writing it into files, and rotate it if it may have been exposed.

What this means

It is harder to confirm that the script came from an official or intended WeryAI-related source.

Why it was flagged

The registry metadata does not identify an upstream source or homepage for the runnable script, which limits independent provenance verification.

Skill content
Source: unknown; Homepage: none
Recommendation

Install only from a trusted registry entry, inspect the local file manifest before running, and avoid running extra sibling scripts not listed in this skill.

What this means

WeryAI will receive the video URL and process the referenced video for subtitle translation.

Why it was flagged

The tool sends the user-provided payload, including the video URL and target language, to WeryAI’s external API. This is disclosed and purpose-aligned.

Skill content
const BASE_URL = "https://api.weryai.com"; ... const res = await httpJson("POST", BASE_URL + spec.endpoint, payload, apiKey);
Recommendation

Use this only for videos you are allowed and comfortable sending to WeryAI, especially if the URL is private, unlisted, or sensitive.