music-search

music-search is a skill for Claude Code, Codex from netease-youdao/LobsterAI. It costs 47 tokens per session (1,522 once invoked), scanned A, original, MIT.

A search tool for finding downloadable songs and albums, including lossless audio, from public cloud-drive links. It can search for specific artists, releases, formats, and storage services.

In plain words
What is it for?
Use it to find a song or album, filter results by services such as Quark or Baidu, choose formats such as FLAC or WAV, and limit the number of results.
Why use it?
It reduces the time spent searching many resource pages and extracting usable download links. Deep searches can inspect pages more fully, while web searches trade detail for speed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to find a song or album, filter results by services such as Quark or Baidu, choose formats such as FLAC or WAV, and limit the number of results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/netease-youdao/lobsterai/music-search
About the project

LobsterAI is an open-source desktop AI agent that operates files, commands, browsers, documents, spreadsheets, slides, messaging channels, and scheduled jobs in a user's working environment. It supports office work, research, and custom multi-agent workflows, while catalogue add-ons extend the agent with additional skills and workflows.

netease-youdao/LobsterAI · 6,012 stars · on GitHub · lobsterai.youdao.com

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 netease-youdao/LobsterAI --skill music-search
Clone the repo
git clone --depth 1 https://github.com/netease-youdao/LobsterAI

Made for: Claude Code, Codex.

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 music-search

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/netease-youdao/lobsterai/music-search"><img src="https://agentmods.dev/badge/skills/netease-youdao/lobsterai/music-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,522 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.00047 $0.01522
Opus 5 $0.00023 $0.00761
Sonnet 5 $0.00009 $0.00304
Haiku 4.5 $0.00005 $0.00152

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

Security

Grade A, and why

music-search 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 13d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/music-search.js, scripts/music-search.ps1, scripts/music-search.sh, …), 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.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

SKILLs/music-search/SKILL.md · 157 lines

How it starts

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

Music Search Skill

搜索音乐资源(歌曲、专辑、无损音乐),通过实时爬虫深度抓取资源页面,从各网盘平台获取公开分享的资源链接。

前置条件

  • web-search skill(必需,用于搜索发现资源页面)
  • Node.js >= 18(应用内置,无需额外安装)

命令

搜索资源

bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "关键词" [选项]

选项:

参数 说明 默认值
--pan <type> 筛选网盘类型: quark, baidu, aliyun, uc, all all
--format <f> 筛选音频格式: flac, ape, wav, dsd, hires, mp3, aac, all all
--limit <n> 每个平台最大结果数 5
--engine <e> 搜索引擎: deep, web deep

引擎说明:

  • deep(默认,推荐)— web-search 搜索发现资源页面 + JavaScript 深度页面抓取提取网盘链接和提取码,结果最准确
  • web — 仅从 web-search 搜索引擎摘要中提取链接(速度快,但准确率较低,不做深度抓取)

示例:

# 搜索所有平台的音乐资源(默认使用深度搜索)
bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "周杰伦 范特西"

# 只搜夸克网盘 FLAC 资源
bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "周杰伦 范特西" --pan quark --format flac

# 搜索 Hi-Res 高解析音乐
bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "邓紫棋 光年之外" --format hires

# 限制结果数量
bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "林俊杰 她说" --limit 10

# 使用浅层搜索(不深度抓取页面)
bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" search "陈奕迅 十年" --engine web

Windows 系统使用 PowerShell 脚本:

powershell -File "$SKILLS_ROOT/music-search/scripts/music-search.ps1" search "周杰伦 范特西" --pan quark

热门推荐

bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" hot "2025年热门专辑"

本质上是以推荐类关键词调用搜索,返回相关网盘资源。

解析跳转链接

bash "$SKILLS_ROOT/music-search/scripts/music-search.sh" resolve "https://example.com/goto/xxx"

当搜索结果中的链接需要二次跳转时,用此命令解析出真实网盘地址。

Agent 使用流程

  1. 用户说「帮我找 XXX 的音乐」→ 执行 search "XXX"
  2. 解析返回的 JSON,提取网盘链接
  3. 按网盘类型和音频格式分组呈现给用户
  4. 如果结果中有提取码 (extractCode),一并展示给用户
  5. 如果结果中有 pageUrl 但没有直接 url,用 resolve 命令获取真实地址

示例对话:

用户:帮我找一下周杰伦范特西专辑的无损资源,要FLAC格式

Agent:

  1. 执行 search "周杰伦 范特西" --format flac
  2. 从 JSON 结果中取出匹配项
  3. 返回:标题 + 格式 + 网盘链接 + 提取码(如有)

Read the full file on GitHub · 157 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 157 lines · 47 tokens per session scan A 62aa7376da5b

Subscribe to this mod's changes

music-search is a skill published in the GitHub repository netease-youdao/LobsterAI (6,012 stars, last pushed yesterday), licensed MIT. It adds 47 tokens to every session and 1,522 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

hive.browser-automation

Required before any hive-browser CLI command. The browser is driven from the terminal by running hive-browser ... --json via terminalexec — not via MCP tools. Teaches the browser lifecycle rules (the bridge attaches to the USER'S running Chrome — never kill or launch browser processes; timeouts are transport issues…

aden-hive/hive · 142 tokens

hive.worker-delegation

Concrete patterns for breaking colony work into parallel worker jobs via runplaybook — when fan-out helps, how to model the goal as a tracker table, write the worker skill, author the playbook, pilot, and let convergence retry/resume the gap.

aden-hive/hive · 58 tokens

hive.linkedin-automation

Read before automating LinkedIn with browser tools. LinkedIn combines shadow DOM (#interop-outlet), strict Trusted Types CSP that silently drops innerHTML, Lexical composer, native beforeunload dialogs that hang the bridge, and aggressive spam filters — each has bitten us at least once. Verified flows for profile…

aden-hive/hive · 99 tokens

hive.x-automation

Read before automating X / Twitter with browser tools. Verified flows for post, reply, delete, search-and-engage, plus the Draft.js compose quirks that silently disable the send button. Includes the daily-reply and job-market-reply playbooks. Requires hive.browser-automation for the underlying screenshot + coordinate…

aden-hive/hive · 81 tokens

hive.slack-notifications-setup

Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the "Hive Sentinel" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept…

aden-hive/hive · 136 tokens

hive.writing-hive-skills

Author a new Agent Skill for a Hive agent that conforms to the Agent Skills specification (SKILL.md with YAML frontmatter, optional scripts/references/assets directories). Use when the user asks to create, scaffold, add, or package a new skill for a Hive agent.

aden-hive/hive · 63 tokens