Token导航 LogoToken导航TokenDH.com
音频生成敏感数据clawhub未标认证来源可访问clear审计通过

free-music-generator免费音乐生成器

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

14,394

周安装

588

GitHub Stars

3

下载量

4,610
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:free-music-generator(免费音乐生成器)
来源仓库:https://github.com/tuneeai/free-music-generator
安装命令:
openclaw skills install free-music-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install free-music-generator

简介

用于音乐创作、歌曲创作和歌词生成等音频相关任务。

  • 支持免费 API 调用,适合快速生成背景音乐或人声素材。
  • 使用时需确认版权授权,避免商用侵权风险。
  • 适用于 OpenClaw 中的音频处理工作流集成。
  • 安装命令:openclaw skills install free-music-generator。

SKILL.md

name
free-music-generator
description
|
metadata

Tunee AI Music Generation

Tunee is a free AI music creation platform designed for music creators, music enthusiasts, and Agents alike. Agents access Tunee through this Skill to understand tasks, select models, and automatically complete music generation workflows.

Core capabilities:

  • Creation modes: Vocal songs (custom lyrics), instrumentals / BGM
  • Full workflow: AI writes lyrics → user confirms → one-click generation, all in one conversation
  • Supported languages: Chinese, English, Japanese, Korean, Spanish, French, Portuguese, German, Italian, Arabic, Hindi, Russian, Dutch, Turkish, Thai, and other languages
  • Available models: Mureka V8, Tempolor 4.5+, and other top-tier music models

Generate music with Tunee AI. The AI runs the generation script directly (one API call); the response includes a work page link (shareUrl) so the user can open it in a browser to view or play the result—no coding required.

AI Execution Flow

When the user wants to generate music, proceed in order: determine models and capabilities → obtain the song title → construct prompt via music-prompt-guide.md → run generate.py → deliver the result. Model information must come from list_models.py stdout output only. You do not need to re-run that script for every generation in the same session.

Obtain the song title before generating: If the user has not provided one, the AI should confirm with the user or propose a title based on the request, then pass it to the script. --title is required.

1. Model List: When to Run the Script

When to run list_models.py

SituationAction
The conversation has no complete output from this script yetRun the script first, then select a model, then run generate
Output already exists in context and still fits the current needsUse the list from context for selection—no need to re-run for the next generation
User wants a fresh list, to switch models, list doesn't match needs, or list may be outdatedRun again; add --refresh to force a fresh fetch from the API

2. Model Selection

Use the list's model and capability description to match user needs. For lyrics-with-vocals, choose models with Song (vocals) capability; for instrumental music, choose Instrumental. Pass the selected model's id to --model.

Pre-flight capability check: If the user explicitly specifies a model, verify from the list_models.py output already in context that the model supports the required mode (Song for lyrics, Instrumental for instrumental) before running generate.py. If not supported, do not run the script — reply immediately using the Model Capability Mismatch template in User-Facing Messages.

3. Instrumental (No Lyrics)

Step 1 — Confirm before generating: After selecting a model and constructing the prompt, present the plan to the user and wait for confirmation before running the script.

Ready to generate your instrumental~

🎵 Title: {title}
🎤 Model: {model name}
🎨 Style: {prompt}

Good to go?

Translate into the user's language.

Step 2 — Generate: Once confirmed, run:

python scripts/generate.py --title "Track Title" --prompt "user description" --model <modelID>

Always include --title and --model; add --api-key if needed.

4. With Lyrics

Step 1 — Write lyrics: Follow lyrics-guide.md to produce the lyrics draft.

Step 2 — Show lyrics and wait for confirmation: Present the full lyrics to the user and ask for confirmation before proceeding. Do not run the script yet.

Here are the lyrics for "{title}":

{full lyrics}

---
Happy with these? I'll start generating.
Or let me know what to change.

Translate into the user's language.

