WeryAI video tool — lips change
Analysis
This skill appears to be a narrowly scoped WeryAI lip-sync tool that uses a WeryAI API key and public HTTPS media URLs, with an explicit confirmation warning before paid submissions.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Do **not** run `submit` / `wait` until the user explicitly confirms both URLs. Paid runs are not idempotent.
The skill can trigger paid external processing, but the artifact explicitly requires user confirmation before doing so.
Source: unknown; Homepage: none
The registry metadata does not provide an upstream source or homepage, reducing provenance context for the included script.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const apiKey = (process.env.WERYAI_API_KEY || "").trim(); ... headers.Authorization = `Bearer ${apiKey}`;The script reads the WeryAI API key from the environment and sends it as Authorization for WeryAI API calls. This is expected for the service integration, but it uses delegated account access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Inputs: `video_url` and `audio_url` must be **public `https://` URLs**. This script does not read local files and does not perform upload-file flows.
The workflow sends media URLs to an external provider. The artifact scopes this to public HTTPS URLs and says local files are not read or uploaded.
