# Send Eachlabs Music to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "eachlabs-music",
    "name": "Eachlabs Music",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/eftalyurtseven/eachlabs-music",
    "canonicalUrl": "https://clawhub.ai/eftalyurtseven/eachlabs-music",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/eachlabs-music",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eachlabs-music",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/MODELS.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/eachlabs-music"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/eachlabs-music",
    "downloadUrl": "https://openagent3.xyz/downloads/eachlabs-music",
    "agentUrl": "https://openagent3.xyz/skills/eachlabs-music/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eachlabs-music/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eachlabs-music/agent.md"
  }
}
```
## Documentation

### EachLabs Music

Generate songs, instrumentals, lyrics, podcasts, and more using Mureka AI models via the EachLabs Predictions API.

### Authentication

Header: X-API-Key: <your-api-key>

Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai.

### Mureka Models

CapabilitySlugDescriptionGenerate Songmureka-generate-songCreate a full song with vocals from a promptGenerate Instrumentalmureka-generate-instrumentalCreate instrumental tracksGenerate Lyricsmureka-generate-lyricsGenerate lyrics from a promptExtend Lyricsmureka-extend-lyricsContinue/extend existing lyricsExtend Songmureka-extend-songContinue an existing songCreate Speechmureka-create-speechGenerate speech audioCreate Podcastmureka-create-podcastGenerate multi-speaker podcastRecognize Songmureka-recognize-songIdentify a song from audioDescribe Songmureka-describe-songAnalyze and describe a songStem Songmureka-stem-songSeparate audio into stemsUpload Filemureka-upload-fileUpload audio for other operations

### Minimax Music

CapabilitySlugDescriptionMusic v2minimax-music-v2Latest Minimax music generationMusic v1.5minimax-music-v1-5Stable Minimax music generation

### Prediction Flow

Check model GET https://api.eachlabs.ai/v1/model?slug=<slug> — validates the model exists and returns the request_schema with exact input parameters. Always do this before creating a prediction to ensure correct inputs.
POST https://api.eachlabs.ai/v1/prediction with model slug, version "0.0.1", and input matching the schema
Poll GET https://api.eachlabs.ai/v1/prediction/{id} until status is "success" or "failed"
Extract the output from the response

### Generate a Song

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-generate-song",
    "version": "0.0.1",
    "input": {
      "prompt": "An upbeat indie pop song about summer road trips with catchy chorus",
      "duration": 120
    }
  }'

### Generate Instrumental

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-generate-instrumental",
    "version": "0.0.1",
    "input": {
      "prompt": "Lo-fi hip hop beat with jazzy piano chords and vinyl crackle, relaxing study music"
    }
  }'

### Generate Lyrics

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-generate-lyrics",
    "version": "0.0.1",
    "input": {
      "prompt": "Write lyrics for a heartfelt country ballad about coming home"
    }
  }'

### Create a Podcast

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-create-podcast",
    "version": "0.0.1",
    "input": {
      "prompt": "A 5-minute podcast discussion about the future of AI in music production",
      "speakers": ["Luna", "Jake"]
    }
  }'

### Extend an Existing Song

First upload the song, then extend it:

# Step 1: Upload the audio file
curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-upload-file",
    "version": "0.0.1",
    "input": {
      "file": "https://example.com/my-song.mp3",
      "purpose": "audio"
    }
  }'

# Step 2: Use the upload ID to extend the song
curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-extend-song",
    "version": "0.0.1",
    "input": {
      "upload_audio_id": "<upload-id-from-step-1>",
      "prompt": "Continue with an energetic guitar solo bridge"
    }
  }'

### Separate Audio Stems

curl -X POST https://api.eachlabs.ai/v1/prediction \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $EACHLABS_API_KEY" \\
  -d '{
    "model": "mureka-stem-song",
    "version": "0.0.1",
    "input": {
      "url": "https://example.com/song.mp3"
    }
  }'

### Prompt Tips

Specify genre: "indie pop", "lo-fi hip hop", "classical orchestral", "EDM"
Include mood: "upbeat", "melancholic", "energetic", "relaxing"
Mention instruments: "acoustic guitar", "piano", "synthesizer", "drums"
Describe tempo: "slow ballad", "fast-paced", "medium tempo groove"
For lyrics, mention theme and structure: "verse-chorus-verse about..."

### Parameter Reference

See references/MODELS.md for complete parameter details for each model.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: eftalyurtseven
- Version: 0.1.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/eachlabs-music)
- [Send to Agent page](https://openagent3.xyz/skills/eachlabs-music/agent)
- [JSON manifest](https://openagent3.xyz/skills/eachlabs-music/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/eachlabs-music/agent.md)
- [Download page](https://openagent3.xyz/downloads/eachlabs-music)