Step 3 — Handle user response:

  • User confirms (e.g. "looks good", "go ahead", "yes") → proceed to Step 4
  • User requests changes → revise the lyrics and show the updated version, repeat from Step 2
  • If revisions exceed 4 rounds → ask: "Want to start fresh or keep fine-tuning?"

Step 4 — Generate: Once confirmed, run:

python scripts/generate.py --title "Song Title" --prompt "style description" --lyrics "lyrics content" --model <modelID>

5. Output and Errors

Success: Script prints a single-line JSON array to stdout. Parse it and reply using the template in Delivering Results. Failure: Script prints error messages to stderr. Map the error to the appropriate reply in User-Facing Messages.

Script Parameters

--title: Required. Song or track title. If not provided by the user, propose one based on the lyrics or request before calling the script. Title naming rules:

  • Derive from the lyric content or the user's stated theme
  • Length: 2–6 characters for Chinese titles; 1–4 words for English titles
  • Do not ask the user to confirm the title unless they have expressed a preference — propose and proceed

--model: Must be the id of a model from the complete list_models.py stdout already in this conversation. Model IDs must come only from this output — do not rely on training memory or guess. If the output does not exist yet, run list_models.py first before generating.

Prerequisites

  • API Key: --api-key or environment variable TUNEE_API_KEY (obtain at tunee.ai)
  • Script paths relative to skill root: scripts/generate.py, scripts/list_models.py, scripts/credits.py

Credits balance

When the user asks for remaining Tunee credits / points / balance (or equivalent in any language), run:

python scripts/credits.py

Use only the YAML printed to stdout (under the credits: key). Add --api-key if needed. Do not infer balance from list_models.py; that script lists models, not account credits.

User-Facing Messages

This section defines what to say to the user in each scenario. Use these as the reply template; do not invent wording from scratch.

Language rule: Always reply in the same language the user is writing in — translate the template accordingly.

Credits Balance

When the user asks about remaining credits, run credits.py and reply:

You have {remaining} credits left ✨
Want to make a song~

Model List

When the user asks to see available models, run list_models.py and reply:

Here are the available models~ Pick one or let me recommend 🎵

| Name | Type | Credits/track |
|------|------|--------------|
| {name} | {types} | {credits_show} |

Not sure which to pick? Tell me your style and I'll choose for you~

For {types}, map capability values to human-readable labels: Song → Vocals, Instrumental → Instrumental, both → Vocals + Instrumental.

Model Capability Mismatch

When the user specifies a model that does not support the requested mode, do not run generate.py. Reply immediately:

{model_name} doesn't support {mode} generation~

Models that support {mode}:
- {name} ({credits_show} credits/track)

Want to switch?

For {mode}: Song → vocals, Instrumental → instrumental. List all supporting models from the list_models.py output already in context.

Resume Generation

When the user replies "continue" (or equivalent) after topping up credits, re-run credits.py to verify balance and reply:

Your lyrics are still here~ Welcome back 🎵
Credits topped up — shall we generate now?

Conversation Start

When the user starts a new conversation, greet them:

Tunee is ready 🎵

Tell me what kind of song you want — style, mood, theme, anything goes~

Vocals or instrumental, both work!

I'll write the lyrics first, and generate once you're happy with them~

API Key Not Configured

Do not run any script. Reply:

Welcome to Tunee Music 🎵
Please complete setup first:
1. Go to tunee.ai to get your API Key
2. Paste the Key into the Skill config field "TUNEE_API_KEY"
3. Start a new conversation to begin creating

You can also pass it at runtime: --api-key "your-api-key"

After the user confirms the Key is set, proceed normally.

Generation Success

Parse the JSON array from stdout and reply:

🎵 Your track is being created!

{title}
🎤 Model: {model name}
🎨 Style: {prompt}
Listen here → [{title}]({url})

