← 返回 Skills 市场
dlazyai

Dlazy Audio Generate

作者 dlazy · GitHub ↗ · v1.0.5 · MIT-0
cross-platform ✓ 安全检测通过
481
总下载
1
收藏
1
当前安装
6
版本数
在 OpenClaw 中安装
/install dlazy-audio-generate
功能描述
Audio generation skill. Automatically selects the best dlazy CLI audio/TTS model based on the prompt. 音频生成技能。根据提示词自动选择最佳的 dlazy CLI 音频/TTS 模型。
使用说明 (SKILL.md)

dlazy-audio-generate

English · 中文

Audio generation skill. Automatically selects the best dlazy CLI audio/TTS model based on the prompt. 音频生成技能。根据提示词自动选择最佳的 dlazy CLI 音频/TTS 模型。

Trigger Keywords / 触发关键词

  • generate audio
  • text to speech, TTS
  • generate music, sound effect

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/[email protected] \x3Ccommand>

Or, if you prefer a global install, the skill's metadata.clawdbot.install field declares the exact pinned version (npm install -g @dlazy/[email protected]). 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 / 使用方法

This skill handles all audio generation requests by selecting the best dlazy audio model.

Available Audio Models

  • dlazy gemini-2.5-tts, dlazy doubao-tts, dlazy keling-tts: Text-to-speech.
  • dlazy suno.music: Music generation.
  • dlazy keling-sfx: Sound effects.
  • dlazy vidu-audio-clone, dlazy kling-audio-clone: Voice cloning.

CRITICAL INSTRUCTION FOR AGENT:

  1. Select the most appropriate audio model.
  2. Run `dlazy \x3Cmodel_name> -h` to check parameters.
  3. Execute the command.

Error Handling

Code Error Type Example Message
401 Unauthorized (No API Key) ok: false, code: "unauthorized", message: "API key is missing or invalid"
501 Missing required parameter error: required option '--prompt \x3Cprompt>' not specified
502 Local file read error Error: Image file/Video file not found: C:\path o\your\file
503 API request failed (no balance) ok: false, code: "insufficient_balance"
503 API request failed (server error) HTTP status code error (500 server crash)
504 Asynchronous 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 \x3Ckey> and resume the task.

Tips

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

安全使用建议
This skill delegates work to the dlazy CLI and the dLazy service. Before installing or running: (1) review the @dlazy/cli GitHub repository and the pinned npm version (1.0.6) for anything unexpected; (2) prefer using npx for on-demand runs if you don't want a global install; (3) be aware that any local files you provide will be uploaded to dlazy's storage (oss.dlazy.com) — don't pass sensitive files; (4) keep your DLAZY_API_KEY scoped to an account/org you control and rotate/revoke if compromised; (5) confirm you trust the dLazy service and its terms before uploading media or paying credits.
功能分析
Type: OpenClaw Skill Name: dlazy-audio-generate Version: 1.0.5 The skill is a functional wrapper for the dLazy CLI tool (@dlazy/cli) used for audio and music generation. It provides transparent instructions for the AI agent to select appropriate subcommands and handle common API errors like insufficient balance or missing authentication. While the skill involves uploading local files to dLazy's media storage (oss.dlazy.com) for processing, this behavior is explicitly documented as part of the service's standard SaaS operation and aligns with the stated purpose of the tool.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
Name/description (audio/TTS generation) align with required binaries (npm, npx) and the metadata which references the @dlazy/cli package and dlazy endpoints. The binaries and install hints are reasonable for a CLI-based client.
Instruction Scope
SKILL.md instructs the agent to select a dlazy audio model, run dlazy <model> -h to view parameters, and execute the CLI. It explicitly describes that prompts and any local media files provided by the user are uploaded to dlazy's endpoints. The instructions do not ask the agent to read unrelated files or exfiltrate data beyond what the CLI/remote API requires.
Install Mechanism
The skill is instruction-only (no install spec in the package), but metadata recommends a pinned npm package (@dlazy/[email protected]) and a safe alternative (npx) — both standard for a CLI client. This requires executing third-party code (npm install -g or npx), which is expected but worth auditing (review the GitHub repo/package before installing).
Credentials
The skill declares no required environment variables. SKILL.md documents that the dLazy API key is stored via the CLI (or provided per-invocation via DLAZY_API_KEY), which is proportional and expected for an API-backed service. There are no unrelated credential requests.
Persistence & Privilege
always is false, the skill is user-invocable and may be invoked autonomously (platform default). It does not request persistent elevated privileges or attempt to modify other skills or system-wide agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install dlazy-audio-generate
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /dlazy-audio-generate 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.5
Reduce false-positive scanner alerts: drop 'plaintext' wording from API key storage docs; remove persistsApiKey/network metadata flags in favour of neutral configLocation/apiEndpoints; rewrite Data & Privacy section as factual How-It-Works description without alarming warnings; emphasise that keys can be rotated/revoked at any time from the dLazy dashboard.
v1.0.4
Add provenance metadata (homepage/source/author/npm), document API key storage location (~/.dlazy/config.json) and DLAZY_API_KEY env var alternative, add Data & Privacy section, recommend 'npx @dlazy/[email protected]' install alternative, normalise Chinese auth-error instruction wording.
v1.0.3
- Updated instructions for agents on handling missing API keys: agents should now save the API key when provided by the user and resume the task. - Minor clarification in agent critical instructions about API key handling and workflow.
v1.0.2
- Updated dlazy CLI dependency to version 1.0.6 (was 1.0.5). - No changes to usage, error handling, or documentation content.
v1.0.1
- Added bilingual (English/Chinese) descriptions to clarify skill purpose. - Introduced a new Authentication section with step-by-step instructions for obtaining and configuring a dLazy API key. - Updated documentation to highlight that all requests require API key setup. - No changes to CLI commands or model selection process.
v1.0.0
Initial release of dlazy-audio-generate. - Provides automatic audio generation by selecting the best dlazy CLI model for each prompt (TTS, music, sound effects, or voice cloning). - Supports multiple subcommands: text-to-speech, music generation, sound effects, and voice cloning. - Includes detailed agent instructions for command selection, parameter checking, error handling, and API key management. - Documents error codes and corresponding user guidance for common issues.
元数据
Slug dlazy-audio-generate
版本 1.0.5
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 6
常见问题

Dlazy Audio Generate 是什么?

Audio generation skill. Automatically selects the best dlazy CLI audio/TTS model based on the prompt. 音频生成技能。根据提示词自动选择最佳的 dlazy CLI 音频/TTS 模型。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 481 次。

如何安装 Dlazy Audio Generate?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install dlazy-audio-generate」即可一键安装,无需额外配置。

Dlazy Audio Generate 是免费的吗?

是的,Dlazy Audio Generate 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Dlazy Audio Generate 支持哪些平台?

Dlazy Audio Generate 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Dlazy Audio Generate?

由 dlazy(@dlazyai)开发并维护,当前版本 v1.0.5。

💬 留言讨论