Token导航 LogoToken导航TokenDH.com
音频生成需要联网clawhub未标认证来源可访问clear审计提醒

ima-ai-music-song-voice-generatorima ai 音乐歌曲语音生成器

Agent Skill

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

总安装

5,742

周安装

250

GitHub Stars

公开资料未说明

下载量

1,890
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ima-ai-music-song-voice-generator

简介

ima-ai-music-song-voice-generator 用于音乐与语音生成,支持歌曲与 BGM 制作。

  • 集成 Suno sonic v5 与豆宝系列模型,适用于配乐与配音场景。
  • 通过文本描述触发,输出带歌词的音乐或纯音频。
  • 建议确认音频版权及是否可用于商业发布。
  • 可结合来源仓库和 README 继续核验输出格式与时长限制。

SKILL.md

name
IMA AI Music & Voice Generator — Song, BGM, Background Soundtrack, Jingle, Lyrics, Beat Maker, Voiceover, Narration & Composition
version
1.0.0
category
file-generation
author
IMA Studio (imastudio.com)
keywords
imastudio, AI music generator, music generator, AI song generator, AI BGM generator, background music, jingle, soundtrack, lyrics, beat maker, voiceover, narration, AI voice generator, AI composition, text to music
argument-hint
[music description or lyrics]
description
>
requires
env
runtime
packages
primaryCredential
IMA_API_KEY
metadata
openclaw
primaryEnv
IMA_API_KEY
homepage
https://imastudio.com
requires
bins
env
persistence
readWrite
instructionScope
crossSkillReadOptional

IMA AI Music & Voice Generator

⚠️ MANDATORY: You MUST read("SKILL-DETAIL.md") (full file — do NOT pass limit parameter) before your first music generation call. It contains the full API payload structure, Suno parameters, error translation tables, reflection mechanism, and UX protocol that this summary omits. Skipping it causes parameter errors and poor user experience.

Model Reference (CRITICAL)

Use exact model_id. Do NOT infer from friendly names.

Namemodel_idCostBest For
Suno sonic v5 🔥sonic25 ptsFull songs, lyrics, vocals, jingles, custom composition
DouBao BGMGenBGM30 ptsBackground music, soundtracks, ambient loops
DouBao SongGenSong30 ptsSong generation, vocal compositions

Model Selection

User intentModelWhy
Song with lyrics/vocalsSuno sonicFull custom mode: lyrics, vocal_gender, tags
背景音乐 / BGM / ambient / loopDouBao GenBGMBackground soundtrack specialist
Simple song / 歌曲DouBao GenSongQuick song generation
Jingle / ad music / 广告配乐Suno sonicGenre tags + style control
Beat / instrumental / 纯音乐Suno sonic + make_instrumental=trueBest instrumental quality
Voiceover / narration / 配音See note belowThis skill focuses on music; for TTS use ima-tts-ai

Suno is the default — most versatile AI music generator with full composition control.

Suno Key Parameters

ParameterDescriptionExample
custom_modeEnable lyrics/vocals/tags controltrue
vocal_gendermale / female / mixed"female"
lyricsCustom lyrics text`"[Verse 1]\
Hello world..."`
make_instrumentalForce instrumental, no vocalstrue
tagsGenre/style tags"lo-fi hip hop, chill"
negative_tagsExclude styles"heavy metal, screaming"
titleSong title"Summer Breeze"

Prompt tips for AI music composition:

  • Genre: "lo-fi hip hop", "orchestral cinematic", "upbeat pop", "jazz"
  • Tempo: "80 BPM", "fast tempo", "slow ballad"
  • Mood: "happy and energetic", "melancholic", "tense and dramatic"

Knowledge Base (if ima-knowledge-ai installed)

Read before generating: workflow-design.md (video+music coordination), model-selection.md (cost/quality).

Script Usage

# AI music generator — song with Suno (AI song generator, jingle, composition)
python3 {baseDir}/scripts/ima_voice_create.py \
  --api-key $IMA_API_KEY --task-type text_to_music \
  --model-id sonic --prompt "upbeat corporate jingle, 30 seconds" \
  --user-id {user_id} --output-json

# AI BGM generator — background soundtrack
python3 {baseDir}/scripts/ima_voice_create.py \
  --api-key $IMA_API_KEY --task-type text_to_music \
  --model-id GenBGM --prompt "calm ambient background music" \
  --user-id {user_id} --output-json

# List available music models
python3 {baseDir}/scripts/ima_voice_create.py \
  --api-key $IMA_API_KEY --task-type text_to_music --list-models

Sending Results to User

# ✅ CORRECT: Use remote URL for inline audio playback
message(action="send", media=audio_url, caption="✅ 音乐生成成功!\
• 模型:[Name]\
• 耗时:[X]s\
• 积分:[N pts]")

# Then send link for sharing
message(action="send", message=f"🔗 音频链接:\
{audio_url}")

UX Protocol (Brief)

  1. Acknowledge: Short reply ("好的!帮你生成音乐 🎵")
  2. Pre-gen: Model, time, cost via message tool
  3. Progress: Every 10-15s: "⏳ [P]%" (cap 95%)
  4. Success: Send media=url + link text
  5. Failure: Natural language + suggest alternatives
  6. Done: No further action

Generation times: DouBao BGM/Song: 10-25s · Suno: 20-45s Never expose: script names, API endpoints, attribute_id, technical params.

User Preferences

Storage: ~/.openclaw/memory/ima_prefs.json

  • Save on explicit: "用Suno" / "默认用BGM" / "always use Suno"
  • Clear on: "推荐一个" / "自动选择"
  • Never save auto-selected models

Core Flow

  1. GET /open/v1/product/list?category=text_to_musicattribute_id, credit, form_config
  2. POST /open/v1/tasks/createtask_id
  3. POST /open/v1/tasks/detail → poll every 5s until resource_status==1

MANDATORY: Always query product list first. Missing attribute_id → task fails. Suno note: model_version inside parameters.parameters must be sonic-v5, outer model_version is sonic.

Environment

Base URL: https://api.imastudio.com Headers: Authorization: Bearer $IMA_API_KEY · x-app-source: ima_skills · x_app_language: en


⚠️ REMINDER: read("SKILL-DETAIL.md") (full file, no limit) is required before generating music. This summary covers model selection and routing — SKILL-DETAIL.md has complete API payloads, Suno custom_mode details, error handling, reflection mechanism, and UX protocol needed for correct execution.

适合场景

01

生成背景音乐

02

生成歌曲或旋律

03

视频和播客配乐

04

社媒内容音频素材

能力概览

能力 1

调用音乐生成模型

能力 2

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

能力 3

提供 CLI 示例和使用场景

能力 4

适合音频内容工作流

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

平台分布

OpenClaw

70.7%
按下载量换算1,336

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills