Token导航 LogoToken导航TokenDH.com
运维执行命令clawhub未标认证来源可访问clear审计提醒

stepace-experimental阶梯实验

Agent Skill

stepace-experimental 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,664

周安装

111

GitHub Stars

公开资料未说明

下载量

888
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install stepace-experimental

简介

在 Android 设备上通过 StepAce Experimental 应用生成 AI 音乐。

  • 适用于移动端音乐创作与音效制作辅助场景。
  • 根据描述生成旋律、节奏或完整配乐片段。stepace-experimental 属于运维类 Skill,可作为该场景下的辅助能力补充。
  • 依赖手机端 App 运行,需保持设备连接与电量充足。
  • 注意实验性质功能可能存在稳定性风险,建议备份原始数据。

SKILL.md

name
stepace-experimental
description
Generate AI music on your Android phone via the StepAce Experimental app. Use this skill whenever the user asks to generate, create, make, compose, or queue a song, track, beat, melody, or any piece of music — even if phrased casually like "make me a vibe", "create something chill", or "schedule a song for tonight". Handles both immediate generation and scheduled (future) generation, with optional BPM, key, duration, lyrics, and time signature control. Requires a StepAce Experimental pairing token (setup guide included).
homepage
https://cronicaia.com
metadata
{"openclaw": {"emoji": "🎵", "requires": {"env": ["STEPACE_TOKEN"]}}}

StepAce Experimental — AI Music Generation

Queue or schedule AI-generated songs directly to your Android phone through the StepAce Experimental app.


🚀 Setup (first time only)

Before using this skill, you need to connect it to your StepAce Experimental app:

  1. Open the StepAce Experimental app on your Android phone
  2. Go to Settings (bottom tab)
  3. Tap OpenClaw Bridge
  4. Tap Connect — the app generates a unique pairing token
  5. Copy the pairing token shown on screen
  6. Tell your agent:

> *"Set my StepAce token to <paste token here>"*

Your agent saves it as STEPACE_TOKEN. You only need to do this once — unless you regenerate your token in the app.


Token management

  • *"Set my StepAce token to XYZ"* → save as STEPACE_TOKEN
  • *"Reset my token"* → remind user: StepAce Experimental app → Settings → OpenClaw Bridge → Connect → paste new token
  • *"What's my token?"* → confirm it's set, show only first 4 + last 4 chars (e.g. T2L_****IP0)
  • If STEPACE_TOKEN is not set when the user asks to generate music → walk them through setup before proceeding

Generation types

Immediate — enqueue_generation

Queues a song to generate right now on the phone. Use this by default.

Scheduled — schedule_generation

Queues a song to generate at a specific future time. Use this when the user gives a time or date ("tonight at 2am", "schedule for tomorrow morning", etc.). Requires scheduledAt as a Unix timestamp in milliseconds.


Parameters exposed to the user

Only caption is required. All others are optional — omit them entirely from the payload if not specified (do not send null or empty values).

ParameterTypeNotes
captionstringRequired. Describe style, mood, genre, instruments. Be descriptive.
lyricsstringSong lyrics. Ignored if instrumental: true.
instrumentalbooleantrue = no vocals. If true, do NOT send lyrics. If user provides lyrics, set false.
bpmintegerTempo, 20–300. Infer from genre if confident (e.g. techno → 132, lo-fi → 85).
durationintegerLength in seconds, 5–300. Defaults to ~30s if omitted.
keyscalestringKey and scale, e.g. "C minor", "F# major", "A dorian".
timesignaturestring"4/4" or "3/4" only.
vocal_languagestringBCP-47 tag for vocals. e.g. "en", "es", "pt", "fr", "ja", "ko". Only relevant when instrumental: false. Defaults to "en".

Instrumental logic

  • User provides lyrics → instrumental: false, include lyrics
  • User says "no vocals" / "instrumental" / "beat" → instrumental: true, omit lyrics
  • User provides neither → omit both instrumental and lyrics (let the app decide)

API call

Endpoint: POST https://openclaw-bridge.torrico-villanueva-cesar-kadir.workers.dev/openclaw/queue Header: Content-Type: application/json

Preferred transport

Use curl from the shell as the default/preferred way to call the bridge. Do not prefer Python urllib/generic HTTP clients when curl is available, because the bridge/CDN may treat those clients differently and reject them even when the same payload works via curl.

Immediate generation

Preferred example using curl:

source /home/deploy/.stepace-env

curl -X POST \
  'https://openclaw-bridge.torrico-villanueva-cesar-kadir.workers.dev/openclaw/queue' \
  -H 'Content-Type: application/json' \
  --data '{
    "pairingToken": "'"$STEPACE_TOKEN"'",
    "type": "enqueue_generation",
    "payload": {
      "requestJson": {
        "caption": "cinematic synthwave with huge drums",
        "instrumental": true,
        "bpm": 120,
        "duration": 30
      }
    }
  }'

Equivalent JSON payload:

{
  "pairingToken": "{STEPACE_TOKEN}",
  "type": "enqueue_generation",
  "payload": {
    "requestJson": {
      "caption": "cinematic synthwave with huge drums",
      "instrumental": true,
      "bpm": 120,
      "duration": 30
    }
  }
}

Scheduled generation

Preferred example using curl:

source /home/deploy/.stepace-env

curl -X POST \
  'https://openclaw-bridge.torrico-villanueva-cesar-kadir.workers.dev/openclaw/queue' \
  -H 'Content-Type: application/json' \
  --data '{
    "pairingToken": "'"$STEPACE_TOKEN"'",
    "type": "schedule_generation",
    "payload": {
      "requestJson": {
        "caption": "dark techno with metallic percussion",
        "instrumental": true
      },
      "scheduledAt": 1775120400000
    }
  }'

Equivalent JSON payload:

{
  "pairingToken": "{STEPACE_TOKEN}",
  "type": "schedule_generation",
  "payload": {
    "requestJson": {
      "caption": "dark techno with metallic percussion",
      "instrumental": true
    },
    "scheduledAt": 1775120400000
  }
}

scheduledAt must be a Unix timestamp in milliseconds (13 digits). Convert from the user's stated time using their local timezone if known, otherwise ask.

With lyrics

{
  "pairingToken": "{STEPACE_TOKEN}",
  "type": "enqueue_generation",
  "payload": {
    "requestJson": {
      "caption": "fast energetic electronic anthem with punchy drums",
      "lyrics": "We light the night, we never slow, hearts on fire, we steal the show.",
      "vocal_language": "en",
      "instrumental": false,
      "duration": 30,
      "bpm": 160
    }
  }
}

Success response

{
  "jobRef": "ref_abc123...",
  "status": "queued",
  "type": "enqueue_generation"
}

Reply to the user with a message like:

🎵 Song queued on StepAce Experimental!
Caption: <caption>
📅 Scheduled for: <human-readable time>   ← only if scheduled
Settings: 160 BPM · C minor · 4/4 · 30s  ← only mention fields that were set
Job ref: ref_abc123...

Your phone will notify you when it's done 🎶

Error handling

ErrorWhat to do
Missing / invalid pairingTokenToken may have expired. Ask user: StepAce Experimental app → Settings → OpenClaw Bridge → Connect to regenerate, then update the token.
Missing captionAsk the user to describe the music they want.
Missing scheduledAt for schedule_generationAsk the user for a specific date/time.
Network errorTell the user the bridge couldn't be reached. Ask them to check their phone is online and the app has been opened at least once.

Natural language examples

  • *"Make me a dark synth-wave track at 130 BPM"* → enqueue_generation, instrumental: true, bpm: 130
  • *"Generate a cumbia song with these lyrics: [...]"* → enqueue_generation, instrumental: false, vocal_language: "es"
  • *"Queue a lo-fi beat, 85 BPM, 60 seconds"* → enqueue_generation, instrumental: true, bpm: 85, duration: 60
  • *"Schedule a techno track for 2am tonight"* → schedule_generation, resolve scheduledAt from current time + user's timezone
  • *"Make a waltz in A minor"* → timesignature: "3/4", keyscale: "A minor"
  • *"Something chill in Spanish"* → vocal_language: "es", infer a relaxed caption
  • *"Song about the ocean, no lyrics, key of D minor, 45 seconds"* → instrumental: true, keyscale: "D minor", duration: 45

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.45%
按下载量换算794

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install stepace-experimental 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills