Skill flagged — suspicious patterns detected

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

Dlazy Vidu Audio Clone

v1.0.4

Clone voice and generate new text reading audio with one click using Vidu Audio Clone.

0· 507·1 current·1 all-time
bydlazy@dlazyai

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for dlazyai/dlazy-vidu-audio-clone.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Dlazy Vidu Audio Clone" (dlazyai/dlazy-vidu-audio-clone) from ClawHub.
Skill page: https://clawhub.ai/dlazyai/dlazy-vidu-audio-clone
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: npm, npx
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 dlazy-vidu-audio-clone

ClawHub CLI

Package manager switcher

npx clawhub@latest install dlazy-vidu-audio-clone
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name and description align with the instructions: this is a thin client for the dLazy Vidu audio clone service. Requiring npm/npx is coherent because the skill depends on an npm CLI. However, the SKILL.md explicitly requires a dLazy API key (and documents storing it in ~/.dlazy/config.json or using DLAZY_API_KEY), while the registry metadata lists no required env vars or primary credential — a mismatch between claimed requirements and declared requirements.
Instruction Scope
The SKILL.md stays on task: it tells the agent to run the dlazy vidu-audio-clone CLI, describes that local audio files will be uploaded to oss.dlazy.com, and instructs how to handle common errors. It does not instruct the agent to read unrelated files or exfiltrate arbitrary data. It does, however, mandate agent behavior in error cases (explicit 'MUST' guidance), which is prescriptive but within the skill's scope.
Install Mechanism
There is no registry install spec, but the SKILL.md metadata recommends installing a pinned npm package (@dlazy/cli@1.0.6) or using npx. That is a plausible install path for a CLI, but installing npm packages executes remote code and introduces typical supply‑chain risk. Prefer using the npx alternative or auditing the GitHub/npm source before a global install.
!
Credentials
The SKILL.md requires a dLazy API key (either via dlazy auth set or DLAZY_API_KEY) and documents storing it in ~/.dlazy/config.json, but the skill metadata in the registry declares no required env vars or a primary credential. This omission is important: the skill needs a sensitive secret to function and will persist it to disk. No unrelated credentials are requested, but the credential requirement should be declared in registry metadata.
Persistence & Privilege
always is false and the skill does not request elevated or system‑wide privileges. The only persistent side effect described is the CLI storing its own config (~/.dlazy/config.json), which is expected behavior for a CLI that stores an API key.
What to consider before installing
This skill appears to be a wrapper for the dLazy CLI to perform voice cloning and is otherwise coherent, but take these precautions before installing or using it: - Expect to provide a dLazy API key (DLAZY_API_KEY or run `dlazy auth set <key>`). The registry metadata did not declare this — confirm you are comfortable with that secret being used and stored. - The CLI will upload any local audio files you pass to dlazy's servers (oss.dlazy.com). Do not pass private/sensitive audio you do not want uploaded. - The SKILL.md recommends installing @dlazy/cli from npm; installing npm packages runs remote code. Prefer running via `npx @dlazy/cli@1.0.6` to avoid a global install, and review the GitHub/npm source (https://github.com/dlazyai/cli and https://www.npmjs.com/package/@dlazy/cli) before trusting it. - Confirm legal and ethical permissions for cloning any voice you provide. - If you need higher assurance, ask the publisher to update the registry metadata to declare the required API key (primaryEnv) and to include a formal install spec, or request a reproducible audit of the npm package version pinned by the skill.

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

Runtime requirements

🤖 Clawdis
Binsnpm, npx
latestvk971zppqw1vsvjdwz1y6tet32185mjnj
507downloads
0stars
5versions
Updated 1d ago
v1.0.4
MIT-0

dlazy-vidu-audio-clone

English · 中文

Clone voice and generate new text reading audio with one click using Vidu Audio Clone.

Trigger Keywords

  • vidu audio clone
  • clone voice
  • custom speech

Authentication

All requests require a dLazy API key, configured through the CLI:

dlazy auth set YOUR_API_KEY

The CLI saves the key in your user config directory (~/.dlazy/config.json on macOS/Linux, %USERPROFILE%\.dlazy\config.json on Windows), with file permissions restricted to your OS user account. You can also supply the key per-invocation via the DLAZY_API_KEY environment variable.

Getting Your API Key

  1. Sign in or create an account at dlazy.com
  2. Go to dlazy.com/dashboard/organization/api-key
  3. Copy the key shown in the API Key section

Each key is scoped to your dLazy organization and can be rotated or revoked at any time from the same dashboard.

About & Provenance

You can install on demand without persisting a global binary by running:

npx @dlazy/cli@1.0.6 <command>

Or, if you prefer a global install, the skill's metadata.clawdbot.install field declares the exact pinned version (npm install -g @dlazy/cli@1.0.6). Review the GitHub source before installing.

How It Works

This skill is a thin client over the dLazy hosted API. When you invoke it:

  • Prompts and parameters you provide are sent to the dLazy API endpoint (api.dlazy.com) for inference.
  • Any local file paths you pass to image / video / audio fields are uploaded to dLazy's media storage (oss.dlazy.com) so the model can read them — the same flow as any cloud-based generation API.
  • Generated output URLs returned by the API are hosted on oss.dlazy.com.

This is the standard SaaS pattern; the skill itself does not access network or filesystem resources beyond what the dLazy CLI already handles. See dlazy.com for the full service terms.

Usage

CRITICAL INSTRUCTION FOR AGENT: Run the dlazy vidu-audio-clone command to get results.

dlazy vidu-audio-clone -h

Options:
  --audio_url <audio_url>              Audio URL [audio: url or local path]
  --prompt <prompt>                    Prompt
  --input <spec>                       JSON payload: inline string, @file, or - (stdin)
  --dry-run                            Print payload + cost estimate without calling API
  --no-wait                            Return generateId immediately for async tasks
  --timeout <seconds>                  Max seconds to wait for async completion (default: "1800")
  -h, --help                           display help for command

Output Format

{
  "ok": true,
  "kind": "urls",
  "data": {
    "urls": [
      "https://oss.dlazy.com/result.mp4"
    ]
  }
}

Command Examples

# basic call:
dlazy vidu-audio-clone --prompt 'prompt text'

# complex call:
dlazy vidu-audio-clone --prompt 'prompt text'

Error Handling

CodeError TypeExample Message
401Unauthorized (No API Key)ok: false, code: "unauthorized", message: "API key is missing or invalid"
501Missing required parametererror: required option '--prompt <prompt>' not specified
502Local file read errorError: Image file/Video file not found: C:\path\to\your\file
503API request failed (no balance)ok: false, code: "insufficient_balance"
503API request failed (server error)HTTP status code error (500 server crash)
504Asynchronous task execution failed=== Generation Failed === / {Specific error reason returned by backend, for example "Prompt violates safety policy"}

AGENT CRITICAL INSTRUCTION:

  1. If the execution result returns code: "insufficient_balance", you MUST explicitly inform the user that their credits are insufficient and guide them to recharge: https://dlazy.com/dashboard/organization/settings?tab=credits
  2. If the execution result returns code: "unauthorized" or indicates missing API key, you MUST inform the user to get their API key from https://dlazy.com/dashboard/organization/api-key and save it using dlazy auth set <key> and resume the task.

Tips

Visit https://dlazy.com for more information.

Comments

Loading comments...