---
Want to do more?
- "Change style" — keep the lyrics, regenerate with a different style
- "Switch model" — generate the same song with a different model
- "Write another" — start a new song from scratch
- Visit [tunee.ai](https://www.tunee.ai) to view and manage all your creations

Fill {title} from the JSON title field; {url} from the JSON url field; {model name} and {prompt} from the values used in the script call. For multiple results, number each link: 1. [{title}]({url}).

Insufficient Credits

Case A — Credits are zero:

Your Tunee credits are all used up.
Your lyrics are saved — top up and reply "continue" to pick up where you left off.
Top up here → https://www.tunee.ai/en/home/ai-music

Case B — Credits exist but not enough for this generation:

You have {remaining} credits left, but this generation requires {required}.
Your lyrics are saved — top up and reply "continue" to pick up where you left off.
Top up here → https://www.tunee.ai/en/home/ai-music

When the user replies "continue" (or the equivalent in their language): re-run credits.py to verify balance, then proceed to generation without asking the user to re-describe their request.

Error Messages by Code

ScenarioReply
401 — Key invalid / not found"Your API Key doesn't seem right — please check it was copied in full, or get a new one at tunee.ai"
403 — Key revoked"This API Key has been revoked. Please generate a new one at tunee.ai and update your Skill config"
402 — Insufficient creditsSee Insufficient Credits section above
429 — Rate limited"Too many requests — please wait about 30 seconds and try again"
500 — Generation failed"Something went wrong on our end. No credits were deducted — want to try again?"
504 — Generation timeout"Generation timed out. No credits were deducted — want to try again?"
Network error"Can't reach Tunee right now — please check your connection and retry"

Lyrics Writing Guide

Before lyric-based generation, the AI should follow lyrics-guide.md to produce high-quality lyrics.

Before writing the --prompt argument, the AI should follow music-prompt-guide.md to construct an effective style description.

Delivering Results

Script stdout on success is a single-line JSON array:

[{"id": "itemXXX", "url": "https://...", "title": "Song Title"}, ...]

Parse it and reply using the Generation Success template in the User-Facing Messages section. Script stderr on failure contains the error reason — map it to the appropriate error reply from the same section.

Troubleshooting & API Summary

Full API paths, endpoints, and quotas are documented at Tunee docs. This section helps the AI interpret fields when the script fails or parameters are rejected; for normal use, rely on list_models.py and generate.py.

Generation Request Fields (Conceptual)

FieldRequiredDescription
titleYesSong or track title
promptYesStyle, mood, or scene description
modelYesModel ID; must match an id from list_models.py stdout in this conversation
lyricsFor lyric modeFull lyrics text; omit for instrumental

generate.py validates model capabilities: when --lyrics is non-empty, the model must support bizType=Song (vocals); for instrumental, it must support bizType=Instrumental. If not, the script errors and suggests compatible models.

Model List and Capabilities (list_models.py Data Source)

The script queries the platform model list and only shows entries with musicType=Text-to-Music (Music-to-Music, reference audio, etc. are not yet supported).

Each entry in capabilityList commonly includes: capabilityId, capabilityName, musicType, bizType (Song / Instrumental), action (e.g. generate). If platform docs differ, follow the platform.

HTTP and Business Status Codes

HTTPMeaning
200Success
400Parameter error
401Authentication failed
429Rate limited
5xxServer error

The status field in the response JSON: e.g. 200000 = success, 400002 = invalid API Key. Add new codes in TuneeStatus in scripts/utils/api_util.py as needed.

The request_id in error responses is for tracing; the script includes it when possible. Users can provide it when reporting issues.

Quotas and Rate Limits

Quotas and limits follow platform plans and documentation. Avoid bursts of requests in a short time.

适合场景

01

生成背景音乐

02

生成歌曲或旋律

03

视频和播客配乐

04

社媒内容音频素材

能力概览

能力 1

调用音乐生成模型

能力 2

支持文本到音乐或歌曲生成

能力 3

提供 CLI 示例和使用场景

能力 4

适合音频内容工作流

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.93%
按下载量换算3,500

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills