Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

udioudio 搜索

Agent Skill

udio 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,981

周安装

480

GitHub Stars

公开资料未说明

下载量

3,878
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install udio

简介

通过 API 包装器或浏览器自动化,使用 Udio 生成 AI 音乐,并提供即时工程和歌曲扩展。

SKILL.md

name
Udio
slug
udio
version
1.0.0
homepage
https://clawic.com/skills/udio
description
Generate AI music with Udio via API wrappers or browser automation, with prompt engineering and song extensions.
metadata
{"clawdbot":{"emoji":"🎵","requires":{"bins":["python3"],"env":["UDIO_AUTH_TOKEN"]},"primaryEnv":"UDIO_AUTH_TOKEN","os":["linux","darwin","win32"]}}

Setup

On first use, read setup.md for integration guidelines.

When to Use

User wants to generate music with Udio. Agent can use API wrappers for programmatic generation, browser automation for direct platform interaction, or guide prompt engineering.

Architecture

Memory at ~/udio/. See memory-template.md for structure.

~/udio/
├── [memory.md]       # Created on first use: preferences, auth token location
├── [projects/]       # Per-project song tracking
└── [songs/]          # Downloaded audio files

Quick Reference

TopicFile
Setupsetup.md
Memorymemory-template.md
API usageapi.md
Browser automationbrowser.md
Prompt craftingprompts.md
Style tagsstyles.md
Lyrics guidelyrics.md

Core Rules

1. Choose the Right Approach

SituationMethod
Programmatic generation, batch jobsAPI wrapper
User wants to browse and listenBrowser automation
Just need prompt helpPrompt engineering only

2. API Requires Auth Token

Udio has no official public API. Community wrappers use the internal API:

  • Token: sb-api-auth-token cookie from udio.com
  • Token expires: refresh if 401 errors occur
  • See api.md for setup instructions

3. Structure Prompts in Layers

[genre] [subgenre] [mood] [instruments] [voice] [era/influence]

Example: "indie folk melancholic acoustic guitar female vocals 90s"

4. Extend Songs Strategically

Udio generates ~30 second clips. Build full songs:

  1. Create initial clip with strong hook
  2. Extend 2-3 times with consistent style
  3. Add outro with ending indicators
  4. Target 2-4 minutes total

5. Save Successful Seeds

Same prompt + different seed = different result. When close to desired output:

  • Note the seed number
  • Try adjacent seeds (seed +/- 1)
  • Document working combinations

API Integration

Python Wrapper (Recommended)

pip install udio_wrapper
from udio_wrapper import UdioWrapper

# Initialize with auth token
udio = UdioWrapper("your-sb-api-auth-token")

# Create a song
song = udio.create_song(
    prompt="electronic ambient downtempo dreamy synth pads",
    seed=-1,  # -1 for random
    custom_lyrics="Optional lyrics here"
)

# Extend the song
extended = udio.extend(
    prompt="add drums and bass, building energy",
    audio_conditioning_path=song['song_path'],
    audio_conditioning_song_id=song['id']
)

# Add outro
outro = udio.add_outro(
    prompt="gentle fade out, conclusion",
    audio_conditioning_path=extended['song_path'],
    audio_conditioning_song_id=extended['id']
)

TypeScript/Node Wrapper

npm install udio-wrapper
import { createUdioWrapper } from 'udio-wrapper';

const client = await createUdioWrapper('your-auth-token');

const song = await client.createSong({
    prompt: 'indie rock upbeat energetic guitar',
    seed: 12345,
    customLyrics: 'Optional lyrics'
});

const completed = await client.waitForCompletion(song.id);
console.log('Download URL:', completed.url);

Complete Song Sequence

# Generate intro + extensions + outro in one call
complete = udio.create_complete_song(
    short_prompt="peaceful acoustic guitar melody",
    extend_prompts=[
        "add piano and soft strings",
        "introduce light percussion, building"
    ],
    outro_prompt="gentle resolution, fading",
    num_extensions=2,
    custom_lyrics_short="Opening verse...",
    custom_lyrics_extend=["Middle section...", "Bridge..."],
    custom_lyrics_outro="Final words..."
)

Browser Automation

When API isn't available or user prefers visual interaction:

Navigate to Udio

browser action=open targetUrl="https://www.udio.com" profile=openclaw

