claude-music-analyze

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

An AI audio tool that creates a new version of an existing song while keeping its musical structure and changing its style, genre, or vocal character.

In plain words
What is it for?
Use it to turn a reference recording into another style, such as changing a pop song into a jazz cover.
Why use it?
It makes it easier to explore alternate arrangements without rebuilding the song from the beginning.

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 turn a reference recording into another style, such as changing a pop song into a jazz cover.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agricidaniel/claude-music/claude-music-analyze
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-analyze
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-analyze

README.md
[![agentmods](https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-analyze/github.svg)](https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-analyze)
Your own site
<a href="https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-analyze"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-analyze/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-analyze

Your own site · 80×15
<a href="https://agentmods.dev/skills/agricidaniel/claude-music/claude-music-analyze"><img src="https://agentmods.dev/badge/skills/agricidaniel/claude-music/claude-music-analyze.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 635 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.00044 $0.00635
Opus 5 $0.00022 $0.00318
Sonnet 5 $0.00009 $0.00127
Haiku 4.5 $0.00004 $0.00064

Measured 12d ago against content hash 99a35cbcd3f3, 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-analyze 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-analyze/SKILL.md · 77 lines

What it actually says

claude-music-analyze — Audio Analysis

Quick Analysis (ffprobe)

# Full metadata
ffprobe -v quiet -print_format json -show_format -show_streams input.flac

# Duration only
ffprobe -v quiet -show_entries format=duration -of csv=p=0 input.flac

# Sample rate, channels, codec
ffprobe -v quiet -show_entries stream=sample_rate,channels,codec_name -of csv=p=0 input.flac

Loudness Measurement (LUFS)

ffmpeg -i input.flac -af loudnorm=I=-14:TP=-1:LRA=11:print_format=json -f null - 2>&1 | \
  grep -A 20 '"input_'

Key fields in output:

  • input_i: Integrated loudness (LUFS)
  • input_tp: True peak (dBTP)
  • input_lra: Loudness range (LU)

BPM Detection

Using ffmpeg's ebur128 for rhythm analysis, or for accurate BPM:

# If librosa is available in ~/.video-skill/ venv:
source ~/.video-skill/bin/activate
python3 -c "
import librosa
y, sr = librosa.load('input.flac', sr=None)
tempo, _ = librosa.beat.beat_track(y=y, sr=sr)
print(f'BPM: {tempo[0]:.1f}' if hasattr(tempo, '__len__') else f'BPM: {tempo:.1f}')
"

Key Detection

source ~/.video-skill/bin/activate
python3 -c "
import librosa
import numpy as np
y, sr = librosa.load('input.flac', sr=None)
chroma = librosa.feature.chroma_cqt(y=y, sr=sr)
key_names = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B']
key_idx = np.argmax(np.mean(chroma, axis=1))
print(f'Estimated key: {key_names[key_idx]}')
"

Comprehensive Report

Combine all analyses into a single report:

  1. Run ffprobe for format/codec/duration
  2. Run loudnorm for LUFS measurement
  3. Run librosa for BPM + key (if available)
  4. Present as structured summary
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 · 77 lines · 44 tokens per session scan A 99a35cbcd3f3

Subscribe to this mod's changes

claude-music-analyze is a skill published in the GitHub repository AgriciDaniel/claude-music (51 stars, last pushed 1mo ago), licensed MIT. It adds 44 tokens to every session and 635 once invoked, about $0.0002 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