[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-minimax-music-playlist":3,"mdc-l3v5j9-key":34,"related-org-minimax-minimax-music-playlist":2234,"related-repo-minimax-minimax-music-playlist":2425},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20],{"name":14,"slug":15,"type":16},"Media","media","tag",{"name":18,"slug":19,"type":16},"Creative","creative",{"name":21,"slug":22,"type":16},"Audio","audio",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:57.002997","MIT",1118,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],null,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fminimax-music-playlist","---\nname: minimax-music-playlist\ndescription: >\n  Generate personalized music playlists by analyzing the user's music taste\n  and generation feedback history. Triggers\n  on any request involving playlist generation, music taste profiling, or personalized\n  music recommendations. Supports multilingual triggers — match equivalent phrases in\n  any language.\nlicense: MIT\nmetadata:\n  version: \"2.0\"\n  category: creative\n---\n\n# MiniMax Music Playlist — Personalized Playlist Generator\n\nScan the user's music taste, build a taste profile, generate a personalized\nplaylist, and create an album cover. This skill is designed for both agent and direct\nuser invocation — adapt interaction style to context.\n\n## Prerequisites\n\n- **mmx CLI** — music & image generation. Install: `npm install -g mmx-cli`. Auth: `mmx auth login --api-key \u003Ckey>`.\n- **Python 3** — for scanning scripts you write on the fly (stdlib only, no pip).\n- **Audio player** — `mpv`, `ffplay`, or `afplay` (macOS built-in).\n\n## Language\n\nDetect the user's language from their message. **All user-facing text must be\nin the same language as the user's prompt** — do not mix languages. If the user\nwrites in Chinese, all output (profile summary, theme suggestions, playlist plan,\nplayback info) must be fully in Chinese. If in English, all in English.\n\nAll `mmx` generation prompts should be in English for best quality.\nEach song's lyrics language follows its genre (K-pop → Korean, J-pop → Japanese, etc.),\nNOT the user's UI language.\n\n---\n\n## Workflow\n\n```\n1. Scan local music apps → 2. Build taste profile → 3. Plan playlist\n→ 4. Generate songs (mmx music) → 5. Generate cover (mmx image) → 6. Play → 7. Save & feedback\n```\n\n---\n\n## Step 1: Gather Music Listening Data\n\nCollect the user's listening data from available sources.\n\n**Supported sources:**\n\n| Source | Method | Data format |\n|--------|--------|-------------|\n| Apple Music | `osascript` to query Music.app (official AppleScript interface) | Track name, artist, album, genre, play count |\n| Spotify | User exports their own data via [Spotify Privacy Settings](https:\u002F\u002Fwww.spotify.com\u002Faccount\u002Fprivacy\u002F) | JSON files in ZIP (`Streaming_History_Audio_*.json`) |\n| Manual input | User describes their taste directly | Free text |\n\n**Spotify data export flow:**\nSpotify does not store useful data locally. To include Spotify listening history,\nfirst check if the user already has a Spotify data export:\n\n1. Search for existing exports: `find ~ -maxdepth 4 -name \"my_spotify_data.zip\" -o -name \"Streaming_History_Audio_*.json\" 2>\u002Fdev\u002Fnull`\n2. If found, ask the user if they want to use it\n3. If ZIP, unzip and locate `Spotify Extended Streaming History\u002FStreaming_History_Audio_*.json`\n4. If not found, open the Spotify privacy page: `open https:\u002F\u002Fwww.spotify.com\u002Faccount\u002Fprivacy\u002F`\n5. Tell the user to log in, scroll to \"Download your data\", and click \"Request data\"\n6. Skip Spotify for now and continue with other sources — tell the user they can\n   re-run the playlist skill after the data export arrives (usually a few days)\n\n**Spotify data format:**\nThe export contains `Streaming_History_Audio_YYYY.json` files (one per year), each\nis a JSON array of listening events. Key fields to extract:\n- `master_metadata_album_artist_name` — artist name\n- `master_metadata_track_name` — track name\n- `master_metadata_album_album_name` — album name\n- `ms_played` — playback duration in milliseconds (use as weight: longer = stronger signal)\n- `ts` — timestamp\n\nFilter out entries where `ms_played \u003C 30000` (less than 30 seconds, likely skipped).\nDo NOT use or store `ip_addr` or other sensitive fields.\n\n**What to extract from each source:**\n- Track names + artist names (primary signal)\n- Playlist names and membership (e.g., a playlist named \"Chinese Traditional\" tells you genre preference)\n- Play counts or streaming duration if available (weight frequently played tracks higher)\n- Scene\u002Fmood tags if available\n\n**Approach:**\n1. Check if Apple Music is available (try `osascript` query)\n2. Ask if the user has a Spotify data export ZIP to provide\n3. If no sources available, ask the user to describe their taste manually\n\n**Privacy rule:** Never show raw track lists to the user. Only show aggregated stats.\n\n---\n\n## Step 2: Build Taste Profile\n\nFrom the scanned data, build a taste profile covering:\n\n- **Genre distribution** — what styles the user listens to (e.g., J-pop 20%, R&B 15%, Classical 10%)\n- **Mood tendencies** — emotional tone preferences (melancholic, energetic, calm, romantic, etc.)\n- **Vocal preference** — male vs female voice ratio\n- **Tempo preference** — slow \u002F moderate \u002F upbeat \u002F fast distribution\n- **Language distribution** — zh, en, ja, ko, etc.\n- **Top artists** — most listened artists\n\n**How to infer genre\u002Fmood from artist names:**\nMost raw data only has artist + track names without genre tags. To enrich this:\n1. Look up artists in the local mapping table at `\u003CSKILL_DIR>\u002Fdata\u002Fartist_genre_map.json`\n   — this table covers 20,000 popular artists with pre-mapped genres, vocal type, and language\n2. For artists not in the mapping table, query the MusicBrainz API:\n   `https:\u002F\u002Fmusicbrainz.org\u002Fws\u002F2\u002Fartist\u002F?query=artist:\u003Cname>&fmt=json`\n   — extract genre tags from the response; respect rate limit (1 req\u002Fsec)\n   — cache results to `\u003CSKILL_DIR>\u002Fdata\u002Fartist_cache.json` to avoid re-querying\n3. If MusicBrainz returns no results, skip the artist\n\n**Profile caching:**\n- Save profile to `\u003CSKILL_DIR>\u002Fdata\u002Ftaste_profile.json`\n- If a profile less than 7 days old exists, reuse it (offer rescan option)\n- If older or missing, rebuild\n\n**Show user a summary:**\n```\nYour Music Profile:\n  Sources: Apple Music 230 | Spotify 140\n  Genres: J-pop 20% | R&B 15% | Classical 10% | Indie Pop 9%\n  Moods: Melancholic 25% | Calm 20% | Romantic 18%\n  Vocals: Female 65% | Male 35%\n  Top artists: Faye Wong, Ryuichi Sakamoto, Taylor Swift, Jay Chou, Taeko Onuki\n```\n\nIf invoked by an agent with clear parameters, skip the confirmation and proceed.\nIf invoked by a user directly, ask if the profile looks right before continuing.\n\n---\n\n## Step 3: Plan Playlist\n\n**Ask the user for a theme\u002Fscene before generating.** This is the one\ninteractive step in the workflow. All other steps run autonomously.\n\nIf the theme was already provided in the invocation (e.g., the agent or user\nsaid \"generate a late night chill playlist\"), use it directly and skip the question.\nOtherwise, ask:\n\n```\nWhat theme would you like for your playlist? Here are some suggestions:\n\n- \"Late night chill\" — relaxing slow songs\n- \"Commute\" — upbeat and energizing\n- \"Rainy day\" — melancholic & cozy\n- \"Surprise me\" — random based on your taste\n\nOr tell me your own vibe!\n```\n\nOnce the user picks a theme, proceed automatically through generation, cover,\nplayback, and saving — no further confirmations needed.\n\nDetermine playlist parameters:\n- **Theme\u002Fmood** — from user input, or default to top mood from profile\n- **Song count** — from user input, or default to 5\n- **Genre mix** — weighted by profile, with variety\n\n**Per-song lyrics language** follows genre:\n\n| Genre | Lyrics language |\n|-------|----------------|\n| K-pop, Korean R&B\u002Fballad | Korean |\n| J-pop, city pop, J-rock | Japanese |\n| C-pop, Chinese-style, Mandopop | Chinese |\n| Western pop\u002Findie\u002Frock\u002Fjazz\u002FR&B | English |\n| Latin pop, bossa nova | Spanish\u002FPortuguese |\n| Instrumental, lo-fi, ambient | No lyrics (`--instrumental`) |\n\nEmbed language naturally into the mmx prompt via vocal description:\n- Good: `\"A melancholy Chinese R&B ballad with a gentle introspective male voice, electric piano, bass, slow tempo\"`\n- Bad: `\"R&B ballad, melancholy... sung in Chinese\"`\n\n**Show the playlist plan before generating.** Display each song with two lines:\nthe first line shows genre, mood, and vocal\u002Flanguage tag; the second line shows\na short description of the song. **All user-facing text (plan, descriptions, moods,\nlabels) must be in the same language as the user's prompt.** Only the actual `--prompt`\npassed to `mmx` should be in English — this is internal and should NOT be shown to\nthe user. Example:\n\n```\nPlaylist Plan: Late Night Chill (5 songs)\n\n1. Neo-soul R&B — introspective  English\u002Fmale vocal\n   A mellow neo-soul R&B ballad with warm baritone, electric piano, smooth bass\n\n2. Lo-fi hip-hop — dreamy  Instrumental\n   Dreamy lo-fi with sampled piano, vinyl crackle, soft electronic drums\n\n3. Smooth jazz — romantic  English\u002Ffemale vocal\n   Silky female voice, saxophone, piano, romantic starlit night\n\n4. Indie folk — melancholic  English\u002Fmale vocal\n   Tender male voice, acoustic guitar, harmonica, quiet solitude\n\n5. Ambient electronic — calm  Instrumental\n   Soft synth pads, gentle arpeggios, dreamy atmosphere\n```\n\nAfter showing the plan, proceed directly to generation — no confirmation needed.\nThe user has already chosen the theme; the plan is shown for transparency, not approval.\n\n---\n\n## Step 4: Generate Songs\n\nUse `mmx music generate` to create all songs. **Generate concurrently** (up to 5 in parallel).\n\n```bash\n# Example: 5 songs in parallel\nmmx music generate --prompt \"\u003Cenglish_prompt_1>\" --lyrics-optimizer \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cname>\u002F01_desc.mp3 --quiet --non-interactive &\nmmx music generate --prompt \"\u003Cenglish_prompt_2>\" --instrumental \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cname>\u002F02_desc.mp3 --quiet --non-interactive &\n# ... more songs ...\nwait\n```\n\n**Key flags:**\n- `--lyrics-optimizer` — auto-generate lyrics from prompt (for vocal tracks)\n- `--instrumental` — no vocals\n- `--vocals \"\u003Cdescription>\"` — vocal style (e.g., \"warm Chinese male baritone\")\n- `--genre`, `--mood`, `--tempo`, `--instruments` — fine-grained control\n- `--quiet --non-interactive` — suppress interactive output for batch mode\n- `--out \u003Cpath>` — save to file\n\n**File naming:** `\u003CNN>_\u003Cshort_desc>.mp3` (e.g., `01_rnb_midnight.mp3`)\n\n**Output directory:** `~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cplaylist_name>\u002F`\n\nIf a song fails, **retry once** before skipping. Log the error and continue with the rest.\n\n---\n\n## Step 5: Generate Album Cover\n\nGenerate the album cover **concurrently with the songs** (Step 4), not after.\nLaunch the `mmx image generate` call in parallel with the song generation calls.\n\nCraft a prompt that reflects the playlist's theme, mood, and genre mix. The image\nshould feel like an album cover — artistic, evocative, not literal.\n\n```bash\nmmx image generate \\\n  --prompt \"\u003Ccover description based on playlist theme and mood>\" \\\n  --aspect-ratio 1:1 \\\n  --out-dir ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cplaylist_name>\u002F \\\n  --out-prefix cover \\\n  --quiet\n```\n\n**Prompt guidance:**\n- Abstract\u002Fartistic style works best for album covers\n- Reference the dominant mood and genre (e.g., \"dreamy late-night cityscape, neon reflections, lo-fi aesthetic\")\n- Do NOT include text or song titles in the image prompt\n- Aspect ratio should be 1:1 (square, standard album cover)\n\n---\n\n## Step 6: Playback\n\nDetect an available player and play the playlist in order:\n\n| Player | Command | Controls |\n|--------|---------|----------|\n| mpv | `mpv --no-video \u003Cfile>` | `q` skip, Space pause, arrows seek |\n| ffplay | `ffplay -nodisp -autoexit \u003Cfile>` | `q` skip |\n| afplay | `afplay \u003Cfile>` | Ctrl+C skip |\n\nPlay all `.mp3` files in the playlist directory in filename order.\nOnly play the songs generated in this session — if the directory has old files\nfrom a previous run, clean them out first or filter by the known filenames.\nIf no player is found, just show the file paths.\n\n---\n\n## Step 7: Save & Feedback\n\nSave playlist metadata to `\u003Cplaylist_dir>\u002Fplaylist.json`:\n```json\n{\n  \"name\": \"Late Night Chill\",\n  \"theme\": \"late night chill\",\n  \"created_at\": \"2026-04-11T22:00:00\",\n  \"song_count\": 5,\n  \"cover\": \"cover_001.png\",\n  \"songs\": [\n    {\"index\": 1, \"filename\": \"01_rnb_midnight.mp3\", \"prompt\": \"...\", \"rating\": null}\n  ]\n}\n```\n\nIf the user is present, ask for feedback (per-song or overall). Update the\ntaste profile's feedback section with liked\u002Fdisliked genres and prompts to\nimprove future playlists.\n\n---\n\n## Replaying Playlists\n\nIf asked to play a previous playlist: `ls ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F`, show\navailable ones, and play the selected one.\n\n---\n\n## Notes\n\n- **Agent vs user invocation**: The theme\u002Fscene question (Step 3) is the single\n  interactive touchpoint. If the theme is already provided in the invocation,\n  skip the question. Everything else runs autonomously.\n- **No hardcoded scripts**: Write scanning\u002Fanalysis scripts on the fly as needed.\n  Use Python stdlib only. Cache results to avoid redundant work.\n- **Skill directory**: `\u003CSKILL_DIR>` = the directory containing this SKILL.md file.\n  Data\u002Fcache files go in `\u003CSKILL_DIR>\u002Fdata\u002F`.\n- **All mmx prompts in English** for best generation quality.\n",{"data":35,"body":38},{"name":4,"description":6,"license":26,"metadata":36},{"version":37,"category":19},"2.0",{"type":39,"children":40},"root",[41,50,56,63,140,146,158,171,175,181,193,196,202,207,215,325,335,387,405,463,484,492,515,523,548,558,561,567,572,635,645,687,695,719,727,736,741,744,750,760,765,774,779,784,817,827,934,939,964,996,1005,1010,1013,1019,1039,1272,1280,1369,1394,1409,1421,1424,1430,1450,1455,1587,1595,1618,1621,1627,1632,1733,1746,1749,1755,1768,2134,2139,2142,2148,2161,2164,2170,2228],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"minimax-music-playlist-personalized-playlist-generator",[47],{"type":48,"value":49},"text","MiniMax Music Playlist — Personalized Playlist Generator",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Scan the user's music taste, build a taste profile, generate a personalized\nplaylist, and create an album cover. This skill is designed for both agent and direct\nuser invocation — adapt interaction style to context.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"prerequisites",[61],{"type":48,"value":62},"Prerequisites",{"type":42,"tag":64,"props":65,"children":66},"ul",{},[67,96,106],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71,77,79,86,88,94],{"type":42,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":48,"value":76},"mmx CLI",{"type":48,"value":78}," — music & image generation. Install: ",{"type":42,"tag":80,"props":81,"children":83},"code",{"className":82},[],[84],{"type":48,"value":85},"npm install -g mmx-cli",{"type":48,"value":87},". Auth: ",{"type":42,"tag":80,"props":89,"children":91},{"className":90},[],[92],{"type":48,"value":93},"mmx auth login --api-key \u003Ckey>",{"type":48,"value":95},".",{"type":42,"tag":68,"props":97,"children":98},{},[99,104],{"type":42,"tag":72,"props":100,"children":101},{},[102],{"type":48,"value":103},"Python 3",{"type":48,"value":105}," — for scanning scripts you write on the fly (stdlib only, no pip).",{"type":42,"tag":68,"props":107,"children":108},{},[109,114,116,122,124,130,132,138],{"type":42,"tag":72,"props":110,"children":111},{},[112],{"type":48,"value":113},"Audio player",{"type":48,"value":115}," — ",{"type":42,"tag":80,"props":117,"children":119},{"className":118},[],[120],{"type":48,"value":121},"mpv",{"type":48,"value":123},", ",{"type":42,"tag":80,"props":125,"children":127},{"className":126},[],[128],{"type":48,"value":129},"ffplay",{"type":48,"value":131},", or ",{"type":42,"tag":80,"props":133,"children":135},{"className":134},[],[136],{"type":48,"value":137},"afplay",{"type":48,"value":139}," (macOS built-in).",{"type":42,"tag":57,"props":141,"children":143},{"id":142},"language",[144],{"type":48,"value":145},"Language",{"type":42,"tag":51,"props":147,"children":148},{},[149,151,156],{"type":48,"value":150},"Detect the user's language from their message. ",{"type":42,"tag":72,"props":152,"children":153},{},[154],{"type":48,"value":155},"All user-facing text must be\nin the same language as the user's prompt",{"type":48,"value":157}," — do not mix languages. If the user\nwrites in Chinese, all output (profile summary, theme suggestions, playlist plan,\nplayback info) must be fully in Chinese. If in English, all in English.",{"type":42,"tag":51,"props":159,"children":160},{},[161,163,169],{"type":48,"value":162},"All ",{"type":42,"tag":80,"props":164,"children":166},{"className":165},[],[167],{"type":48,"value":168},"mmx",{"type":48,"value":170}," generation prompts should be in English for best quality.\nEach song's lyrics language follows its genre (K-pop → Korean, J-pop → Japanese, etc.),\nNOT the user's UI language.",{"type":42,"tag":172,"props":173,"children":174},"hr",{},[],{"type":42,"tag":57,"props":176,"children":178},{"id":177},"workflow",[179],{"type":48,"value":180},"Workflow",{"type":42,"tag":182,"props":183,"children":187},"pre",{"className":184,"code":186,"language":48},[185],"language-text","1. Scan local music apps → 2. Build taste profile → 3. Plan playlist\n→ 4. Generate songs (mmx music) → 5. Generate cover (mmx image) → 6. Play → 7. Save & feedback\n",[188],{"type":42,"tag":80,"props":189,"children":191},{"__ignoreMap":190},"",[192],{"type":48,"value":186},{"type":42,"tag":172,"props":194,"children":195},{},[],{"type":42,"tag":57,"props":197,"children":199},{"id":198},"step-1-gather-music-listening-data",[200],{"type":48,"value":201},"Step 1: Gather Music Listening Data",{"type":42,"tag":51,"props":203,"children":204},{},[205],{"type":48,"value":206},"Collect the user's listening data from available sources.",{"type":42,"tag":51,"props":208,"children":209},{},[210],{"type":42,"tag":72,"props":211,"children":212},{},[213],{"type":48,"value":214},"Supported sources:",{"type":42,"tag":216,"props":217,"children":218},"table",{},[219,243],{"type":42,"tag":220,"props":221,"children":222},"thead",{},[223],{"type":42,"tag":224,"props":225,"children":226},"tr",{},[227,233,238],{"type":42,"tag":228,"props":229,"children":230},"th",{},[231],{"type":48,"value":232},"Source",{"type":42,"tag":228,"props":234,"children":235},{},[236],{"type":48,"value":237},"Method",{"type":42,"tag":228,"props":239,"children":240},{},[241],{"type":48,"value":242},"Data format",{"type":42,"tag":244,"props":245,"children":246},"tbody",{},[247,272,307],{"type":42,"tag":224,"props":248,"children":249},{},[250,256,267],{"type":42,"tag":251,"props":252,"children":253},"td",{},[254],{"type":48,"value":255},"Apple Music",{"type":42,"tag":251,"props":257,"children":258},{},[259,265],{"type":42,"tag":80,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":264},"osascript",{"type":48,"value":266}," to query Music.app (official AppleScript interface)",{"type":42,"tag":251,"props":268,"children":269},{},[270],{"type":48,"value":271},"Track name, artist, album, genre, play count",{"type":42,"tag":224,"props":273,"children":274},{},[275,280,294],{"type":42,"tag":251,"props":276,"children":277},{},[278],{"type":48,"value":279},"Spotify",{"type":42,"tag":251,"props":281,"children":282},{},[283,285],{"type":48,"value":284},"User exports their own data via ",{"type":42,"tag":286,"props":287,"children":291},"a",{"href":288,"rel":289},"https:\u002F\u002Fwww.spotify.com\u002Faccount\u002Fprivacy\u002F",[290],"nofollow",[292],{"type":48,"value":293},"Spotify Privacy Settings",{"type":42,"tag":251,"props":295,"children":296},{},[297,299,305],{"type":48,"value":298},"JSON files in ZIP (",{"type":42,"tag":80,"props":300,"children":302},{"className":301},[],[303],{"type":48,"value":304},"Streaming_History_Audio_*.json",{"type":48,"value":306},")",{"type":42,"tag":224,"props":308,"children":309},{},[310,315,320],{"type":42,"tag":251,"props":311,"children":312},{},[313],{"type":48,"value":314},"Manual input",{"type":42,"tag":251,"props":316,"children":317},{},[318],{"type":48,"value":319},"User describes their taste directly",{"type":42,"tag":251,"props":321,"children":322},{},[323],{"type":48,"value":324},"Free text",{"type":42,"tag":51,"props":326,"children":327},{},[328,333],{"type":42,"tag":72,"props":329,"children":330},{},[331],{"type":48,"value":332},"Spotify data export flow:",{"type":48,"value":334},"\nSpotify does not store useful data locally. To include Spotify listening history,\nfirst check if the user already has a Spotify data export:",{"type":42,"tag":336,"props":337,"children":338},"ol",{},[339,350,355,366,377,382],{"type":42,"tag":68,"props":340,"children":341},{},[342,344],{"type":48,"value":343},"Search for existing exports: ",{"type":42,"tag":80,"props":345,"children":347},{"className":346},[],[348],{"type":48,"value":349},"find ~ -maxdepth 4 -name \"my_spotify_data.zip\" -o -name \"Streaming_History_Audio_*.json\" 2>\u002Fdev\u002Fnull",{"type":42,"tag":68,"props":351,"children":352},{},[353],{"type":48,"value":354},"If found, ask the user if they want to use it",{"type":42,"tag":68,"props":356,"children":357},{},[358,360],{"type":48,"value":359},"If ZIP, unzip and locate ",{"type":42,"tag":80,"props":361,"children":363},{"className":362},[],[364],{"type":48,"value":365},"Spotify Extended Streaming History\u002FStreaming_History_Audio_*.json",{"type":42,"tag":68,"props":367,"children":368},{},[369,371],{"type":48,"value":370},"If not found, open the Spotify privacy page: ",{"type":42,"tag":80,"props":372,"children":374},{"className":373},[],[375],{"type":48,"value":376},"open https:\u002F\u002Fwww.spotify.com\u002Faccount\u002Fprivacy\u002F",{"type":42,"tag":68,"props":378,"children":379},{},[380],{"type":48,"value":381},"Tell the user to log in, scroll to \"Download your data\", and click \"Request data\"",{"type":42,"tag":68,"props":383,"children":384},{},[385],{"type":48,"value":386},"Skip Spotify for now and continue with other sources — tell the user they can\nre-run the playlist skill after the data export arrives (usually a few days)",{"type":42,"tag":51,"props":388,"children":389},{},[390,395,397,403],{"type":42,"tag":72,"props":391,"children":392},{},[393],{"type":48,"value":394},"Spotify data format:",{"type":48,"value":396},"\nThe export contains ",{"type":42,"tag":80,"props":398,"children":400},{"className":399},[],[401],{"type":48,"value":402},"Streaming_History_Audio_YYYY.json",{"type":48,"value":404}," files (one per year), each\nis a JSON array of listening events. Key fields to extract:",{"type":42,"tag":64,"props":406,"children":407},{},[408,419,430,441,452],{"type":42,"tag":68,"props":409,"children":410},{},[411,417],{"type":42,"tag":80,"props":412,"children":414},{"className":413},[],[415],{"type":48,"value":416},"master_metadata_album_artist_name",{"type":48,"value":418}," — artist name",{"type":42,"tag":68,"props":420,"children":421},{},[422,428],{"type":42,"tag":80,"props":423,"children":425},{"className":424},[],[426],{"type":48,"value":427},"master_metadata_track_name",{"type":48,"value":429}," — track name",{"type":42,"tag":68,"props":431,"children":432},{},[433,439],{"type":42,"tag":80,"props":434,"children":436},{"className":435},[],[437],{"type":48,"value":438},"master_metadata_album_album_name",{"type":48,"value":440}," — album name",{"type":42,"tag":68,"props":442,"children":443},{},[444,450],{"type":42,"tag":80,"props":445,"children":447},{"className":446},[],[448],{"type":48,"value":449},"ms_played",{"type":48,"value":451}," — playback duration in milliseconds (use as weight: longer = stronger signal)",{"type":42,"tag":68,"props":453,"children":454},{},[455,461],{"type":42,"tag":80,"props":456,"children":458},{"className":457},[],[459],{"type":48,"value":460},"ts",{"type":48,"value":462}," — timestamp",{"type":42,"tag":51,"props":464,"children":465},{},[466,468,474,476,482],{"type":48,"value":467},"Filter out entries where ",{"type":42,"tag":80,"props":469,"children":471},{"className":470},[],[472],{"type":48,"value":473},"ms_played \u003C 30000",{"type":48,"value":475}," (less than 30 seconds, likely skipped).\nDo NOT use or store ",{"type":42,"tag":80,"props":477,"children":479},{"className":478},[],[480],{"type":48,"value":481},"ip_addr",{"type":48,"value":483}," or other sensitive fields.",{"type":42,"tag":51,"props":485,"children":486},{},[487],{"type":42,"tag":72,"props":488,"children":489},{},[490],{"type":48,"value":491},"What to extract from each source:",{"type":42,"tag":64,"props":493,"children":494},{},[495,500,505,510],{"type":42,"tag":68,"props":496,"children":497},{},[498],{"type":48,"value":499},"Track names + artist names (primary signal)",{"type":42,"tag":68,"props":501,"children":502},{},[503],{"type":48,"value":504},"Playlist names and membership (e.g., a playlist named \"Chinese Traditional\" tells you genre preference)",{"type":42,"tag":68,"props":506,"children":507},{},[508],{"type":48,"value":509},"Play counts or streaming duration if available (weight frequently played tracks higher)",{"type":42,"tag":68,"props":511,"children":512},{},[513],{"type":48,"value":514},"Scene\u002Fmood tags if available",{"type":42,"tag":51,"props":516,"children":517},{},[518],{"type":42,"tag":72,"props":519,"children":520},{},[521],{"type":48,"value":522},"Approach:",{"type":42,"tag":336,"props":524,"children":525},{},[526,538,543],{"type":42,"tag":68,"props":527,"children":528},{},[529,531,536],{"type":48,"value":530},"Check if Apple Music is available (try ",{"type":42,"tag":80,"props":532,"children":534},{"className":533},[],[535],{"type":48,"value":264},{"type":48,"value":537}," query)",{"type":42,"tag":68,"props":539,"children":540},{},[541],{"type":48,"value":542},"Ask if the user has a Spotify data export ZIP to provide",{"type":42,"tag":68,"props":544,"children":545},{},[546],{"type":48,"value":547},"If no sources available, ask the user to describe their taste manually",{"type":42,"tag":51,"props":549,"children":550},{},[551,556],{"type":42,"tag":72,"props":552,"children":553},{},[554],{"type":48,"value":555},"Privacy rule:",{"type":48,"value":557}," Never show raw track lists to the user. Only show aggregated stats.",{"type":42,"tag":172,"props":559,"children":560},{},[],{"type":42,"tag":57,"props":562,"children":564},{"id":563},"step-2-build-taste-profile",[565],{"type":48,"value":566},"Step 2: Build Taste Profile",{"type":42,"tag":51,"props":568,"children":569},{},[570],{"type":48,"value":571},"From the scanned data, build a taste profile covering:",{"type":42,"tag":64,"props":573,"children":574},{},[575,585,595,605,615,625],{"type":42,"tag":68,"props":576,"children":577},{},[578,583],{"type":42,"tag":72,"props":579,"children":580},{},[581],{"type":48,"value":582},"Genre distribution",{"type":48,"value":584}," — what styles the user listens to (e.g., J-pop 20%, R&B 15%, Classical 10%)",{"type":42,"tag":68,"props":586,"children":587},{},[588,593],{"type":42,"tag":72,"props":589,"children":590},{},[591],{"type":48,"value":592},"Mood tendencies",{"type":48,"value":594}," — emotional tone preferences (melancholic, energetic, calm, romantic, etc.)",{"type":42,"tag":68,"props":596,"children":597},{},[598,603],{"type":42,"tag":72,"props":599,"children":600},{},[601],{"type":48,"value":602},"Vocal preference",{"type":48,"value":604}," — male vs female voice ratio",{"type":42,"tag":68,"props":606,"children":607},{},[608,613],{"type":42,"tag":72,"props":609,"children":610},{},[611],{"type":48,"value":612},"Tempo preference",{"type":48,"value":614}," — slow \u002F moderate \u002F upbeat \u002F fast distribution",{"type":42,"tag":68,"props":616,"children":617},{},[618,623],{"type":42,"tag":72,"props":619,"children":620},{},[621],{"type":48,"value":622},"Language distribution",{"type":48,"value":624}," — zh, en, ja, ko, etc.",{"type":42,"tag":68,"props":626,"children":627},{},[628,633],{"type":42,"tag":72,"props":629,"children":630},{},[631],{"type":48,"value":632},"Top artists",{"type":48,"value":634}," — most listened artists",{"type":42,"tag":51,"props":636,"children":637},{},[638,643],{"type":42,"tag":72,"props":639,"children":640},{},[641],{"type":48,"value":642},"How to infer genre\u002Fmood from artist names:",{"type":48,"value":644},"\nMost raw data only has artist + track names without genre tags. To enrich this:",{"type":42,"tag":336,"props":646,"children":647},{},[648,661,682],{"type":42,"tag":68,"props":649,"children":650},{},[651,653,659],{"type":48,"value":652},"Look up artists in the local mapping table at ",{"type":42,"tag":80,"props":654,"children":656},{"className":655},[],[657],{"type":48,"value":658},"\u003CSKILL_DIR>\u002Fdata\u002Fartist_genre_map.json",{"type":48,"value":660},"\n— this table covers 20,000 popular artists with pre-mapped genres, vocal type, and language",{"type":42,"tag":68,"props":662,"children":663},{},[664,666,672,674,680],{"type":48,"value":665},"For artists not in the mapping table, query the MusicBrainz API:\n",{"type":42,"tag":80,"props":667,"children":669},{"className":668},[],[670],{"type":48,"value":671},"https:\u002F\u002Fmusicbrainz.org\u002Fws\u002F2\u002Fartist\u002F?query=artist:\u003Cname>&fmt=json",{"type":48,"value":673},"\n— extract genre tags from the response; respect rate limit (1 req\u002Fsec)\n— cache results to ",{"type":42,"tag":80,"props":675,"children":677},{"className":676},[],[678],{"type":48,"value":679},"\u003CSKILL_DIR>\u002Fdata\u002Fartist_cache.json",{"type":48,"value":681}," to avoid re-querying",{"type":42,"tag":68,"props":683,"children":684},{},[685],{"type":48,"value":686},"If MusicBrainz returns no results, skip the artist",{"type":42,"tag":51,"props":688,"children":689},{},[690],{"type":42,"tag":72,"props":691,"children":692},{},[693],{"type":48,"value":694},"Profile caching:",{"type":42,"tag":64,"props":696,"children":697},{},[698,709,714],{"type":42,"tag":68,"props":699,"children":700},{},[701,703],{"type":48,"value":702},"Save profile to ",{"type":42,"tag":80,"props":704,"children":706},{"className":705},[],[707],{"type":48,"value":708},"\u003CSKILL_DIR>\u002Fdata\u002Ftaste_profile.json",{"type":42,"tag":68,"props":710,"children":711},{},[712],{"type":48,"value":713},"If a profile less than 7 days old exists, reuse it (offer rescan option)",{"type":42,"tag":68,"props":715,"children":716},{},[717],{"type":48,"value":718},"If older or missing, rebuild",{"type":42,"tag":51,"props":720,"children":721},{},[722],{"type":42,"tag":72,"props":723,"children":724},{},[725],{"type":48,"value":726},"Show user a summary:",{"type":42,"tag":182,"props":728,"children":731},{"className":729,"code":730,"language":48},[185],"Your Music Profile:\n  Sources: Apple Music 230 | Spotify 140\n  Genres: J-pop 20% | R&B 15% | Classical 10% | Indie Pop 9%\n  Moods: Melancholic 25% | Calm 20% | Romantic 18%\n  Vocals: Female 65% | Male 35%\n  Top artists: Faye Wong, Ryuichi Sakamoto, Taylor Swift, Jay Chou, Taeko Onuki\n",[732],{"type":42,"tag":80,"props":733,"children":734},{"__ignoreMap":190},[735],{"type":48,"value":730},{"type":42,"tag":51,"props":737,"children":738},{},[739],{"type":48,"value":740},"If invoked by an agent with clear parameters, skip the confirmation and proceed.\nIf invoked by a user directly, ask if the profile looks right before continuing.",{"type":42,"tag":172,"props":742,"children":743},{},[],{"type":42,"tag":57,"props":745,"children":747},{"id":746},"step-3-plan-playlist",[748],{"type":48,"value":749},"Step 3: Plan Playlist",{"type":42,"tag":51,"props":751,"children":752},{},[753,758],{"type":42,"tag":72,"props":754,"children":755},{},[756],{"type":48,"value":757},"Ask the user for a theme\u002Fscene before generating.",{"type":48,"value":759}," This is the one\ninteractive step in the workflow. All other steps run autonomously.",{"type":42,"tag":51,"props":761,"children":762},{},[763],{"type":48,"value":764},"If the theme was already provided in the invocation (e.g., the agent or user\nsaid \"generate a late night chill playlist\"), use it directly and skip the question.\nOtherwise, ask:",{"type":42,"tag":182,"props":766,"children":769},{"className":767,"code":768,"language":48},[185],"What theme would you like for your playlist? Here are some suggestions:\n\n- \"Late night chill\" — relaxing slow songs\n- \"Commute\" — upbeat and energizing\n- \"Rainy day\" — melancholic & cozy\n- \"Surprise me\" — random based on your taste\n\nOr tell me your own vibe!\n",[770],{"type":42,"tag":80,"props":771,"children":772},{"__ignoreMap":190},[773],{"type":48,"value":768},{"type":42,"tag":51,"props":775,"children":776},{},[777],{"type":48,"value":778},"Once the user picks a theme, proceed automatically through generation, cover,\nplayback, and saving — no further confirmations needed.",{"type":42,"tag":51,"props":780,"children":781},{},[782],{"type":48,"value":783},"Determine playlist parameters:",{"type":42,"tag":64,"props":785,"children":786},{},[787,797,807],{"type":42,"tag":68,"props":788,"children":789},{},[790,795],{"type":42,"tag":72,"props":791,"children":792},{},[793],{"type":48,"value":794},"Theme\u002Fmood",{"type":48,"value":796}," — from user input, or default to top mood from profile",{"type":42,"tag":68,"props":798,"children":799},{},[800,805],{"type":42,"tag":72,"props":801,"children":802},{},[803],{"type":48,"value":804},"Song count",{"type":48,"value":806}," — from user input, or default to 5",{"type":42,"tag":68,"props":808,"children":809},{},[810,815],{"type":42,"tag":72,"props":811,"children":812},{},[813],{"type":48,"value":814},"Genre mix",{"type":48,"value":816}," — weighted by profile, with variety",{"type":42,"tag":51,"props":818,"children":819},{},[820,825],{"type":42,"tag":72,"props":821,"children":822},{},[823],{"type":48,"value":824},"Per-song lyrics language",{"type":48,"value":826}," follows genre:",{"type":42,"tag":216,"props":828,"children":829},{},[830,846],{"type":42,"tag":220,"props":831,"children":832},{},[833],{"type":42,"tag":224,"props":834,"children":835},{},[836,841],{"type":42,"tag":228,"props":837,"children":838},{},[839],{"type":48,"value":840},"Genre",{"type":42,"tag":228,"props":842,"children":843},{},[844],{"type":48,"value":845},"Lyrics language",{"type":42,"tag":244,"props":847,"children":848},{},[849,862,875,888,901,914],{"type":42,"tag":224,"props":850,"children":851},{},[852,857],{"type":42,"tag":251,"props":853,"children":854},{},[855],{"type":48,"value":856},"K-pop, Korean R&B\u002Fballad",{"type":42,"tag":251,"props":858,"children":859},{},[860],{"type":48,"value":861},"Korean",{"type":42,"tag":224,"props":863,"children":864},{},[865,870],{"type":42,"tag":251,"props":866,"children":867},{},[868],{"type":48,"value":869},"J-pop, city pop, J-rock",{"type":42,"tag":251,"props":871,"children":872},{},[873],{"type":48,"value":874},"Japanese",{"type":42,"tag":224,"props":876,"children":877},{},[878,883],{"type":42,"tag":251,"props":879,"children":880},{},[881],{"type":48,"value":882},"C-pop, Chinese-style, Mandopop",{"type":42,"tag":251,"props":884,"children":885},{},[886],{"type":48,"value":887},"Chinese",{"type":42,"tag":224,"props":889,"children":890},{},[891,896],{"type":42,"tag":251,"props":892,"children":893},{},[894],{"type":48,"value":895},"Western pop\u002Findie\u002Frock\u002Fjazz\u002FR&B",{"type":42,"tag":251,"props":897,"children":898},{},[899],{"type":48,"value":900},"English",{"type":42,"tag":224,"props":902,"children":903},{},[904,909],{"type":42,"tag":251,"props":905,"children":906},{},[907],{"type":48,"value":908},"Latin pop, bossa nova",{"type":42,"tag":251,"props":910,"children":911},{},[912],{"type":48,"value":913},"Spanish\u002FPortuguese",{"type":42,"tag":224,"props":915,"children":916},{},[917,922],{"type":42,"tag":251,"props":918,"children":919},{},[920],{"type":48,"value":921},"Instrumental, lo-fi, ambient",{"type":42,"tag":251,"props":923,"children":924},{},[925,927,933],{"type":48,"value":926},"No lyrics (",{"type":42,"tag":80,"props":928,"children":930},{"className":929},[],[931],{"type":48,"value":932},"--instrumental",{"type":48,"value":306},{"type":42,"tag":51,"props":935,"children":936},{},[937],{"type":48,"value":938},"Embed language naturally into the mmx prompt via vocal description:",{"type":42,"tag":64,"props":940,"children":941},{},[942,953],{"type":42,"tag":68,"props":943,"children":944},{},[945,947],{"type":48,"value":946},"Good: ",{"type":42,"tag":80,"props":948,"children":950},{"className":949},[],[951],{"type":48,"value":952},"\"A melancholy Chinese R&B ballad with a gentle introspective male voice, electric piano, bass, slow tempo\"",{"type":42,"tag":68,"props":954,"children":955},{},[956,958],{"type":48,"value":957},"Bad: ",{"type":42,"tag":80,"props":959,"children":961},{"className":960},[],[962],{"type":48,"value":963},"\"R&B ballad, melancholy... sung in Chinese\"",{"type":42,"tag":51,"props":965,"children":966},{},[967,972,974,979,981,987,989,994],{"type":42,"tag":72,"props":968,"children":969},{},[970],{"type":48,"value":971},"Show the playlist plan before generating.",{"type":48,"value":973}," Display each song with two lines:\nthe first line shows genre, mood, and vocal\u002Flanguage tag; the second line shows\na short description of the song. ",{"type":42,"tag":72,"props":975,"children":976},{},[977],{"type":48,"value":978},"All user-facing text (plan, descriptions, moods,\nlabels) must be in the same language as the user's prompt.",{"type":48,"value":980}," Only the actual ",{"type":42,"tag":80,"props":982,"children":984},{"className":983},[],[985],{"type":48,"value":986},"--prompt",{"type":48,"value":988},"\npassed to ",{"type":42,"tag":80,"props":990,"children":992},{"className":991},[],[993],{"type":48,"value":168},{"type":48,"value":995}," should be in English — this is internal and should NOT be shown to\nthe user. Example:",{"type":42,"tag":182,"props":997,"children":1000},{"className":998,"code":999,"language":48},[185],"Playlist Plan: Late Night Chill (5 songs)\n\n1. Neo-soul R&B — introspective  English\u002Fmale vocal\n   A mellow neo-soul R&B ballad with warm baritone, electric piano, smooth bass\n\n2. Lo-fi hip-hop — dreamy  Instrumental\n   Dreamy lo-fi with sampled piano, vinyl crackle, soft electronic drums\n\n3. Smooth jazz — romantic  English\u002Ffemale vocal\n   Silky female voice, saxophone, piano, romantic starlit night\n\n4. Indie folk — melancholic  English\u002Fmale vocal\n   Tender male voice, acoustic guitar, harmonica, quiet solitude\n\n5. Ambient electronic — calm  Instrumental\n   Soft synth pads, gentle arpeggios, dreamy atmosphere\n",[1001],{"type":42,"tag":80,"props":1002,"children":1003},{"__ignoreMap":190},[1004],{"type":48,"value":999},{"type":42,"tag":51,"props":1006,"children":1007},{},[1008],{"type":48,"value":1009},"After showing the plan, proceed directly to generation — no confirmation needed.\nThe user has already chosen the theme; the plan is shown for transparency, not approval.",{"type":42,"tag":172,"props":1011,"children":1012},{},[],{"type":42,"tag":57,"props":1014,"children":1016},{"id":1015},"step-4-generate-songs",[1017],{"type":48,"value":1018},"Step 4: Generate Songs",{"type":42,"tag":51,"props":1020,"children":1021},{},[1022,1024,1030,1032,1037],{"type":48,"value":1023},"Use ",{"type":42,"tag":80,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":48,"value":1029},"mmx music generate",{"type":48,"value":1031}," to create all songs. ",{"type":42,"tag":72,"props":1033,"children":1034},{},[1035],{"type":48,"value":1036},"Generate concurrently",{"type":48,"value":1038}," (up to 5 in parallel).",{"type":42,"tag":182,"props":1040,"children":1044},{"className":1041,"code":1042,"language":1043,"meta":190,"style":190},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Example: 5 songs in parallel\nmmx music generate --prompt \"\u003Cenglish_prompt_1>\" --lyrics-optimizer \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cname>\u002F01_desc.mp3 --quiet --non-interactive &\nmmx music generate --prompt \"\u003Cenglish_prompt_2>\" --instrumental \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cname>\u002F02_desc.mp3 --quiet --non-interactive &\n# ... more songs ...\nwait\n","bash",[1045],{"type":42,"tag":80,"props":1046,"children":1047},{"__ignoreMap":190},[1048,1060,1112,1166,1208,1253,1262],{"type":42,"tag":1049,"props":1050,"children":1053},"span",{"class":1051,"line":1052},"line",1,[1054],{"type":42,"tag":1049,"props":1055,"children":1057},{"style":1056},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1058],{"type":48,"value":1059},"# Example: 5 songs in parallel\n",{"type":42,"tag":1049,"props":1061,"children":1063},{"class":1051,"line":1062},2,[1064,1069,1075,1080,1085,1091,1096,1101,1106],{"type":42,"tag":1049,"props":1065,"children":1067},{"style":1066},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1068],{"type":48,"value":168},{"type":42,"tag":1049,"props":1070,"children":1072},{"style":1071},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1073],{"type":48,"value":1074}," music",{"type":42,"tag":1049,"props":1076,"children":1077},{"style":1071},[1078],{"type":48,"value":1079}," generate",{"type":42,"tag":1049,"props":1081,"children":1082},{"style":1071},[1083],{"type":48,"value":1084}," --prompt",{"type":42,"tag":1049,"props":1086,"children":1088},{"style":1087},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1089],{"type":48,"value":1090}," \"",{"type":42,"tag":1049,"props":1092,"children":1093},{"style":1071},[1094],{"type":48,"value":1095},"\u003Cenglish_prompt_1>",{"type":42,"tag":1049,"props":1097,"children":1098},{"style":1087},[1099],{"type":48,"value":1100},"\"",{"type":42,"tag":1049,"props":1102,"children":1103},{"style":1071},[1104],{"type":48,"value":1105}," --lyrics-optimizer",{"type":42,"tag":1049,"props":1107,"children":1109},{"style":1108},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1110],{"type":48,"value":1111}," \\\n",{"type":42,"tag":1049,"props":1113,"children":1115},{"class":1051,"line":1114},3,[1116,1121,1126,1131,1136,1141,1146,1151,1156,1161],{"type":42,"tag":1049,"props":1117,"children":1118},{"style":1071},[1119],{"type":48,"value":1120},"  --out",{"type":42,"tag":1049,"props":1122,"children":1123},{"style":1071},[1124],{"type":48,"value":1125}," ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F",{"type":42,"tag":1049,"props":1127,"children":1128},{"style":1087},[1129],{"type":48,"value":1130},"\u003C",{"type":42,"tag":1049,"props":1132,"children":1133},{"style":1071},[1134],{"type":48,"value":1135},"nam",{"type":42,"tag":1049,"props":1137,"children":1138},{"style":1108},[1139],{"type":48,"value":1140},"e",{"type":42,"tag":1049,"props":1142,"children":1143},{"style":1087},[1144],{"type":48,"value":1145},">",{"type":42,"tag":1049,"props":1147,"children":1148},{"style":1071},[1149],{"type":48,"value":1150},"\u002F01_desc.mp3",{"type":42,"tag":1049,"props":1152,"children":1153},{"style":1071},[1154],{"type":48,"value":1155}," --quiet",{"type":42,"tag":1049,"props":1157,"children":1158},{"style":1071},[1159],{"type":48,"value":1160}," --non-interactive",{"type":42,"tag":1049,"props":1162,"children":1163},{"style":1087},[1164],{"type":48,"value":1165}," &\n",{"type":42,"tag":1049,"props":1167,"children":1169},{"class":1051,"line":1168},4,[1170,1174,1178,1182,1186,1190,1195,1199,1204],{"type":42,"tag":1049,"props":1171,"children":1172},{"style":1066},[1173],{"type":48,"value":168},{"type":42,"tag":1049,"props":1175,"children":1176},{"style":1071},[1177],{"type":48,"value":1074},{"type":42,"tag":1049,"props":1179,"children":1180},{"style":1071},[1181],{"type":48,"value":1079},{"type":42,"tag":1049,"props":1183,"children":1184},{"style":1071},[1185],{"type":48,"value":1084},{"type":42,"tag":1049,"props":1187,"children":1188},{"style":1087},[1189],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1191,"children":1192},{"style":1071},[1193],{"type":48,"value":1194},"\u003Cenglish_prompt_2>",{"type":42,"tag":1049,"props":1196,"children":1197},{"style":1087},[1198],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1200,"children":1201},{"style":1071},[1202],{"type":48,"value":1203}," --instrumental",{"type":42,"tag":1049,"props":1205,"children":1206},{"style":1108},[1207],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1209,"children":1211},{"class":1051,"line":1210},5,[1212,1216,1220,1224,1228,1232,1236,1241,1245,1249],{"type":42,"tag":1049,"props":1213,"children":1214},{"style":1071},[1215],{"type":48,"value":1120},{"type":42,"tag":1049,"props":1217,"children":1218},{"style":1071},[1219],{"type":48,"value":1125},{"type":42,"tag":1049,"props":1221,"children":1222},{"style":1087},[1223],{"type":48,"value":1130},{"type":42,"tag":1049,"props":1225,"children":1226},{"style":1071},[1227],{"type":48,"value":1135},{"type":42,"tag":1049,"props":1229,"children":1230},{"style":1108},[1231],{"type":48,"value":1140},{"type":42,"tag":1049,"props":1233,"children":1234},{"style":1087},[1235],{"type":48,"value":1145},{"type":42,"tag":1049,"props":1237,"children":1238},{"style":1071},[1239],{"type":48,"value":1240},"\u002F02_desc.mp3",{"type":42,"tag":1049,"props":1242,"children":1243},{"style":1071},[1244],{"type":48,"value":1155},{"type":42,"tag":1049,"props":1246,"children":1247},{"style":1071},[1248],{"type":48,"value":1160},{"type":42,"tag":1049,"props":1250,"children":1251},{"style":1087},[1252],{"type":48,"value":1165},{"type":42,"tag":1049,"props":1254,"children":1256},{"class":1051,"line":1255},6,[1257],{"type":42,"tag":1049,"props":1258,"children":1259},{"style":1056},[1260],{"type":48,"value":1261},"# ... more songs ...\n",{"type":42,"tag":1049,"props":1263,"children":1265},{"class":1051,"line":1264},7,[1266],{"type":42,"tag":1049,"props":1267,"children":1269},{"style":1268},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1270],{"type":48,"value":1271},"wait\n",{"type":42,"tag":51,"props":1273,"children":1274},{},[1275],{"type":42,"tag":72,"props":1276,"children":1277},{},[1278],{"type":48,"value":1279},"Key flags:",{"type":42,"tag":64,"props":1281,"children":1282},{},[1283,1294,1304,1315,1347,1358],{"type":42,"tag":68,"props":1284,"children":1285},{},[1286,1292],{"type":42,"tag":80,"props":1287,"children":1289},{"className":1288},[],[1290],{"type":48,"value":1291},"--lyrics-optimizer",{"type":48,"value":1293}," — auto-generate lyrics from prompt (for vocal tracks)",{"type":42,"tag":68,"props":1295,"children":1296},{},[1297,1302],{"type":42,"tag":80,"props":1298,"children":1300},{"className":1299},[],[1301],{"type":48,"value":932},{"type":48,"value":1303}," — no vocals",{"type":42,"tag":68,"props":1305,"children":1306},{},[1307,1313],{"type":42,"tag":80,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":48,"value":1312},"--vocals \"\u003Cdescription>\"",{"type":48,"value":1314}," — vocal style (e.g., \"warm Chinese male baritone\")",{"type":42,"tag":68,"props":1316,"children":1317},{},[1318,1324,1325,1331,1332,1338,1339,1345],{"type":42,"tag":80,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":48,"value":1323},"--genre",{"type":48,"value":123},{"type":42,"tag":80,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":48,"value":1330},"--mood",{"type":48,"value":123},{"type":42,"tag":80,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":48,"value":1337},"--tempo",{"type":48,"value":123},{"type":42,"tag":80,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":48,"value":1344},"--instruments",{"type":48,"value":1346}," — fine-grained control",{"type":42,"tag":68,"props":1348,"children":1349},{},[1350,1356],{"type":42,"tag":80,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":48,"value":1355},"--quiet --non-interactive",{"type":48,"value":1357}," — suppress interactive output for batch mode",{"type":42,"tag":68,"props":1359,"children":1360},{},[1361,1367],{"type":42,"tag":80,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":48,"value":1366},"--out \u003Cpath>",{"type":48,"value":1368}," — save to file",{"type":42,"tag":51,"props":1370,"children":1371},{},[1372,1377,1379,1385,1387,1393],{"type":42,"tag":72,"props":1373,"children":1374},{},[1375],{"type":48,"value":1376},"File naming:",{"type":48,"value":1378}," ",{"type":42,"tag":80,"props":1380,"children":1382},{"className":1381},[],[1383],{"type":48,"value":1384},"\u003CNN>_\u003Cshort_desc>.mp3",{"type":48,"value":1386}," (e.g., ",{"type":42,"tag":80,"props":1388,"children":1390},{"className":1389},[],[1391],{"type":48,"value":1392},"01_rnb_midnight.mp3",{"type":48,"value":306},{"type":42,"tag":51,"props":1395,"children":1396},{},[1397,1402,1403],{"type":42,"tag":72,"props":1398,"children":1399},{},[1400],{"type":48,"value":1401},"Output directory:",{"type":48,"value":1378},{"type":42,"tag":80,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":48,"value":1408},"~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cplaylist_name>\u002F",{"type":42,"tag":51,"props":1410,"children":1411},{},[1412,1414,1419],{"type":48,"value":1413},"If a song fails, ",{"type":42,"tag":72,"props":1415,"children":1416},{},[1417],{"type":48,"value":1418},"retry once",{"type":48,"value":1420}," before skipping. Log the error and continue with the rest.",{"type":42,"tag":172,"props":1422,"children":1423},{},[],{"type":42,"tag":57,"props":1425,"children":1427},{"id":1426},"step-5-generate-album-cover",[1428],{"type":48,"value":1429},"Step 5: Generate Album Cover",{"type":42,"tag":51,"props":1431,"children":1432},{},[1433,1435,1440,1442,1448],{"type":48,"value":1434},"Generate the album cover ",{"type":42,"tag":72,"props":1436,"children":1437},{},[1438],{"type":48,"value":1439},"concurrently with the songs",{"type":48,"value":1441}," (Step 4), not after.\nLaunch the ",{"type":42,"tag":80,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":48,"value":1447},"mmx image generate",{"type":48,"value":1449}," call in parallel with the song generation calls.",{"type":42,"tag":51,"props":1451,"children":1452},{},[1453],{"type":48,"value":1454},"Craft a prompt that reflects the playlist's theme, mood, and genre mix. The image\nshould feel like an album cover — artistic, evocative, not literal.",{"type":42,"tag":182,"props":1456,"children":1458},{"className":1041,"code":1457,"language":1043,"meta":190,"style":190},"mmx image generate \\\n  --prompt \"\u003Ccover description based on playlist theme and mood>\" \\\n  --aspect-ratio 1:1 \\\n  --out-dir ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F\u003Cplaylist_name>\u002F \\\n  --out-prefix cover \\\n  --quiet\n",[1459],{"type":42,"tag":80,"props":1460,"children":1461},{"__ignoreMap":190},[1462,1482,1507,1524,1562,1579],{"type":42,"tag":1049,"props":1463,"children":1464},{"class":1051,"line":1052},[1465,1469,1474,1478],{"type":42,"tag":1049,"props":1466,"children":1467},{"style":1066},[1468],{"type":48,"value":168},{"type":42,"tag":1049,"props":1470,"children":1471},{"style":1071},[1472],{"type":48,"value":1473}," image",{"type":42,"tag":1049,"props":1475,"children":1476},{"style":1071},[1477],{"type":48,"value":1079},{"type":42,"tag":1049,"props":1479,"children":1480},{"style":1108},[1481],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1483,"children":1484},{"class":1051,"line":1062},[1485,1490,1494,1499,1503],{"type":42,"tag":1049,"props":1486,"children":1487},{"style":1071},[1488],{"type":48,"value":1489},"  --prompt",{"type":42,"tag":1049,"props":1491,"children":1492},{"style":1087},[1493],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1495,"children":1496},{"style":1071},[1497],{"type":48,"value":1498},"\u003Ccover description based on playlist theme and mood>",{"type":42,"tag":1049,"props":1500,"children":1501},{"style":1087},[1502],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1504,"children":1505},{"style":1108},[1506],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1508,"children":1509},{"class":1051,"line":1114},[1510,1515,1520],{"type":42,"tag":1049,"props":1511,"children":1512},{"style":1071},[1513],{"type":48,"value":1514},"  --aspect-ratio",{"type":42,"tag":1049,"props":1516,"children":1517},{"style":1071},[1518],{"type":48,"value":1519}," 1:1",{"type":42,"tag":1049,"props":1521,"children":1522},{"style":1108},[1523],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1525,"children":1526},{"class":1051,"line":1168},[1527,1532,1536,1540,1545,1549,1553,1558],{"type":42,"tag":1049,"props":1528,"children":1529},{"style":1071},[1530],{"type":48,"value":1531},"  --out-dir",{"type":42,"tag":1049,"props":1533,"children":1534},{"style":1071},[1535],{"type":48,"value":1125},{"type":42,"tag":1049,"props":1537,"children":1538},{"style":1087},[1539],{"type":48,"value":1130},{"type":42,"tag":1049,"props":1541,"children":1542},{"style":1071},[1543],{"type":48,"value":1544},"playlist_nam",{"type":42,"tag":1049,"props":1546,"children":1547},{"style":1108},[1548],{"type":48,"value":1140},{"type":42,"tag":1049,"props":1550,"children":1551},{"style":1087},[1552],{"type":48,"value":1145},{"type":42,"tag":1049,"props":1554,"children":1555},{"style":1071},[1556],{"type":48,"value":1557},"\u002F",{"type":42,"tag":1049,"props":1559,"children":1560},{"style":1108},[1561],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1563,"children":1564},{"class":1051,"line":1210},[1565,1570,1575],{"type":42,"tag":1049,"props":1566,"children":1567},{"style":1071},[1568],{"type":48,"value":1569},"  --out-prefix",{"type":42,"tag":1049,"props":1571,"children":1572},{"style":1071},[1573],{"type":48,"value":1574}," cover",{"type":42,"tag":1049,"props":1576,"children":1577},{"style":1108},[1578],{"type":48,"value":1111},{"type":42,"tag":1049,"props":1580,"children":1581},{"class":1051,"line":1255},[1582],{"type":42,"tag":1049,"props":1583,"children":1584},{"style":1071},[1585],{"type":48,"value":1586},"  --quiet\n",{"type":42,"tag":51,"props":1588,"children":1589},{},[1590],{"type":42,"tag":72,"props":1591,"children":1592},{},[1593],{"type":48,"value":1594},"Prompt guidance:",{"type":42,"tag":64,"props":1596,"children":1597},{},[1598,1603,1608,1613],{"type":42,"tag":68,"props":1599,"children":1600},{},[1601],{"type":48,"value":1602},"Abstract\u002Fartistic style works best for album covers",{"type":42,"tag":68,"props":1604,"children":1605},{},[1606],{"type":48,"value":1607},"Reference the dominant mood and genre (e.g., \"dreamy late-night cityscape, neon reflections, lo-fi aesthetic\")",{"type":42,"tag":68,"props":1609,"children":1610},{},[1611],{"type":48,"value":1612},"Do NOT include text or song titles in the image prompt",{"type":42,"tag":68,"props":1614,"children":1615},{},[1616],{"type":48,"value":1617},"Aspect ratio should be 1:1 (square, standard album cover)",{"type":42,"tag":172,"props":1619,"children":1620},{},[],{"type":42,"tag":57,"props":1622,"children":1624},{"id":1623},"step-6-playback",[1625],{"type":48,"value":1626},"Step 6: Playback",{"type":42,"tag":51,"props":1628,"children":1629},{},[1630],{"type":48,"value":1631},"Detect an available player and play the playlist in order:",{"type":42,"tag":216,"props":1633,"children":1634},{},[1635,1656],{"type":42,"tag":220,"props":1636,"children":1637},{},[1638],{"type":42,"tag":224,"props":1639,"children":1640},{},[1641,1646,1651],{"type":42,"tag":228,"props":1642,"children":1643},{},[1644],{"type":48,"value":1645},"Player",{"type":42,"tag":228,"props":1647,"children":1648},{},[1649],{"type":48,"value":1650},"Command",{"type":42,"tag":228,"props":1652,"children":1653},{},[1654],{"type":48,"value":1655},"Controls",{"type":42,"tag":244,"props":1657,"children":1658},{},[1659,1686,1712],{"type":42,"tag":224,"props":1660,"children":1661},{},[1662,1666,1675],{"type":42,"tag":251,"props":1663,"children":1664},{},[1665],{"type":48,"value":121},{"type":42,"tag":251,"props":1667,"children":1668},{},[1669],{"type":42,"tag":80,"props":1670,"children":1672},{"className":1671},[],[1673],{"type":48,"value":1674},"mpv --no-video \u003Cfile>",{"type":42,"tag":251,"props":1676,"children":1677},{},[1678,1684],{"type":42,"tag":80,"props":1679,"children":1681},{"className":1680},[],[1682],{"type":48,"value":1683},"q",{"type":48,"value":1685}," skip, Space pause, arrows seek",{"type":42,"tag":224,"props":1687,"children":1688},{},[1689,1693,1702],{"type":42,"tag":251,"props":1690,"children":1691},{},[1692],{"type":48,"value":129},{"type":42,"tag":251,"props":1694,"children":1695},{},[1696],{"type":42,"tag":80,"props":1697,"children":1699},{"className":1698},[],[1700],{"type":48,"value":1701},"ffplay -nodisp -autoexit \u003Cfile>",{"type":42,"tag":251,"props":1703,"children":1704},{},[1705,1710],{"type":42,"tag":80,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":48,"value":1683},{"type":48,"value":1711}," skip",{"type":42,"tag":224,"props":1713,"children":1714},{},[1715,1719,1728],{"type":42,"tag":251,"props":1716,"children":1717},{},[1718],{"type":48,"value":137},{"type":42,"tag":251,"props":1720,"children":1721},{},[1722],{"type":42,"tag":80,"props":1723,"children":1725},{"className":1724},[],[1726],{"type":48,"value":1727},"afplay \u003Cfile>",{"type":42,"tag":251,"props":1729,"children":1730},{},[1731],{"type":48,"value":1732},"Ctrl+C skip",{"type":42,"tag":51,"props":1734,"children":1735},{},[1736,1738,1744],{"type":48,"value":1737},"Play all ",{"type":42,"tag":80,"props":1739,"children":1741},{"className":1740},[],[1742],{"type":48,"value":1743},".mp3",{"type":48,"value":1745}," files in the playlist directory in filename order.\nOnly play the songs generated in this session — if the directory has old files\nfrom a previous run, clean them out first or filter by the known filenames.\nIf no player is found, just show the file paths.",{"type":42,"tag":172,"props":1747,"children":1748},{},[],{"type":42,"tag":57,"props":1750,"children":1752},{"id":1751},"step-7-save-feedback",[1753],{"type":48,"value":1754},"Step 7: Save & Feedback",{"type":42,"tag":51,"props":1756,"children":1757},{},[1758,1760,1766],{"type":48,"value":1759},"Save playlist metadata to ",{"type":42,"tag":80,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":48,"value":1765},"\u003Cplaylist_dir>\u002Fplaylist.json",{"type":48,"value":1767},":",{"type":42,"tag":182,"props":1769,"children":1773},{"className":1770,"code":1771,"language":1772,"meta":190,"style":190},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"Late Night Chill\",\n  \"theme\": \"late night chill\",\n  \"created_at\": \"2026-04-11T22:00:00\",\n  \"song_count\": 5,\n  \"cover\": \"cover_001.png\",\n  \"songs\": [\n    {\"index\": 1, \"filename\": \"01_rnb_midnight.mp3\", \"prompt\": \"...\", \"rating\": null}\n  ]\n}\n","json",[1774],{"type":42,"tag":80,"props":1775,"children":1776},{"__ignoreMap":190},[1777,1785,1825,1862,1899,1929,1966,1991,2116,2125],{"type":42,"tag":1049,"props":1778,"children":1779},{"class":1051,"line":1052},[1780],{"type":42,"tag":1049,"props":1781,"children":1782},{"style":1087},[1783],{"type":48,"value":1784},"{\n",{"type":42,"tag":1049,"props":1786,"children":1787},{"class":1051,"line":1062},[1788,1793,1799,1803,1807,1811,1816,1820],{"type":42,"tag":1049,"props":1789,"children":1790},{"style":1087},[1791],{"type":48,"value":1792},"  \"",{"type":42,"tag":1049,"props":1794,"children":1796},{"style":1795},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1797],{"type":48,"value":1798},"name",{"type":42,"tag":1049,"props":1800,"children":1801},{"style":1087},[1802],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1804,"children":1805},{"style":1087},[1806],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1808,"children":1809},{"style":1087},[1810],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1812,"children":1813},{"style":1071},[1814],{"type":48,"value":1815},"Late Night Chill",{"type":42,"tag":1049,"props":1817,"children":1818},{"style":1087},[1819],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1821,"children":1822},{"style":1087},[1823],{"type":48,"value":1824},",\n",{"type":42,"tag":1049,"props":1826,"children":1827},{"class":1051,"line":1114},[1828,1832,1837,1841,1845,1849,1854,1858],{"type":42,"tag":1049,"props":1829,"children":1830},{"style":1087},[1831],{"type":48,"value":1792},{"type":42,"tag":1049,"props":1833,"children":1834},{"style":1795},[1835],{"type":48,"value":1836},"theme",{"type":42,"tag":1049,"props":1838,"children":1839},{"style":1087},[1840],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1842,"children":1843},{"style":1087},[1844],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1846,"children":1847},{"style":1087},[1848],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1850,"children":1851},{"style":1071},[1852],{"type":48,"value":1853},"late night chill",{"type":42,"tag":1049,"props":1855,"children":1856},{"style":1087},[1857],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1859,"children":1860},{"style":1087},[1861],{"type":48,"value":1824},{"type":42,"tag":1049,"props":1863,"children":1864},{"class":1051,"line":1168},[1865,1869,1874,1878,1882,1886,1891,1895],{"type":42,"tag":1049,"props":1866,"children":1867},{"style":1087},[1868],{"type":48,"value":1792},{"type":42,"tag":1049,"props":1870,"children":1871},{"style":1795},[1872],{"type":48,"value":1873},"created_at",{"type":42,"tag":1049,"props":1875,"children":1876},{"style":1087},[1877],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1879,"children":1880},{"style":1087},[1881],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1883,"children":1884},{"style":1087},[1885],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1887,"children":1888},{"style":1071},[1889],{"type":48,"value":1890},"2026-04-11T22:00:00",{"type":42,"tag":1049,"props":1892,"children":1893},{"style":1087},[1894],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1896,"children":1897},{"style":1087},[1898],{"type":48,"value":1824},{"type":42,"tag":1049,"props":1900,"children":1901},{"class":1051,"line":1210},[1902,1906,1911,1915,1919,1925],{"type":42,"tag":1049,"props":1903,"children":1904},{"style":1087},[1905],{"type":48,"value":1792},{"type":42,"tag":1049,"props":1907,"children":1908},{"style":1795},[1909],{"type":48,"value":1910},"song_count",{"type":42,"tag":1049,"props":1912,"children":1913},{"style":1087},[1914],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1916,"children":1917},{"style":1087},[1918],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1920,"children":1922},{"style":1921},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1923],{"type":48,"value":1924}," 5",{"type":42,"tag":1049,"props":1926,"children":1927},{"style":1087},[1928],{"type":48,"value":1824},{"type":42,"tag":1049,"props":1930,"children":1931},{"class":1051,"line":1255},[1932,1936,1941,1945,1949,1953,1958,1962],{"type":42,"tag":1049,"props":1933,"children":1934},{"style":1087},[1935],{"type":48,"value":1792},{"type":42,"tag":1049,"props":1937,"children":1938},{"style":1795},[1939],{"type":48,"value":1940},"cover",{"type":42,"tag":1049,"props":1942,"children":1943},{"style":1087},[1944],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1946,"children":1947},{"style":1087},[1948],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1950,"children":1951},{"style":1087},[1952],{"type":48,"value":1090},{"type":42,"tag":1049,"props":1954,"children":1955},{"style":1071},[1956],{"type":48,"value":1957},"cover_001.png",{"type":42,"tag":1049,"props":1959,"children":1960},{"style":1087},[1961],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1963,"children":1964},{"style":1087},[1965],{"type":48,"value":1824},{"type":42,"tag":1049,"props":1967,"children":1968},{"class":1051,"line":1264},[1969,1973,1978,1982,1986],{"type":42,"tag":1049,"props":1970,"children":1971},{"style":1087},[1972],{"type":48,"value":1792},{"type":42,"tag":1049,"props":1974,"children":1975},{"style":1795},[1976],{"type":48,"value":1977},"songs",{"type":42,"tag":1049,"props":1979,"children":1980},{"style":1087},[1981],{"type":48,"value":1100},{"type":42,"tag":1049,"props":1983,"children":1984},{"style":1087},[1985],{"type":48,"value":1767},{"type":42,"tag":1049,"props":1987,"children":1988},{"style":1087},[1989],{"type":48,"value":1990}," [\n",{"type":42,"tag":1049,"props":1992,"children":1994},{"class":1051,"line":1993},8,[1995,2000,2004,2009,2013,2017,2022,2027,2031,2036,2040,2044,2048,2052,2056,2060,2064,2069,2073,2077,2081,2086,2090,2094,2098,2103,2107,2111],{"type":42,"tag":1049,"props":1996,"children":1997},{"style":1087},[1998],{"type":48,"value":1999},"    {",{"type":42,"tag":1049,"props":2001,"children":2002},{"style":1087},[2003],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2005,"children":2006},{"style":1066},[2007],{"type":48,"value":2008},"index",{"type":42,"tag":1049,"props":2010,"children":2011},{"style":1087},[2012],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2014,"children":2015},{"style":1087},[2016],{"type":48,"value":1767},{"type":42,"tag":1049,"props":2018,"children":2019},{"style":1921},[2020],{"type":48,"value":2021}," 1",{"type":42,"tag":1049,"props":2023,"children":2024},{"style":1087},[2025],{"type":48,"value":2026},",",{"type":42,"tag":1049,"props":2028,"children":2029},{"style":1087},[2030],{"type":48,"value":1090},{"type":42,"tag":1049,"props":2032,"children":2033},{"style":1066},[2034],{"type":48,"value":2035},"filename",{"type":42,"tag":1049,"props":2037,"children":2038},{"style":1087},[2039],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2041,"children":2042},{"style":1087},[2043],{"type":48,"value":1767},{"type":42,"tag":1049,"props":2045,"children":2046},{"style":1087},[2047],{"type":48,"value":1090},{"type":42,"tag":1049,"props":2049,"children":2050},{"style":1071},[2051],{"type":48,"value":1392},{"type":42,"tag":1049,"props":2053,"children":2054},{"style":1087},[2055],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2057,"children":2058},{"style":1087},[2059],{"type":48,"value":2026},{"type":42,"tag":1049,"props":2061,"children":2062},{"style":1087},[2063],{"type":48,"value":1090},{"type":42,"tag":1049,"props":2065,"children":2066},{"style":1066},[2067],{"type":48,"value":2068},"prompt",{"type":42,"tag":1049,"props":2070,"children":2071},{"style":1087},[2072],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2074,"children":2075},{"style":1087},[2076],{"type":48,"value":1767},{"type":42,"tag":1049,"props":2078,"children":2079},{"style":1087},[2080],{"type":48,"value":1090},{"type":42,"tag":1049,"props":2082,"children":2083},{"style":1071},[2084],{"type":48,"value":2085},"...",{"type":42,"tag":1049,"props":2087,"children":2088},{"style":1087},[2089],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2091,"children":2092},{"style":1087},[2093],{"type":48,"value":2026},{"type":42,"tag":1049,"props":2095,"children":2096},{"style":1087},[2097],{"type":48,"value":1090},{"type":42,"tag":1049,"props":2099,"children":2100},{"style":1066},[2101],{"type":48,"value":2102},"rating",{"type":42,"tag":1049,"props":2104,"children":2105},{"style":1087},[2106],{"type":48,"value":1100},{"type":42,"tag":1049,"props":2108,"children":2109},{"style":1087},[2110],{"type":48,"value":1767},{"type":42,"tag":1049,"props":2112,"children":2113},{"style":1087},[2114],{"type":48,"value":2115}," null}\n",{"type":42,"tag":1049,"props":2117,"children":2119},{"class":1051,"line":2118},9,[2120],{"type":42,"tag":1049,"props":2121,"children":2122},{"style":1087},[2123],{"type":48,"value":2124},"  ]\n",{"type":42,"tag":1049,"props":2126,"children":2128},{"class":1051,"line":2127},10,[2129],{"type":42,"tag":1049,"props":2130,"children":2131},{"style":1087},[2132],{"type":48,"value":2133},"}\n",{"type":42,"tag":51,"props":2135,"children":2136},{},[2137],{"type":48,"value":2138},"If the user is present, ask for feedback (per-song or overall). Update the\ntaste profile's feedback section with liked\u002Fdisliked genres and prompts to\nimprove future playlists.",{"type":42,"tag":172,"props":2140,"children":2141},{},[],{"type":42,"tag":57,"props":2143,"children":2145},{"id":2144},"replaying-playlists",[2146],{"type":48,"value":2147},"Replaying Playlists",{"type":42,"tag":51,"props":2149,"children":2150},{},[2151,2153,2159],{"type":48,"value":2152},"If asked to play a previous playlist: ",{"type":42,"tag":80,"props":2154,"children":2156},{"className":2155},[],[2157],{"type":48,"value":2158},"ls ~\u002FMusic\u002Fminimax-gen\u002Fplaylists\u002F",{"type":48,"value":2160},", show\navailable ones, and play the selected one.",{"type":42,"tag":172,"props":2162,"children":2163},{},[],{"type":42,"tag":57,"props":2165,"children":2167},{"id":2166},"notes",[2168],{"type":48,"value":2169},"Notes",{"type":42,"tag":64,"props":2171,"children":2172},{},[2173,2183,2193,2218],{"type":42,"tag":68,"props":2174,"children":2175},{},[2176,2181],{"type":42,"tag":72,"props":2177,"children":2178},{},[2179],{"type":48,"value":2180},"Agent vs user invocation",{"type":48,"value":2182},": The theme\u002Fscene question (Step 3) is the single\ninteractive touchpoint. If the theme is already provided in the invocation,\nskip the question. Everything else runs autonomously.",{"type":42,"tag":68,"props":2184,"children":2185},{},[2186,2191],{"type":42,"tag":72,"props":2187,"children":2188},{},[2189],{"type":48,"value":2190},"No hardcoded scripts",{"type":48,"value":2192},": Write scanning\u002Fanalysis scripts on the fly as needed.\nUse Python stdlib only. Cache results to avoid redundant work.",{"type":42,"tag":68,"props":2194,"children":2195},{},[2196,2201,2203,2209,2211,2217],{"type":42,"tag":72,"props":2197,"children":2198},{},[2199],{"type":48,"value":2200},"Skill directory",{"type":48,"value":2202},": ",{"type":42,"tag":80,"props":2204,"children":2206},{"className":2205},[],[2207],{"type":48,"value":2208},"\u003CSKILL_DIR>",{"type":48,"value":2210}," = the directory containing this SKILL.md file.\nData\u002Fcache files go in ",{"type":42,"tag":80,"props":2212,"children":2214},{"className":2213},[],[2215],{"type":48,"value":2216},"\u003CSKILL_DIR>\u002Fdata\u002F",{"type":48,"value":95},{"type":42,"tag":68,"props":2219,"children":2220},{},[2221,2226],{"type":42,"tag":72,"props":2222,"children":2223},{},[2224],{"type":48,"value":2225},"All mmx prompts in English",{"type":48,"value":2227}," for best generation quality.",{"type":42,"tag":2229,"props":2230,"children":2231},"style",{},[2232],{"type":48,"value":2233},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2235,"total":2424},[2236,2258,2270,2289,2304,2324,2342,2360,2373,2389,2408,2418],{"slug":2237,"name":2237,"fn":2238,"description":2239,"org":2240,"tags":2241,"stars":23,"repoUrl":24,"updatedAt":2257},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2242,2245,2248,2251,2254],{"name":2243,"slug":2244,"type":16},"Accessibility","accessibility",{"name":2246,"slug":2247,"type":16},"Android","android",{"name":2249,"slug":2250,"type":16},"Kotlin","kotlin",{"name":2252,"slug":2253,"type":16},"Mobile","mobile",{"name":2255,"slug":2256,"type":16},"UI Components","ui-components","2026-07-13T06:16:54.247834",{"slug":2259,"name":2259,"fn":2260,"description":2261,"org":2262,"tags":2263,"stars":23,"repoUrl":24,"updatedAt":2269},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2264,2267,2268],{"name":2265,"slug":2266,"type":16},"Agents","agents",{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:16:35.130644",{"slug":2271,"name":2271,"fn":2272,"description":2273,"org":2274,"tags":2275,"stars":23,"repoUrl":24,"updatedAt":2288},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2276,2279,2282,2285],{"name":2277,"slug":2278,"type":16},"Design","design",{"name":2280,"slug":2281,"type":16},"Presentations","presentations",{"name":2283,"slug":2284,"type":16},"Themes","themes",{"name":2286,"slug":2287,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":2290,"name":2290,"fn":2291,"description":2292,"org":2293,"tags":2294,"stars":23,"repoUrl":24,"updatedAt":2303},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2295,2296,2299,2302],{"name":2277,"slug":2278,"type":16},{"name":2297,"slug":2298,"type":16},"Design System","design-system",{"name":2300,"slug":2301,"type":16},"PowerPoint","powerpoint",{"name":2280,"slug":2281,"type":16},"2026-07-13T06:17:10.398389",{"slug":2305,"name":2305,"fn":2306,"description":2307,"org":2308,"tags":2309,"stars":23,"repoUrl":24,"updatedAt":2323},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2310,2313,2316,2317,2320],{"name":2311,"slug":2312,"type":16},"Dart","dart",{"name":2314,"slug":2315,"type":16},"Flutter","flutter",{"name":2252,"slug":2253,"type":16},{"name":2318,"slug":2319,"type":16},"Performance","performance",{"name":2321,"slug":2322,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":2325,"name":2325,"fn":2326,"description":2327,"org":2328,"tags":2329,"stars":23,"repoUrl":24,"updatedAt":2341},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2330,2333,2334,2335,2338],{"name":2331,"slug":2332,"type":16},"Animation","animation",{"name":18,"slug":19,"type":16},{"name":2277,"slug":2278,"type":16},{"name":2336,"slug":2337,"type":16},"Frontend","frontend",{"name":2339,"slug":2340,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":2343,"name":2343,"fn":2344,"description":2345,"org":2346,"tags":2347,"stars":23,"repoUrl":24,"updatedAt":2359},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2348,2351,2352,2355,2358],{"name":2349,"slug":2350,"type":16},"Backend","backend",{"name":2336,"slug":2337,"type":16},{"name":2353,"slug":2354,"type":16},"Full-stack","full-stack",{"name":2356,"slug":2357,"type":16},"REST API","rest-api",{"name":2339,"slug":2340,"type":16},"2026-07-13T06:16:43.219005",{"slug":2361,"name":2361,"fn":2362,"description":2363,"org":2364,"tags":2365,"stars":23,"repoUrl":24,"updatedAt":2372},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2366,2367,2368,2371],{"name":2331,"slug":2332,"type":16},{"name":18,"slug":19,"type":16},{"name":2369,"slug":2370,"type":16},"Images","images",{"name":14,"slug":15,"type":16},"2026-07-13T06:16:51.74461",{"slug":2374,"name":2374,"fn":2375,"description":2376,"org":2377,"tags":2378,"stars":23,"repoUrl":24,"updatedAt":2388},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2379,2380,2383,2384,2387],{"name":2243,"slug":2244,"type":16},{"name":2381,"slug":2382,"type":16},"iOS","ios",{"name":2252,"slug":2253,"type":16},{"name":2385,"slug":2386,"type":16},"SwiftUI","swiftui",{"name":2255,"slug":2256,"type":16},"2026-07-13T06:16:55.686092",{"slug":2390,"name":2390,"fn":2391,"description":2392,"org":2393,"tags":2394,"stars":23,"repoUrl":24,"updatedAt":2407},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2395,2398,2401,2404],{"name":2396,"slug":2397,"type":16},"Documents","documents",{"name":2399,"slug":2400,"type":16},"DOCX","docx",{"name":2402,"slug":2403,"type":16},"Office","office",{"name":2405,"slug":2406,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":2409,"name":2409,"fn":2410,"description":2411,"org":2412,"tags":2413,"stars":23,"repoUrl":24,"updatedAt":2417},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2414,2415,2416],{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},"2026-07-13T06:16:50.381758",{"slug":4,"name":4,"fn":5,"description":6,"org":2419,"tags":2420,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2421,2422,2423],{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},37,{"items":2426,"total":2479},[2427,2435,2441,2448,2455,2463,2471],{"slug":2237,"name":2237,"fn":2238,"description":2239,"org":2428,"tags":2429,"stars":23,"repoUrl":24,"updatedAt":2257},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2430,2431,2432,2433,2434],{"name":2243,"slug":2244,"type":16},{"name":2246,"slug":2247,"type":16},{"name":2249,"slug":2250,"type":16},{"name":2252,"slug":2253,"type":16},{"name":2255,"slug":2256,"type":16},{"slug":2259,"name":2259,"fn":2260,"description":2261,"org":2436,"tags":2437,"stars":23,"repoUrl":24,"updatedAt":2269},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2438,2439,2440],{"name":2265,"slug":2266,"type":16},{"name":21,"slug":22,"type":16},{"name":18,"slug":19,"type":16},{"slug":2271,"name":2271,"fn":2272,"description":2273,"org":2442,"tags":2443,"stars":23,"repoUrl":24,"updatedAt":2288},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2444,2445,2446,2447],{"name":2277,"slug":2278,"type":16},{"name":2280,"slug":2281,"type":16},{"name":2283,"slug":2284,"type":16},{"name":2286,"slug":2287,"type":16},{"slug":2290,"name":2290,"fn":2291,"description":2292,"org":2449,"tags":2450,"stars":23,"repoUrl":24,"updatedAt":2303},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2451,2452,2453,2454],{"name":2277,"slug":2278,"type":16},{"name":2297,"slug":2298,"type":16},{"name":2300,"slug":2301,"type":16},{"name":2280,"slug":2281,"type":16},{"slug":2305,"name":2305,"fn":2306,"description":2307,"org":2456,"tags":2457,"stars":23,"repoUrl":24,"updatedAt":2323},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2458,2459,2460,2461,2462],{"name":2311,"slug":2312,"type":16},{"name":2314,"slug":2315,"type":16},{"name":2252,"slug":2253,"type":16},{"name":2318,"slug":2319,"type":16},{"name":2321,"slug":2322,"type":16},{"slug":2325,"name":2325,"fn":2326,"description":2327,"org":2464,"tags":2465,"stars":23,"repoUrl":24,"updatedAt":2341},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2466,2467,2468,2469,2470],{"name":2331,"slug":2332,"type":16},{"name":18,"slug":19,"type":16},{"name":2277,"slug":2278,"type":16},{"name":2336,"slug":2337,"type":16},{"name":2339,"slug":2340,"type":16},{"slug":2343,"name":2343,"fn":2344,"description":2345,"org":2472,"tags":2473,"stars":23,"repoUrl":24,"updatedAt":2359},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2474,2475,2476,2477,2478],{"name":2349,"slug":2350,"type":16},{"name":2336,"slug":2337,"type":16},{"name":2353,"slug":2354,"type":16},{"name":2356,"slug":2357,"type":16},{"name":2339,"slug":2340,"type":16},22]