Get Auth Token (for API use)

  1. Open DevTools: Cmd+Option+I (Mac) or F12 (Windows)
  2. Go to Application tab > Cookies > udio.com
  3. Find sb-api-auth-token
  4. Copy the value

Generate Music via UI

  1. Navigate to create page
  2. Enter prompt in text field
  3. Adjust settings (instrumental, duration)
  4. Click generate
  5. Wait for completion (~30-60 seconds)
  6. Download or extend

Prompt Patterns

By Genre

GenrePrompt Pattern
Electronicelectronic [subgenre] [mood] synth [texture] [era]
Rock[sub]rock [energy] [guitars] [drums] [vocals] [decade]
Hip Hophip hop [subgenre] [beat style] [sample type] [era]
Jazzjazz [subgenre] [instruments] [setting] [mood]
Classicalclassical [period] [ensemble] [mood] [dynamics]

Mood Combinations

EnergyMood Stack
High + Positiveeuphoric energetic uplifting triumphant
Low + Positivepeaceful calm serene contemplative
High + Negativeaggressive chaotic intense dark
Low + Negativemelancholic somber mournful introspective
Complexbittersweet nostalgic hopeful yearning

Voice Control

# Female vocals
female vocals ethereal soprano breathy

# Male vocals  
male vocals deep baritone raspy emotional

# Choir
choir harmonies gospel powerful anthemic

# No vocals
instrumental only no singing no vocals

Common Traps

TrapProblemSolution
Vague prompts"good music" = randomBe specific: genre, mood, instruments
Contradictions"upbeat sad" confuses modelPick consistent descriptors
Token expiry401 errorsRe-extract from browser cookies
Too many keywords20+ terms dilute focusUse 5-10 key descriptors
No seed trackingCan't reproduce good resultsLog seeds for successful generations
Abrupt extensionsJarring transitionsMatch style/key in extend prompts

Extension Strategy

Building Full Tracks

PhaseDurationPrompt Additions
Intro0-30s"intro, building, atmospheric"
Verse/Main30s-2mOriginal prompt
Bridge2m-2:30"variation, bridge, key change"
OutroFinal 30s"outro, ending, fade, resolution"

Ending Indicators

Add to final extend/outro:

  • "fade out" / "fading"
  • "song ending" / "conclusion"
  • "final chorus" / "last verse"
  • "resolution" / "outro"

Data Storage

This skill creates ~/udio/ on first use:

  • memory file — Preferences, successful prompts, token location reference
  • projects folder — Per-project tracking with seeds and URLs
  • songs folder — Downloaded audio files (optional)

All data stays local. Auth tokens should be stored in system keychain, not plain text.

Scope

This skill does:

  • Generate music via community API wrappers (requires auth token)
  • Navigate udio.com with browser automation (user must be logged in)
  • Craft optimized prompts for Udio's model (no token needed)
  • Track projects, seeds, and successful patterns locally
  • Download generated audio files to ~/udio/songs/

This skill does NOT:

  • Store auth tokens in plain text (must use keychain/credential manager)
  • Bypass Udio's rate limits or terms of service
  • Access files outside ~/udio/
  • Auto-extract tokens without user guidance

Security Notes

Auth Token: The sb-api-auth-token cookie grants API access to your Udio account. Handle it like a password:

  • Store in system keychain, never in plain text
  • Token expires after ~7 days of inactivity
  • Re-extract if you get 401 errors

Community Wrappers: The Python and Node wrappers are community-maintained (not official Udio software). Review their source code before installing:

  • Python: github.com/flowese/UdioWrapper
  • Node: github.com/josephgodwinkimani/udio-wrapper

Prompt-Only Mode: If you prefer not to use API or share tokens, this skill works in prompt-only mode — just help with crafting effective prompts without any API calls.

External Endpoints

EndpointData SentPurpose
api.udio.comPrompts, lyricsMusic generation (via wrappers)
udio.comBrowser sessionDirect platform access

Auth token is sent with API requests. No other data leaves the machine.

Trust

By using this skill with API wrappers, prompts and lyrics are sent to Udio's servers for music generation. Only use if you trust Udio with your creative content. Review Udio's terms of service at udio.com/terms.

Related Skills

Install with clawhub install <slug> if user confirms:

  • audio — Audio processing and editing
  • video — Combine music with video content
  • ffmpeg — Audio format conversion

Feedback

  • If useful: clawhub star udio
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

91.61%
按下载量换算3,553

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills