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

acedatacloud-suno-musicacedatacloud 苏诺音乐

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

4,213

周安装

165

GitHub Stars

公开资料未说明

下载量

1,307
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install acedatacloud-suno-music

简介

acedatacloud-suno-music 用于 Suno AI 音乐生成。

  • 适合创建歌曲、生成歌词和提取音频特征。acedatacloud-suno-music 属于音频生成类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,需结合来源仓库和 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否涉及音乐版权。
  • 适用于音乐创作、歌词写作和音频内容生产。

SKILL.md

name
suno-music
description
Generate AI music with Suno via AceDataCloud API. Use when creating songs from text prompts, generating lyrics, extending tracks, creating covers, extracting vocals, managing voice personas, or any music generation task. Supports text-to-music, custom styles, multi-format output (MP3, WAV, MIDI, MP4), and vocal separation.
license
Apache-2.0
metadata
author
acedatacloud
version
1.0
compatibility
Requires ACEDATACLOUD_API_TOKEN environment variable. Optionally pair with mcp-suno for tool-use.

Suno Music Generation

Generate AI-powered music through AceDataCloud's Suno API.

Authentication

export ACEDATACLOUD_API_TOKEN="your-token-here"
# Get your token at https://platform.acedata.cloud

Quick Start — Generate a Song

curl -X POST https://api.acedata.cloud/suno/audios \
  -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"prompt": "a happy pop song about coding", "model": "chirp-v4-5", "wait": true}'

Available Models

ModelBest For
chirp-v5Latest, highest quality
chirp-v4-5-plusEnhanced v4.5
chirp-v4-5Good balance of quality and speed
chirp-v4Fast, reliable
chirp-v3-5Legacy, stable

Core Workflows

1. Quick Generation (Inspiration Mode)

Generate a song from a text description. Suno creates lyrics, style, and music automatically.

POST /suno/audios
{
  "prompt": "an upbeat electronic track about the future of AI",
  "model": "chirp-v4-5",
  "instrumental": false
}

2. Custom Generation (Full Control)

Provide your own lyrics, title, and style for precise control.

POST /suno/audios
{
  "action": "custom",
  "lyric": "[Verse]\
Code is poetry in motion\
[Chorus]\
We build the future tonight",
  "title": "Digital Dreams",
  "style": "Synthwave, Electronic, Dreamy",
  "model": "chirp-v4-5",
  "vocal_gender": "f"
}

3. Extend a Song

Continue an existing song from a specific timestamp with new lyrics.

POST /suno/audios
{
  "action": "extend",
  "audio_id": "existing-audio-id",
  "lyric": "[Bridge]\
New section lyrics here",
  "continue_at": 120.0,
  "style": "Same style as original"
}

4. Cover / Remix

Create a new version of an existing song in a different style.

POST /suno/audios
{
  "action": "cover",
  "audio_id": "existing-audio-id",
  "style": "Jazz, Acoustic, Mellow"
}

5. Full Song Creation Workflow

For best results follow this multi-step workflow:

  1. Generate lyricsPOST /suno/lyrics with a topic/prompt
  2. Optimize stylePOST /suno/style to refine style description
  3. Generate musicPOST /suno/audios with custom action, lyrics + style
  4. Poll taskPOST /suno/tasks with task_id until status is complete
  5. Optional: Extend — Use extend action to add more sections
  6. Optional: Concat — Use concat action to merge extended segments
  7. Optional: Convert — Get WAV (/suno/wav), MIDI (/suno/midi), or MP4 (/suno/mp4)

Auxiliary Endpoints

EndpointMethodPurpose
/suno/lyricsPOSTGenerate structured lyrics from a prompt
/suno/stylePOSTOptimize/refine a style description
/suno/mashup-lyricsPOSTCombine two sets of lyrics
/suno/mp4POSTGet MP4 video version of a song
/suno/wavPOSTConvert to lossless WAV format
/suno/midiPOSTExtract MIDI data for DAW editing
/suno/voxPOSTExtract vocal track (stem separation)
/suno/timingPOSTGet word-level timing/subtitles
/suno/personaPOSTSave a vocal style as a reusable persona
/suno/uploadPOSTUpload external audio for extend/cover
/suno/tasksPOSTQuery task status and results

Task Polling

All generation is async. Either use "wait": true for synchronous mode, or poll:

POST /suno/tasks
{"task_id": "your-task-id"}

Poll every 3–5 seconds until status is "complete".

Lyrics Format

Use section markers in square brackets:

[Verse 1]
Your verse lyrics here

[Chorus]
Catchy chorus lyrics

[Bridge]
Bridge section

[Outro]
Ending lyrics

MCP Server Integration

For tool-use with Claude/Copilot, install the MCP server:

pip install mcp-suno

Or use the hosted endpoint: https://suno.mcp.acedata.cloud/mcp

Key tools: suno_generate_music, suno_generate_custom_music, suno_extend_music, suno_cover_music, suno_generate_lyrics, suno_optimize_style

Gotchas

  • All generation is async — always poll /suno/tasks or use "wait": true
  • Lyrics max ~3000 characters. For longer songs, use the extend workflow
  • Style tags are descriptive phrases, not enum values (e.g., "Synthwave, Electronic, Dreamy")
  • vocal_gender ("f"/"m") is only supported on v4.5+ models
  • The concat action merges extended song segments — requires audio_id of the extended track
  • persona requires an existing audio_id to extract the vocal reference from
  • Upload external audio via /suno/upload before using it with extend/cover

适合场景

01

生成背景音乐

02

生成歌曲或旋律

03

视频和播客配乐

04

社媒内容音频素材

能力概览

能力 1

调用音乐生成模型

能力 2

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

能力 3

提供 CLI 示例和使用场景

能力 4

适合音频内容工作流

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

平台分布

OpenClaw

85.86%
按下载量换算1,122

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills