← 返回 Skills 市场
cp3d1455926-svg

Music Helper

作者 cp3d1455926-svg · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
108
总下载
1
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install music-helper
功能描述
音乐助手 - 歌曲推荐、歌单生成、音乐搜索、歌词获取
使用说明 (SKILL.md)

\r \r

🎵 Music Helper - 音乐助手\r

\r

触发规则\r

\r 关键词:\r

  • 推荐歌曲、歌单推荐、听什么歌\r
  • 网易云、QQ 音乐、酷狗\r
  • 歌词、这首歌叫什么\r
  • 歌手、专辑、MV\r \r 场景:\r
  • 用户想听歌但不知道选什么\r
  • 用户查询某首歌的信息\r
  • 用户需要歌词\r
  • 用户想找类似风格的音乐\r \r

功能描述\r

\r

核心功能\r

\r

  1. 音乐推荐\r
    • 根据心情推荐(开心/难过/放松/运动)\r
    • 根据场景推荐(学习/工作/睡眠/运动)\r
    • 根据风格推荐(流行/摇滚/民谣/电子/古典)\r
    • 根据语种推荐(华语/欧美/日韩/粤语)\r \r
  2. 音乐搜索\r
    • 歌曲搜索(歌名/歌词片段)\r
    • 歌手搜索\r
    • 专辑搜索\r
    • MV 搜索\r \r
  3. 歌词获取\r
    • 实时歌词查询\r
    • 歌词翻译(中英/中日)\r
    • 歌词海报生成\r \r
  4. 歌单管理\r
    • 创建个人歌单\r
    • 收藏喜欢的歌曲\r
    • 每日推荐\r \r

推荐维度\r

\r

  • 🎵 风格:流行、摇滚、民谣、电子、嘻哈、R&B、古典、爵士\r
  • 😊 心情:开心、难过、放松、兴奋、治愈、emo\r
  • 🎯 场景:学习、工作、睡眠、运动、通勤、派对\r
  • 🌍 语种:华语、欧美、日韩、粤语、泰语\r
  • 📅 年代:2020s、2010s、经典老歌\r \r

权限需求\r

\r

  • 网络访问(音乐平台 API)\r
  • 文件读写(歌单存储)\r
  • 外部 API(网易云/QQ 音乐)\r \r

数据源\r

\r

  • 网易云音乐(主)\r
  • QQ 音乐(备用)\r
  • 酷狗音乐(备用)\r
  • 歌词网(歌词)\r \r

示例对话\r

\r

用户:推荐几首好听的歌\r
助手:你想听什么风格的?流行、摇滚、民谣还是电子?或者告诉我你现在的心情/场景~\r
\r
用户:学习的时候听什么\r
助手:推荐这 5 首适合学习的纯音乐:\r
1. 《Summer》- 久石让 ⭐4.9 - 轻快治愈\r
2. 《雨的印记》- 李闰珉 ⭐4.8 - 安静钢琴\r
3. 《卡农》- 帕赫贝尔 ⭐4.9 - 经典古典\r
4. 《风居住的街道》- 矶村由纪子 ⭐4.8 - 二胡钢琴\r
5. 《神秘园之歌》- Secret Garden ⭐4.7 - 新世纪音乐\r
\r
用户:查一下《晴天》的歌词\r
助手:《晴天》- 周杰伦\r
📀 专辑:《叶惠美》(2003)\r
⭐ 评分:9.8\r
\r
故事的小黄花 从出生那年就飘着\r
童年的荡秋千 随记忆一直晃到现在\r
...\r
\r
用户:推荐类似周杰伦的歌\r
助手:基于周杰伦的 R&B/中国风风格,推荐:\r
1. 林俊杰 - 《江南》《不为谁而作的歌》\r
2. 王力宏 - 《花田错》《大城小爱》\r
3. 陶喆 - 《爱很简单》《小镇姑娘》\r
4. 方大同 - 《Love Song》《特别的人》\r
```\r
\r
## 数据存储\r
\r
```json\r
// ~/.openclaw/workspace/music-helper/favorites.json\r
{\r
  "favorite_songs": [\r
    {\r
      "title": "晴天",\r
      "artist": "周杰伦",\r
      "added_date": "2026-03-16",\r
      "play_count": 42\r
    }\r
  ],\r
  "playlists": [\r
    {\r
      "name": "学习专用",\r
      "songs": ["Summer", "雨的印记", "卡农"]\r
    }\r
  ]\r
}\r
```\r
\r
## 待办事项\r
\r
- [ ] 实现网易云音乐 API 对接\r
- [ ] 实现歌词爬取\r
- [ ] 创建歌单存储\r
- [ ] 添加推荐算法\r
- [ ] 测试搜索准确性\r
\r
---\r
\r
**版本:** 1.0.0\r
**创建日期:** 2026-03-16\r
**作者:** 小鬼 👻\r
安全使用建议
This skill appears to do what it says: query Netease endpoints, cache results, and store favorites/playlists locally. Before installing, consider: (1) it makes outbound HTTP requests to music.163.com — ensure outbound network access is acceptable; (2) it writes cache and favorites/playlists files alongside the skill (SKILL.md mentions a workspace path — behavior differs slightly from the docs), so check where those files will be stored and whether that location is acceptable for your privacy policy; (3) included netease_cache.json contains pre-populated API responses (static data) — review it if you care about what content is already shipped; (4) no credentials are requested, but lyrics/copyright considerations and rate-limits from the remote service may apply. If you need higher assurance, inspect netease_api.py and music_helper.py directly (they are included) or run them in a sandboxed environment first.
功能分析
Type: OpenClaw Skill Name: music-helper Version: 1.0.0 The music-helper skill is a legitimate music assistant designed for song recommendations, lyric retrieval, and playlist management. It interacts with the official Netease Music API (music.163.com) using the requests library and implements a local caching mechanism in netease_api.py. The code logic in music_helper.py and netease_api.py is transparent, lacks any high-risk behaviors such as arbitrary code execution or sensitive data exfiltration, and strictly follows its stated purpose without any evidence of prompt injection or malicious intent.
能力评估
Purpose & Capability
Name/description (music recommendations, lyrics, playlists) align with the included Python code which calls music.163.com endpoints, performs searches, fetches lyrics, manages local favorites/playlists, and maintains a cache. Minor inconsistency: SKILL.md documents storing user data under ~/.openclaw/workspace/music-helper/* while the code writes favorites/playlists and cache next to the module (DATA_DIR / 'favorites.json' etc.). This is an implementation detail but worth noting.
Instruction Scope
SKILL.md describes network access and file read/write and the code performs those exact actions (HTTP requests to Netease endpoints, caching to netease_cache.json, and reading/writing favorites/playlists). The instructions do not ask the agent to access unrelated system paths, credentials, or transmit data to unexpected endpoints.
Install Mechanism
No install spec is provided (instruction-only), so nothing is downloaded during install. The package includes Python code files; the code will perform network calls at runtime but there is no installer that fetches external archives or executes scripts from arbitrary URLs.
Credentials
The skill does not request environment variables, credentials, or privileged config paths. Its network and local-file operations are proportional to the music/lyrics functionality described.
Persistence & Privilege
always is false and the skill does not request persistent platform-wide privileges. It writes cache and user favorites/playlists to files within the skill's directory (or intended workspace); it does not modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install music-helper
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /music-helper 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
music-helper 1.0.0 首次发布 — 音乐助手上线! - 支持根据心情、场景、风格、语种等多维度推荐歌曲和歌单 - 提供歌词搜索、歌词翻译及歌词海报等功能 - 实现歌曲、歌手、专辑、MV 等多模式音乐搜索 - 支持歌单创建、歌曲收藏与每日推荐 - 目前接入网易云、QQ 音乐、酷狗、歌词网等主流音乐数据
元数据
Slug music-helper
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Music Helper 是什么?

音乐助手 - 歌曲推荐、歌单生成、音乐搜索、歌词获取. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 108 次。

如何安装 Music Helper?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install music-helper」即可一键安装,无需额外配置。

Music Helper 是免费的吗?

是的,Music Helper 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Music Helper 支持哪些平台?

Music Helper 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Music Helper?

由 cp3d1455926-svg(@cp3d1455926-svg)开发并维护,当前版本 v1.0.0。

💬 留言讨论