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.
curl -O https://raw.githubusercontent.com/christosk92/WaveeMusic/main/.claude/skills/wavee/wavee-playlist-mutations/SKILL.mdgit clone --depth 1 https://github.com/christosk92/WaveeMusicWrote 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.
[](https://agentmods.dev/skills/christosk92/waveemusic/wavee-playlist-mutations)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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):
- ADD —
attrs{timestamp, item_id}per item;add_first/add_lastemitted only when true, elsefrom_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_byis never sent. - Keyed REM —
Rem{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 MOV —
Mov{items[], add_after_item | add_first | add_last}, fields 1–3 absent. Anchor derivation lives inPlaylistMutationSource.BuildKeyedMove:218:toIndex<=0→add_first;>=Count→add_last; else the row attoIndex-1walking 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_LIST —
new_attributesonly.collaborative=falseanddeleted_by_owner=falsetravel as values, never also asno_value(theno_valueform is parse-side only — it is what the dealer'sold_attributesuses). - Rootlist ops are positional —
Mov{from,length,to}, indexRem, indexAdd. Playlist row ADD carriesattrs{ts, public=1}; folder markers never carrypublic(IsGroupMarker:359).
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.
- 9d ago First seen · 360 lines · 51 tokens per session scan A 2c5e2a92d478
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.
Other skills, from other repositories
generate-code-cs
Generate the code from typespec for C#. Parameter: C# SDK repository root location .
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.
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…
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…
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…
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…