Loading...
Loading...
Compare original and translation side by side
~/.claude/skills/music-genre-finder/references/references/
├── _index.json # 49个主分类概览(必读,13KB)
├── _meta.json # 元数据和使用说明(399B)
├── main/ # 49个文件,每个主分类的直接子分类
│ ├── ambient.json
│ ├── rock.json
│ └── ...
└── detailed/ # 578个文件,有孙分类的子分类详情
├── dark-ambient.json
├── shoegaze.json
└── ...{
"name": "Dark Ambient",
"url": "https://rateyourmusic.com/genre/dark-ambient/",
"description": "Emphasizes an ominous, gloomy, and dissonant atmosphere.",
"level": "sub", // main, sub, sub-2, sub-3, sub-4
"parent": "Ambient" // 父分类名称
}~/.claude/skills/music-genre-finder/references/references/
├── _index.json # Overview of 49 main categories (must-read, 13KB)
├── _meta.json # Metadata and usage instructions (399B)
├── main/ # 49 files, direct subgenres of each main category
│ ├── ambient.json
│ ├── rock.json
│ └── ...
└── detailed/ # 578 files, details of subgenres with further subcategories
├── dark-ambient.json
├── shoegaze.json
└── ...{
"name": "Dark Ambient",
"url": "https://rateyourmusic.com/genre/dark-ambient/",
"description": "Emphasizes an ominous, gloomy, and dissonant atmosphere.",
"level": "sub", // main, sub, sub-2, sub-3, sub-4
"parent": "Ambient" // Parent category name
}Step 1: 读取 _index.json,检查是否为主分类
Step 2: 如果不是,用 grep/find 在 main/*.json 中搜索
Step 3: 找到后,显示风格信息 + 链接 + 子分类(如果有)🎵 Shoegaze
📝 Characterized by ethereal vocals buried beneath walls of distorted guitars...
🔗 https://rateyourmusic.com/genre/shoegaze/
📂 属于:Alternative Rock > Noise Pop > Shoegaze
💡 Shoegaze 有 3 个子分类:
- Blackgaze(融合黑金属元素)
- Nu-Gaze(现代复兴)
- Dream Pop(更柔和的变体)Step 1: Read _index.json to check if it's a main category
Step 2: If not, search in main/*.json using grep/find
Step 3: Once found, display genre information + link + subgenres (if any)🎵 Shoegaze
📝 Characterized by ethereal vocals buried beneath walls of distorted guitars...
🔗 https://rateyourmusic.com/genre/shoegaze/
📂 Belongs to: Alternative Rock > Noise Pop > Shoegaze
💡 Shoegaze has 3 subgenres:
- Blackgaze (blends black metal elements)
- Nu-Gaze (modern revival)
- Dream Pop (softer variant)Step 1: 读取 _index.json,扫描所有49个主分类的描述
Step 2: 用关键词匹配(deep night, ethereal, ambient, atmospheric)
Step 3: 找到候选主分类后,读取对应的 main/*.json
Step 4: 根据描述进一步筛选子分类
Step 5: 返回 Top 3-5 推荐,带简短说明| 用户描述 | 匹配关键词 | 推荐方向 |
|---|---|---|
| 深夜、放松、冥想 | ambient, atmospheric, calm, soothing | Ambient, Drone, Space Ambient |
| 有活力、激烈 | energetic, fast, aggressive, intense | Punk, Hardcore, Drum and Bass |
| 暗黑、压抑 | dark, gloomy, ominous, dissonant | Dark Ambient, Black Metal, Industrial |
| 空灵、梦幻 | ethereal, dreamy, atmospheric, reverb | Dream Pop, Shoegaze, Ambient Pop |
| 电子、科技感 | electronic, synthetic, futuristic, digital | Techno, IDM, Ambient Techno |
| 复古、怀旧 | vintage, retro, nostalgic, classic | Synthwave, Vaporwave, Chillwave |
| 实验、前卫 | experimental, avant-garde, unconventional | Noise, Free Jazz, Musique Concrète |
🌙 根据"深夜 + 空灵",为你推荐以下风格:
1. ⭐ Dark Ambient
"强调阴暗、忧郁和不和谐的氛围"
🔗 https://rateyourmusic.com/genre/dark-ambient/
2. ⭐ Space Ambient
"流动而放松的合成器音乐,常围绕外太空意象"
🔗 https://rateyourmusic.com/genre/space-ambient/
3. ⭐ Drone
"持续或重复的声音、音符或音簇,强调音色变化"
🔗 https://rateyourmusic.com/genre/drone/
💡 想深入了解某个风格?回复风格名称即可。Step 1: Read _index.json and scan descriptions of all 49 main categories
Step 2: Match with keywords (deep night, ethereal, ambient, atmospheric)
Step 3: After finding candidate main categories, read corresponding main/*.json files
Step 4: Further filter subgenres based on descriptions
Step 5: Return Top 3-5 recommendations with brief explanations| User Description | Matching Keywords | Recommendation Direction |
|---|---|---|
| Late night, relaxation, meditation | ambient, atmospheric, calm, soothing | Ambient, Drone, Space Ambient |
| Energetic, intense | energetic, fast, aggressive, intense | Punk, Hardcore, Drum and Bass |
| Dark, depressive | dark, gloomy, ominous, dissonant | Dark Ambient, Black Metal, Industrial |
| Ethereal, dreamy | ethereal, dreamy, atmospheric, reverb | Dream Pop, Shoegaze, Ambient Pop |
| Electronic, tech-feeling | electronic, synthetic, futuristic, digital | Techno, IDM, Ambient Techno |
| Retro, nostalgic | vintage, retro, nostalgic, classic | Synthwave, Vaporwave, Chillwave |
| Experimental, avant-garde | experimental, avant-garde, unconventional | Noise, Free Jazz, Musique Concrète |
🌙 Based on "late night + ethereal", here are your recommended styles:
1. ⭐ Dark Ambient
"Emphasizes an ominous, gloomy, and dissonant atmosphere"
🔗 https://rateyourmusic.com/genre/dark-ambient/
2. ⭐ Space Ambient
"Fluid and relaxing synth music, often centered around outer space imagery"
🔗 https://rateyourmusic.com/genre/space-ambient/
3. ⭐ Drone
"Sustained or repeated sounds, notes, or clusters, emphasizing timbre changes"
🔗 https://rateyourmusic.com/genre/drone/
💡 Want to learn more about a style? Reply with its name.Step 1: 读取 main/ambient.json
Step 2: 列出所有直接子分类(level: sub)
Step 3: 如果用户进一步询问某个子分类,读取 detailed/{subgenre}.json
Step 4: 显示完整的层级树🎵 Ambient 的子分类树:
Ambient (主分类)
├── Ambient Americana
│ └── 使用传统美式乡村乐器,营造田园氛围
├── Dark Ambient ⭐
│ ├── Black Ambient(融合黑金属元素)
│ ├── Ritual Ambient(仪式感、神秘)
│ └── ...
├── Space Ambient
│ └── 太空主题,合成器为主
└── Tribal Ambient
└── 结合全球传统乐器和氛围
💡 点击 ⭐ 标记的分类可以继续展开更多子分类Step 1: Read main/ambient.json
Step 2: List all direct subgenres (level: sub)
Step 3: If the user further asks about a subgenre, read detailed/{subgenre}.json
Step 4: Display the complete hierarchical tree🎵 Subgenre tree for Ambient:
Ambient (Main Category)
├── Ambient Americana
│ └── Uses traditional American country instruments to create pastoral atmosphere
├── Dark Ambient ⭐
│ ├── Black Ambient (blends black metal elements)
│ ├── Ritual Ambient (ritualistic, mysterious)
│ └── ...
├── Space Ambient
│ └── Space-themed, synth-focused
└── Tribal Ambient
└── Combines global traditional instruments and ambient elements
💡 Click on categories marked with ⭐ to expand more subgenresStep 1: 询问用户想要什么氛围/场景(或直接推荐热门风格)
Step 2: 使用智能推荐功能,给出 3-5 个风格
Step 3: 用户选择后,将风格名称传递给 suno-music-creator
Step 4: Suno 生成时,在 tags 参数中包含风格名称User: 用 Suno 帮我生成一首歌
AI: 好的!想要什么风格?我可以帮你推荐:
1. Synthwave(复古电子,80年代感)
2. Lo-fi Hip Hop(放松、学习背景音乐)
3. Shoegaze(空灵、吉他噪音墙)
或者告诉我你想要的氛围(如:有活力、适合深夜、暗黑等)
User: 有活力的
AI: 推荐:Drum and Bass, Hardcore Punk, Electro House
选哪个?
User: Drum and Bass
AI: [调用 suno-music-creator,tags 包含 "drum and bass, energetic"]Step 1: Ask users about the desired atmosphere/scenario (or directly recommend popular styles)
Step 2: Use the smart recommendation feature to provide 3-5 styles
Step 3: After user selects, pass the style name to suno-music-creator
Step 4: When Suno generates, include the style name in the tags parameterUser: Use Suno to generate a song for me
AI: Sure! What style do you want? I can recommend:
1. Synthwave (retro electronic, 80s vibe)
2. Lo-fi Hip Hop (relaxing background music for study)
3. Shoegaze (ethereal, wall of guitar noise)
Or tell me the atmosphere you want (e.g., energetic, suitable for late night, dark, etc.)
User: Energetic
AI: Recommendations: Drum and Bass, Hardcore Punk, Electro House
Which one?
User: Drum and Bass
AI: [Calls suno-music-creator with tags including "drum and bass, energetic"]_index.json_index.jsonundefinedundefined
**模糊匹配**(用户描述不精确时):
```bash
**Fuzzy Match** (when user description is imprecise):
```bashundefinedundefined🎵 {风格名称}
📝 {描述}
🔗 {RateYourMusic 链接}
📂 {层级路径}(如果不是主分类)
💡 {额外信息}(如子分类数量、推荐理由等)🎵 {Genre Name}
📝 {Description}
🔗 {RateYourMusic Link}
📂 {Hierarchical Path} (if not a main category)
💡 {Additional Information} (e.g., number of subgenres, recommendation reason, etc.)User: 查一下 Vaporwave
AI: 🎵 Vaporwave
📝 Nostalgic, surrealist take on elevator music, sampling 1980s-90s muzak,
smooth jazz, and lounge music, often with a chopped and screwed aesthetic.
🔗 https://rateyourmusic.com/genre/vaporwave/
📂 Electronic > Vaporwave
💡 Vaporwave 有 5 个子分类:
- Hardvapour(更激进的变体)
- Mallsoft(商场环境音乐)
- Future Funk(融合 Funk 元素)
- Eccojams(循环和失真)
- Signalwave(广播信号美学)User: Look up Vaporwave
AI: 🎵 Vaporwave
📝 Nostalgic, surrealist take on elevator music, sampling 1980s-90s muzak,
smooth jazz, and lounge music, often with a chopped and screwed aesthetic.
🔗 https://rateyourmusic.com/genre/vaporwave/
📂 Electronic > Vaporwave
💡 Vaporwave has 5 subgenres:
- Hardvapour (more aggressive variant)
- Mallsoft (mall environment music)
- Future Funk (blends Funk elements)
- Eccojams (looping and distortion)
- Signalwave (broadcast signal aesthetics)User: 推荐一些适合写代码时听的音乐风格
AI: 🖥️ 根据"写代码"场景,推荐以下风格(不分散注意力 + 有节奏感):
1. ⭐ Lo-fi Hip Hop
"放松的嘻哈节奏 + 爵士采样,专注学习/工作的首选"
2. ⭐ Ambient Techno
"电子氛围 + 稳定节奏,既不无聊又不干扰"
3. ⭐ Post-Rock
"器乐为主,渐进式发展,适合长时间专注"
4. ⭐ Downtempo
"慢节奏电子,平静但不催眠"
💡 想了解更多?回复风格名称或序号。User: Recommend some music styles suitable for coding
AI: 🖥️ Based on the "coding" scenario, here are recommended styles (non-distracting + rhythmic):
1. ⭐ Lo-fi Hip Hop
"Relaxing hip-hop beats + jazz samples, top choice for focused study/work"
2. ⭐ Ambient Techno
"Electronic atmosphere + steady rhythm, neither boring nor distracting"
3. ⭐ Post-Rock
"Instrumental-focused, progressive development, suitable for long-term focus"
4. ⭐ Downtempo
"Slow-tempo electronic, calm but not hypnotic"
💡 Want to learn more? Reply with the style name or number.User: Electronic 下面都有什么大分类?
AI: 🎵 Electronic 的主要子分类:
📂 Electronic(主分类)
├── 🎛️ Ambient(氛围电子)
├── 💃 Dance(舞曲类)
│ ├── House
│ ├── Techno
│ ├── Trance
│ └── Drum and Bass
├── 🧠 IDM(智能舞曲,实验电子)
├── 🌊 Downtempo(慢节奏)
├── 🔊 Bass Music(低音音乐)
└── 🎹 Synthwave(合成器波)
总共 37 个子分类,以上是最热门的几类。
💡 想深入某个分类?告诉我名称即可。User: What major categories are under Electronic?
AI: 🎵 Main subgenres of Electronic:
📂 Electronic (Main Category)
├── 🎛️ Ambient (Ambient Electronic)
├── 💃 Dance (Dance Music)
│ ├── House
│ ├── Techno
│ ├── Trance
│ └── Drum and Bass
├── 🧠 IDM (Intelligent Dance Music, Experimental Electronic)
├── 🌊 Downtempo (Slow-tempo)
├── 🔊 Bass Music (Bass-focused)
└── 🎹 Synthwave (Synthwave)
There are 37 total subgenres, these are the most popular ones.
💡 Want to dive into a category? Tell me its name.User: 查一下 Qiaomu Style
AI: ❌ 没有找到 "Qiaomu Style" 这个风格。
💡 可能的原因:
- 风格名称拼写错误?试试相似的:Shoegaze, Noise Pop
- RateYourMusic 数据库中没有此风格
🔍 你可以:
1. 描述一下这个风格的特点,我帮你找相似的
2. 直接访问 https://rateyourmusic.com/genres/ 浏览完整列表User: Look up Qiaomu Style
AI: ❌ "Qiaomu Style" was not found.
💡 Possible reasons:
- Spelling mistake in the genre name? Try similar ones: Shoegaze, Noise Pop
- This genre doesn't exist in the RateYourMusic database
🔍 You can:
1. Describe the characteristics of this style, and I'll help you find similar ones
2. Visit https://rateyourmusic.com/genres/ directly to browse the full listUser: 推荐一些好听的音乐风格
AI: 🤔 "好听"的定义因人而异!能具体描述一下吗?
例如:
- 场景:适合深夜/运动/工作/开车
- 氛围:放松/激烈/暗黑/欢快
- 乐器:吉他为主/电子/管弦乐
- 参考:类似 XX 乐队/歌手
或者我可以推荐几个通用的热门风格?User: Recommend some good music styles
AI: 🤔 "Good" is subjective! Can you be more specific?
For example:
- Scenario: suitable for late night/exercise/work/driving
- Atmosphere: relaxing/intense/dark/cheerful
- Instruments: guitar-focused/electronic/orchestral
- Reference: similar to XX band/artist
Or can I recommend some general popular styles?undefinedundefinedundefinedundefined_meta.jsoncustom_tags{
"custom_tags": {
"coding": ["Lo-fi Hip Hop", "Ambient Techno", "Post-Rock"],
"workout": ["Drum and Bass", "Hardcore Punk", "Trap"],
"sleep": ["Dark Ambient", "Drone", "Field Recordings"]
}
}custom_tags_meta.json{
"custom_tags": {
"coding": ["Lo-fi Hip Hop", "Ambient Techno", "Post-Rock"],
"workout": ["Drum and Bass", "Hardcore Punk", "Trap"],
"sleep": ["Dark Ambient", "Drone", "Field Recordings"]
}
}ReadGrepBashReadGrepBashjqjq🔗 https://rateyourmusic.com/genre/{genre-slug}/🔗 https://rateyourmusic.com/genre/{genre-slug}/music-genre-finder → 推荐风格 → suno-music-creator 生成音乐music-genre-finder → Recommend style → suno-music-creator generates musicmusic-genre-finder → 查询风格 → qiaomu-writer 写风格解读文章music-genre-finder → Look up style → qiaomu-writer writes style interpretation article_index.json_index.json