hifi-download

hifi-download is a skill for Claude Code from psylch/media-master. It costs 111 tokens per session (2,435 once invoked), scanned B, original, MIT.

A music-discovery and high-quality audio-download tool using services such as Spotify, Last.fm, Qobuz, and TIDAL.

In plain words
What is it for?
Finding songs, albums, and artists; getting recommendations based on musical taste; and downloading FLAC or other high-fidelity files when configured.
Why use it?
It combines music searches and recommendations with a workflow for obtaining lossless or high-resolution audio, instead of requiring separate tools.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the media-master plugin — 3 skills shipped together

Good fit Finding songs, albums, and artists; getting recommendations based on musical taste; and downloading FLAC or other high-fidelity files when configured.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/psylch/media-master/hifi-download
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 psylch/media-master --skill hifi-download
Clone the repo
git clone --depth 1 https://github.com/psylch/media-master

Made for: Claude Code.

Or install media-master, the plugin that ships this one along with the rest of its 3 skills.

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 hifi-download

README.md
[![agentmods](https://agentmods.dev/badge/skills/psylch/media-master/hifi-download/github.svg)](https://agentmods.dev/skills/psylch/media-master/hifi-download)
Your own site
<a href="https://agentmods.dev/skills/psylch/media-master/hifi-download"><img src="https://agentmods.dev/badge/skills/psylch/media-master/hifi-download/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 hifi-download

Your own site · 80×15
<a href="https://agentmods.dev/skills/psylch/media-master/hifi-download"><img src="https://agentmods.dev/badge/skills/psylch/media-master/hifi-download.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,435 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00111 $0.02435
Opus 5 $0.00056 $0.01218
Sonnet 5 $0.00022 $0.00487
Haiku 4.5 $0.00011 $0.00244

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

Security

Grade B, and why

hifi-download scanned grade B with 1 finding 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 11d ago.

The scan reads SKILL.md. This mod also ships 28 executable files (run.sh, scripts/_download_worker.py, scripts/disable_service.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

| `PYTHON=missing` | `brew install python3` | `sudo apt install python3` |
skills/hifi-download/SKILL.md · 273 lines

How it starts

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

MusicMaster

Music discovery (Spotify, Last.fm) and Hi-Res audio downloads (Qobuz, TIDAL) through a unified CLI.

Language

Match user's language: Respond in the same language the user uses.

All commands use bash ${SKILL_PATH}/run.sh <script> [args...], which activates the venv and runs the corresponding Python script. Output is human-readable by default; use --json where supported for structured output.

First-Time Setup

Step 1: Check Dependencies

bash ${SKILL_PATH}/scripts/setup.sh check

Output is key=value pairs. If VENV=missing, run install first.

Step 2: Install

bash ${SKILL_PATH}/scripts/setup.sh install [--with-qobuz] [--with-tidal]

Creates .venv, installs core dependencies (spotipy, pylast, requests, python-dotenv), and optionally installs download backends.

Step 3: Configure Credentials

IMPORTANT: Do NOT ask the user for credentials in chat. Instead:

  1. Create .env from template if not exists: cp ${SKILL_PATH}/.env.example ${SKILL_PATH}/.env
  2. Tell user to edit ${SKILL_PATH}/.env with their credentials
  3. Wait for confirmation, then verify with Step 4

Where to get credentials:

Step 4: Verify

bash ${SKILL_PATH}/run.sh status

Shows which services are READY, DISABLED, or need setup. Only use services marked READY.

Preflight Check → Fix Table

Check Fix (macOS) Fix (Linux)
PYTHON=missing brew install python3 sudo apt install python3
VENV=missing bash ${SKILL_PATH}/scripts/setup.sh install Same
Core deps missing (SPOTIPY, PYLAST, etc.) bash ${SKILL_PATH}/scripts/setup.sh install --force Same
ENV_FILE=missing cp ${SKILL_PATH}/.env.example ${SKILL_PATH}/.env then edit Same
Spotify: NOT CONFIGURED Edit .env: set SPOTIFY_CLIENT_ID and SPOTIFY_CLIENT_SECRET Same
Last.fm: NOT CONFIGURED Edit .env: set LASTFM_API_KEY Same
Qobuz: NOT CONFIGURED Edit .env: set QOBUZ_EMAIL and QOBUZ_PASSWORD Same
TIDAL: NOT CONFIGURED Run tiddl auth login inside the venv Same
Spotify/Last.fm/Qobuz: ERROR (validation failed) Check credentials in .env are correct, re-obtain from dashboard if needed Same
TIDAL: ERROR (token expired) Run tiddl auth refresh or tiddl auth login inside the venv Same

Read the full file on GitHub · 273 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. 11d ago First seen · 273 lines · 111 tokens per session scan B 487e655659e5

Subscribe to this mod's changes

hifi-download is a skill published in the GitHub repository psylch/media-master (5 stars, last pushed 6mo ago), licensed MIT. It adds 111 tokens to every session and 2,435 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

imagegen-frontend-web

Elite frontend image-direction skill for generating premium, conversion-aware website design references. CRITICAL OUTPUT RULE — generate ONE separate horizontal image FOR EVERY section. A landing page with 8 sections produces 8 images. Never compress multiple sections into one image. Enforces composition variety (not…

Leonxlnx/taste-skill · 126 tokens

brandkit

Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional…

Leonxlnx/taste-skill · 89 tokens

sandbase

Access 2,000+ AI models and API tools through one MCP interface for inference, media generation, search, scraping, embeddings, social data, and structured retrieval. Use sandbasediscover before building custom integrations or declaring external data inaccessible; prefer an existing dedicated tool or API key when the…

iflytek/skillhub · 67 tokens

video-frames

Extract a single frame from a local video at the first frame, a timestamp, or a zero-based frame index using FFmpeg.

iflytek/skillhub · 30 tokens

openclaw-brand

Apply OpenClaw visual identity to logos, typography, imagery, voice, documents, presentations, social graphics, and launch materials. Use when the task changes brand identity rather than ordinary product UI or public-page composition.

openclaw/clawhub · 48 tokens

image-gen

Generate images from text prompts via DashScope/Qwen. Use when creating, drawing, or illustrating images.

alibaba/anolisa · 24 tokens