WaveeMusic: Skill for Claude Code

.claude/skills/wavee/wavee-playlist-mutations/SKILL.md

wavee-playlist-mutations is a skill for Claude Code from christosk92/WaveeMusic. It costs 51 tokens per session (7,807 once invoked), scanned A, original, MIT.

A technical guide to Wavee's playlist and rootlist editing system, including requests sent to the service, responses received, synchronization, and safeguards against conflicting changes. It documents the exact network formats verified from captured desktop traffic.

In plain words
What is it for?
Use it when changing playlist or rootlist editing, ordering, permissions, synchronization, realtime message routing, network request formats, or the detail page's edit notices.
Why use it?
It helps developers preserve the data formats and synchronization rules that keep playlist edits from being lost or corrupted.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is christosk92/WaveeMusic's own configuration. It tells Claude Code how to work on WaveeMusic itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything WaveeMusic configures →

Reuse

Borrowing it

Nothing to install: this file belongs to christosk92/WaveeMusic. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/christosk92/WaveeMusic/main/.claude/skills/wavee/wavee-playlist-mutations/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/christosk92/WaveeMusic

Made for: Claude Code.

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 wavee-playlist-mutations

README.md
[![agentmods](https://agentmods.dev/badge/skills/christosk92/waveemusic/wavee-playlist-mutations/github.svg)](https://agentmods.dev/skills/christosk92/waveemusic/wavee-playlist-mutations)
Your own site
<a href="https://agentmods.dev/skills/christosk92/waveemusic/wavee-playlist-mutations"><img src="https://agentmods.dev/badge/skills/christosk92/waveemusic/wavee-playlist-mutations/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 wavee-playlist-mutations

Your own site · 80×15
<a href="https://agentmods.dev/skills/christosk92/waveemusic/wavee-playlist-mutations"><img src="https://agentmods.dev/badge/skills/christosk92/waveemusic/wavee-playlist-mutations.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,807 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.00051 $0.07807
Opus 5 $0.00026 $0.03904
Sonnet 5 $0.00010 $0.01561
Haiku 4.5 $0.00005 $0.00781

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

Security

Grade A, and why

wavee-playlist-mutations 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 9d 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.

.claude/skills/wavee/wavee-playlist-mutations/SKILL.md · 360 lines

How it starts

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

Wavee playlist mutations (wire + sync)

The write half of the library: every playlist and rootlist edit Wavee sends, every playlist frame the dealer sends back, and the invariants that keep the two from corrupting each other.

Read this before touching: Backend/Playlists/**, Backend/Mutation.cs, Backend/Sync/LibrarySync.cs (playlist/rootlist/permission arms), Backend/Realtime/DealerRouter.cs, IPlaylistMutationSource (Wavee.Core/Sources/SeamPorts.cs:74), or the detail page's edit/reorder/notice surfaces.

Every wire shape below is desktop-verified against two Fiddler captures + one dealer archive (2026-08-15) and pinned by byte-exact goldens. Design record: docs/plans/wavee/playlist-saz-fable5-handoff.md (read its Errata section first — the original body is wrong on several load-bearing points).

1. Outbound wire contracts

Envelope (PlaylistWireMapper.Build, :214) — POST /playlist/v2/{path}/changes, body = raw ListChanges under a lying Content-Type: application/x-www-form-urlencoded (SpotifyHeaders.PlaylistV2Mutation):

Part Shape Note
ListChanges base_revision, one Delta, want_resulting_revisions=1, want_sync_result=1, nonces=[n] exactly ONE nonce; desktop's is a per-list per-session counter, ours is random
Delta ops[] + info no base_version — the top-level base is the base
ChangeInfo {user, timestamp} only never admin/undo/merge/redo/source
sync-reason header CAk=(9) edit · CAw=(12) create · CAI=(2) lens ADD spotify-apply-lenses: auto on playlist, not rootlist

Ops (ToWireOp :252):

  • ADDattrs{timestamp, item_id} per item; add_first/add_last emitted only when true, else from_index. item_ids are client-minted (SpotifyIds.NewItemId, 8 random bytes) and the server keeps them (verified: A046's 50 ids came back byte-identical on the next GET). added_by is never sent.
  • Keyed REMRem{items_as_key=1, items:[Item{uri, attrs{item_id}}]}, one op per row, all in one Delta. No index at all. Index REM (from,length) is the fallback for rows whose id we never learned — all-or-nothing per batch (PlaylistMutationSource.BuildRemoveOps :176), because mixing shapes in one Delta shifts indices.
  • Keyed MOVMov{items[], add_after_item | add_first | add_last}, fields 1–3 absent. Anchor derivation lives in PlaylistMutationSource.BuildKeyedMove :218: toIndex<=0add_first; >=Countadd_last; else the row at toIndex-1 walking back over rows that are themselves moving (that is what makes a gapped multi-select land as one contiguous run); nothing left → add_first. One op for the whole selection.
  • UPDATE_LISTnew_attributes only. collaborative=false and deleted_by_owner=false travel as values, never also as no_value (the no_value form is parse-side only — it is what the dealer's old_attributes uses).
  • Rootlist ops are positionalMov{from,length,to}, index Rem, index Add. Playlist row ADD carries attrs{ts, public=1}; folder markers never carry public (IsGroupMarker :359).

Read the full file on GitHub · 360 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. 9d ago First seen · 360 lines · 51 tokens per session scan A 2c5e2a92d478

Subscribe to this mod's changes

wavee-playlist-mutations is a skill published in the GitHub repository christosk92/WaveeMusic (51 stars, last pushed 5d ago), licensed MIT. It adds 51 tokens to every session and 7,807 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

generate-code-cs

Generate the code from typespec for C#. Parameter: C# SDK repository root location .

Azure/azure-sdk-for-net · 26 tokens

author-test

Generate a test given sample. Parameters: C# SDK repository root; Package name: one of Azure.AI.Projects, Azure.AI.Projects.Agents or Azure.AI.Extensions.OpenAI; the sample to use as a starting point for the test.

Azure/azure-sdk-for-net · 68 tokens

migrate-xunit-to-xunit-v3

Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks. Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP runner (including projects currently using YTest.MTP.XUnit2), incompatible TFMs, async void tests, string-to-Type attributes, custom Fact/Theory/BeforeAfterTest…

managedcode/dotnet-skills · 149 tokens

wpf

Build and modernize WPF applications on .NET with correct XAML, data binding, commands, threading, styling, and Windows desktop migration decisions. USE FOR: working on WPF UI, MVVM, binding, commands, or desktop modernization; migrating WPF from .NET Framework to .NET; integrating newer Windows capabilities into a…

managedcode/dotnet-skills · 122 tokens

mcp

Build or consume Model Context Protocol (MCP) servers and clients in .NET using the official MCP C# SDK, including stdio, Streamable HTTP, tools, prompts, resources, and capability negotiation. USE FOR: .NET MCP servers or clients; stdio versus HTTP transport choices; tools, resources, prompts, completions, and…

managedcode/dotnet-skills · 123 tokens

template-discovery

Helps find, inspect, and compare (at a high level) .NET project templates. Resolves natural-language project descriptions to ranked template matches with pre-filled parameters. USE FOR: finding the right dotnet new template for a task, inspecting a template's parameters and constraints, understanding what a template…

managedcode/dotnet-skills · 158 tokens