claude-music-lora

claude-music-lora is a skill for Claude Code from AgriciDaniel/claude-music. It costs 53 tokens per session (729 once invoked), scanned A, original, MIT.

A fine-tuning tool for training small model add-ons called LoRA or LoKr adapters from a few songs, so ACE-Step 1.5 can learn a particular musical style.

In plain words
What is it for?
Use it to train adapters for vocal styles, genres, instrument sounds, or production aesthetics from 3–10 songs, then manage and apply those adapters when generating music.
Why use it?
It lets you reuse a trained style during song generation instead of describing that style from scratch each time.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the claude-music plugin — 12 skills, 1 agent shipped together

Good fit Use it to train adapters for vocal styles, genres, instrument sounds, or production aesthetics from 3–10 songs, then manage and apply those adapters when generating music.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agricidaniel/claude-music/claude-music-lora
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AgriciDaniel/claude-music --skill claude-music-lora
Clone the repo
git clone --depth 1 https://github.com/AgriciDaniel/claude-music

Made for: Claude Code.

Or install claude-music, the plugin that ships this one along with the rest of its 12 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claude-music-lora

README.md
[![agentmods](https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-lora/github.svg)](https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-lora)
Your own site
<a href="https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-lora"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-lora/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for claude-music-lora

Your own site · 80×15
<a href="https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-lora"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-lora.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 729 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00729
Opus 5 $0.00026 $0.00365
Sonnet 5 $0.00011 $0.00146
Haiku 4.5 $0.00005 $0.00073

Measured 12d ago against content hash bfb308814016, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

claude-music-lora scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/claude-music-lora/SKILL.md · 81 lines

How it starts

The opening of the file, as written. The whole thing — 81 lines — stays where its author put it; the contents beside it link to each section on GitHub.

claude-music-lora — LoRA Fine-Tuning

Overview

Train custom LoRA adapters to capture specific vocal styles, genres, instrument sounds, or production aesthetics. Requires 3-10 songs as training data.

Dataset Preparation

  1. Collect 3-10 songs in the target style (WAV/FLAC preferred, MP3 OK)
  2. Place in a directory: ~/Music/lora-datasets/<style_name>/
  3. Songs should be 30-300 seconds each
  4. Consistent style/genre across the dataset
  5. High audio quality (no noise, no clipping)

Training

cd "$(python3 -c "import json; print(json.load(open('$HOME/.claude/skills/claude-music/config.json'))['ace_step_dir'])")"

# LoRA training (standard, ~1 hour on RTX 5070 Ti)
uv run python3 -m acestep.training.train_lora \
  --checkpoint-dir ./checkpoints \
  --model-variant turbo \
  --dataset-dir ~/Music/lora-datasets/my_style/ \
  --output-dir ./lora_output/my_style \
  --rank 16 \
  --learning-rate 1e-4 \
  --steps 1000

# LoKr training (5x faster, ~12 min)
uv run python3 -m acestep.training.train_lora \
  --checkpoint-dir ./checkpoints \
  --model-variant turbo \
  --dataset-dir ~/Music/lora-datasets/my_style/ \
  --output-dir ./lora_output/my_style \
  --method lokr \
  --rank 16 \
  --learning-rate 1e-4 \
  --steps 500

LoRA vs LoKr

Aspect LoRA LoKr
Training time ~1 hour ~12 min
Quality Higher fidelity Good, slightly less detailed
VRAM ~10GB ~8GB
Use case Voice cloning, precise style Genre adaptation, quick experiments

Hyperparameters

Parameter Default Range Notes
Rank (r) 16 4-64 Higher = more capacity, more VRAM
Learning rate 1e-4 1e-5 to 5e-4 Lower for voice cloning
Steps 1000 200-5000 More data = more steps needed
Batch size 1 1-4 Limited by VRAM

Using Trained LoRA

After training, the LoRA is available in ACE-Step's generation pipeline. Refer to ACE-Step documentation at: <ace_step_dir>/docs/en/LoRA_Training_Tutorial.md (see config.json for path)

Read the full file on GitHub · 81 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 81 lines · 53 tokens per session scan A bfb308814016

Subscribe to this mod's changes

claude-music-lora is a skill published in the GitHub repository AgriciDaniel/claude-music (51 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 729 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

acestep-lyrics-transcription

Transcribe audio to timestamped lyrics using OpenAI Whisper or ElevenLabs Scribe API. Outputs LRC, SRT, or JSON with word-level timestamps. Use when users want to transcribe songs, generate LRC files, or extract lyrics with timestamps from audio.

timoncool/ACE-Step-Studio · 62 tokens

acestep-songwriting

Music songwriting guide for ACE-Step. Provides professional knowledge on writing captions, lyrics, choosing BPM/key/duration, and structuring songs. Use this skill when users want to create, write, or plan a song before generating it with ACE-Step.

timoncool/ACE-Step-Studio · 55 tokens

acestep-thumbnail

Generate song cover/thumbnail images using Gemini API. Creates artistic images suitable for music video backgrounds. Use when users want to generate album art, song covers, thumbnails, or background images for MVs.

timoncool/ACE-Step-Studio · 45 tokens

acestep-docs

ACE-Step documentation and troubleshooting. Use when users ask about installing ACE-Step, GPU configuration, model download, Gradio UI usage, API integration, or troubleshooting issues like VRAM problems, CUDA errors, or model loading failures.

timoncool/ACE-Step-Studio · 51 tokens

acestep

Use ACE-Step API to generate music, edit songs, and remix music. Supports text-to-music, lyrics generation, audio continuation, and audio repainting. Use this skill when users mention generating music, creating songs, music production, remix, or audio continuation.

timoncool/ACE-Step-Studio · 57 tokens

acestep-simplemv

Render music videos from audio files and lyrics using Remotion. Accepts audio + LRC/JSON lyrics + title to produce MP4 videos with waveform visualization and synced lyrics display. Use when users mention MV generation, music video rendering, creating video from audio/lyrics, or visualizing songs.

timoncool/ACE-Step-Studio · 65 tokens