[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-buddy-sings":3,"mdc-teqx0v-key":34,"related-org-minimax-buddy-sings":2487,"related-repo-minimax-buddy-sings":2678},{"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},"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},"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},"Creative","creative","tag",{"name":18,"slug":19,"type":16},"Agents","agents",{"name":21,"slug":22,"type":16},"Audio","audio",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:35.130644","MIT",1118,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],null,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fbuddy-sings","---\nname: buddy-sings\ndescription: >\n  Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any\n  request that combines the concept of their Claude Code buddy, pet, or companion with\n  singing or music. Supports multilingual triggers — match equivalent phrases in any\n  language.\nlicense: MIT\nmetadata:\n  version: \"1.1\"\n  category: creative\n---\n\n# Buddy Sings — Let Your Claude Code Pet Sing\n\nTurn your Claude Code pet into a singer. Each pet gets a unique vocal identity\nbased on its name and personality — the same pet always sounds the same.\n\n## Prerequisites\n\n- **mmx CLI** (required for music generation):\n\n  **Install:**\n  ```bash\n  npm install -g mmx-cli\n  ```\n\n  **Authenticate (first time only):**\n  ```bash\n  mmx auth login --api-key \u003Cyour-minimax-api-key>\n  ```\n  Get your API key from [MiniMax Platform](https:\u002F\u002Fplatform.minimaxi.com\u002F).\n\n- **Audio player** (for playback — at least one of):\n  - `mpv` (recommended — interactive controls: space = pause, q = quit)\n  - `ffplay` (from FFmpeg)\n  - `afplay` (macOS built-in)\n\n---\n\n## Workflow Overview\n\n```\nCheck pet → Build vocal identity → Gather context → Generate music → Play & feedback\n```\n\n---\n\n## Language & Interaction\n\nDetect the user's language from their first message. Respond in the same language\nthroughout the entire session. All examples below are in English — translate them\nnaturally when responding in other languages.\n\n**User-facing text localization rule**:\n- ALL text shown to the user — including pet info, voice description, lyrics preview,\n  prompt preview, playback info, and feedback prompts — MUST be fully translated into\n  the user's language.\n- The **API prompt** sent to the model should always be written in English for best\n  generation quality. However, when previewing the prompt to the user, show a localized\n  description in the user's language instead of the raw English prompt. The English prompt\n  is an internal implementation detail — the user does not need to see it.\n- The templates below are written in English as reference. At runtime, translate every\n  label and message into the user's detected language.\n\nThe pet sings in the user's language by default. Embed the singing language\nnaturally in the vocal description (e.g., \"singing in Japanese\" or \"singing in\nMandarin Chinese\") rather than appending a separate language tag. If the user\nexplicitly requests a different language for the lyrics, honor that request.\n\n---\n\n## Step 1: Check for Pet\n\nRead `~\u002F.claude.json` and look for the `companion` field.\n\nIf no companion is found or the field is empty, tell the user:\n\n```\nYou don't have a pet yet! Type \u002Fbuddy to adopt one, then come back to let it sing.\n```\n\nStop here and wait for the user to adopt a pet. Do not proceed without a pet.\n\nIf a companion exists, extract its profile:\n- `name` — the pet's name\n- `personality` — the pet's personality description\n\nPresent the pet to the user:\n\n```\nFound your pet!\n   Name: \u003Cname>\n   Personality: \u003Cpersonality>\n```\n\n---\n\n## Step 2: Build Vocal Identity\n\nBased on the pet's **name** and **personality** text, creatively design a unique\nvocal identity. No template lookups — interpret the personality freely.\n\n### How to interpret personality into voice\n\nRead the personality text and craft vocal attributes:\n\n- **Timbre**: What does this personality sound like? e.g., \"few words\" →\n  low, warm, deliberate; \"energetic\" → bright, punchy; \"mysterious\" → breathy,\n  dark; \"legendary chonk\" → thick, warm, cozy\n- **Singing style**: How would they deliver a song? e.g., \"of few words\" →\n  sparse, dramatic pauses; \"playful\" → bouncy, rhythmic; \"poetic\" → flowing, legato\n- **Mood**: What emotional tone fits? e.g., \"chill\" → relaxed, laid-back;\n  \"fierce\" → intense, powerful\n\nConstruct a `prompt_fragment` that describes the vocal style in English, embedding\nthe singing language naturally. For example:\n\n```\nVocal: warm low female voice singing in Mandarin Chinese with cozy thick timbre,\nsparse minimalist delivery with dramatic pauses giving each word weight, relaxed\nlaid-back mood.\n```\n\n### Voice caching\n\nThe vocal identity must be **cached** so the pet always sounds the same.\n\n- Cache file: `~\u002F.claude\u002Fskills\u002Fbuddy-sings\u002Fvoices\u002F\u003Cname>.json`\n- Cache format:\n  ```json\n  {\n    \"name\": \"Moth\",\n    \"personality\": \"A legendary chonk of few words.\",\n    \"prompt_fragment\": \"Vocal: warm low female voice singing in Mandarin Chinese...\",\n    \"cached_at\": \"2026-04-07T19:52:15\"\n  }\n  ```\n\n**First time**: No cache exists → interpret personality → save to cache file.\n\n**Subsequent calls**: Read cache → use the saved `prompt_fragment` directly.\nDo NOT re-interpret — consistency matters.\n\n**Cache invalidation**: If the `personality` in `~\u002F.claude.json` differs from what's\ncached, the pet has changed — regenerate and save a new cache.\n\n**Manual regeneration**: If the user says \"change the voice\" or \"regenerate voice\":\ndelete the cache file and re-interpret from scratch.\n\n### Present the voice to the user\n\n```\n\u003Cname>'s unique voice:\n\nTimbre: \u003Ctimbre description>\nStyle: \u003Cstyle description>\nMood: \u003Cmood description>\n\nLet's pick what \u003Cname> should sing about!\n```\n\n---\n\n## Step 3: Understand Intent & Gather Context\n\n**Do NOT always present a mode menu.** Instead, analyze the user's request to\ndetermine what context is needed, and auto-gather it.\n\n### Auto-context detection\n\nWhen the user's request implies personal context, **automatically** scan for\nrelevant information without asking. Triggers include:\n\n- **Time-based references**: \"today\", \"this week\", \"recently\", \"yesterday\" → scan\n  current conversation history and memory files for what happened in that period\n- **Personal references**: \"my work\", \"my day\", \"what I did\" → scan memory\n  and conversation for the user's activities\n- **Relationship references**: \"our story\", \"what we did together\" → scan memory for\n  shared experiences between user and pet\u002FClaude\n\n### Context gathering (auto, not mode-gated)\n\nWhen context is needed, scan these sources in order:\n\n1. **Current conversation context**: Look at what the user has been doing in\n   this Claude Code session — files edited, commands run, topics discussed.\n   This is the richest source for \"today\" type requests.\n\n2. **Memory files**: Scan for relevant memories:\n   ```bash\n   find ~\u002F.claude\u002Fprojects\u002F*\u002Fmemory\u002F -name \"*.md\" 2>\u002Fdev\u002Fnull | head -20\n   ```\n   Also check `~\u002F.claude\u002Fmemory\u002F` if it exists.\n   Read found files and extract themes relevant to the user's request.\n\n3. **Git history** (if in a repo): For work-related songs, check recent commits:\n   ```bash\n   git log --oneline --since=\"today\" 2>\u002Fdev\u002Fnull | head -10\n   ```\n\nUse gathered context to enrich the lyrics prompt — make the song personal and\nspecific to what actually happened, not generic.\n\n### When NO context is needed\n\nIf the user's request is a clear standalone scene (e.g., \"sing a rainy day song\",\n\"sing a lullaby\"), skip context gathering and proceed directly to music generation.\n\n### When context is ambiguous\n\nOnly ask for clarification when you genuinely can't determine what the user wants.\nDon't present a mode menu — ask a specific question:\n\n```\nWhat should \u003Cname> sing about?\n\nFor example:\n  - \"Today's work\" — I'll check what you've been up to\n  - \"My pet waiting by the window for me to come home\"\n  - Or let me pick a random theme?\n```\n\n### Fallback to random\n\nIf context gathering finds nothing useful (no memory files, no conversation\nhistory, no git log), fall back to random theme generation based on the pet's\npersonality:\n- Quiet\u002Freserved personality → midnight lullaby, gentle sunset, quiet morning\n- Energetic personality → party jam, adventure song, victory march\n- Mysterious personality → moonlit serenade, secret whisper, dream journey\n\nTell the user what theme was picked.\n\n---\n\n## Step 4: Generate Music\n\nCombine the vocal identity with the chosen theme.\n\n1. **Construct the full prompt**: The prompt has two parts that MUST both be present:\n\n   **Part A — Vocal identity (MUST come first)**: Always start the prompt with the\n   cached `prompt_fragment`. This is the most important part — it defines who is\n   singing. Place it at the beginning of the prompt so the API prioritizes it.\n\n   **Part B — Genre\u002Fstyle\u002Fmood tags**: Choose tags that **match the theme**, NOT\n   a default set. Vary the genre deliberately based on what the song is about.\n\n   Write prompts as **vivid English sentences**, not comma-separated tags.\n   Follow this pattern: `A [mood] [genre] song, featuring [vocal description],\n   about [narrative\u002Ftheme], [atmosphere], [key instruments and production].`\n   Describe vocals as a character (\"sultry baritone with jazz inflections\"),\n   not just a gender. Include a scene or vibe to anchor the generation.\n\n   **Genre matching guidelines** — pick a genre that fits the theme's energy:\n\n   | Theme energy | Suggested genres | Avoid |\n   |-------------|-----------------|-------|\n   | Encouragement \u002F motivation \u002F cheer | Indie rock, synth-pop, funk, rap | Indie folk, healing |\n   | Daily life \u002F warmth \u002F companionship | Mandopop, city pop, bossa nova | Same as last time |\n   | Missing someone \u002F waiting | Folk, R&B, lo-fi | Rock, EDM |\n   | Humor \u002F roasting \u002F complaining | Funk, rap, ska, electro-pop | Classical, ballad |\n   | Late night \u002F quiet | Ambient, piano piece, lo-fi, neoclassical | Upbeat, EDM |\n   | Celebration \u002F achievement | EDM, future bass, funk, K-pop | Slow tempo, melancholy |\n   | Work routine | City pop, synth-pop, lo-fi hip-hop, indie rock | Same genre every time |\n\n   **Anti-monotony rule**: NEVER use the same genre combination twice in a row.\n   Before constructing the prompt, recall what genre was used in the previous\n   generation (if any in this session) and pick something different.\n\n   **Prompt structure** — write as vivid English sentences, not comma-separated tags:\n   ```\n   \u003Cvocal prompt_fragment>. A \u003Cgenre> song with \u003Cmood> mood, featuring \u003Cinstruments>,\n   at a \u003Ctempo> tempo, evoking \u003Cscene>.\n   ```\n\n   **Diverse examples**:\n   ```\n   # Encouragement for the workday\n   A deep warm androgynous voice with cozy delivery. An energetic synth-pop track\n   with a fiery, uplifting mood, driven by pulsing synthesizers and electronic drums\n   at a fast tempo, capturing the rush of a morning commute.\n\n   # Waiting for the owner to come home\n   A deep warm androgynous voice with cozy delivery. A warm city pop song with sweet,\n   tender feelings, featuring electric piano and groovy bass at a mid-tempo pace,\n   set on a sunny afternoon windowsill waiting for someone to come home.\n\n   # Complaining about overtime\n   A deep warm androgynous voice with cozy delivery. A playful funk track with a\n   humorous, laid-back vibe, featuring slap bass and brass at a groovy mid-tempo,\n   capturing the absurdity of working late in a dim office.\n\n   # Late-night companionship\n   A deep warm androgynous voice with cozy delivery. A calm lo-fi hip-hop piece with\n   a healing, dreamy atmosphere, featuring sampled piano and soft electronic drums\n   at a slow tempo, evoking a quiet late-night desk with warm lamp light.\n   ```\n\n2. **Generate lyrics**: Use `--lyrics-optimizer` to auto-generate lyrics, or write lyrics\n   yourself when you need to control the perspective.\n\n   **Important — perspective & personality-driven lyrics**:\n\n   The pet is the singer, so lyrics MUST be written from the **pet's first-person\n   perspective** (\"I\" = the pet, \"you\" = the owner\u002Fuser). The pet is singing TO\n   the owner. For example:\n   - \"I sit by the door waiting for you to come home\" (pet's perspective)\n   - \"Wake up now, my dear human\" (pet singing to owner)\n   - NOT \"I rub my sleepy eyes\" (owner's perspective — wrong)\n   - NOT \"Then you woke up, my little Moth\" (owner talking about pet — wrong)\n\n   The pet's personality should shape the lyrics' tone and word choice:\n   - \"of few words\" → short, impactful lines, minimal filler\n   - \"playful\" → rhyming, bouncy phrasing, fun wordplay\n   - \"poetic\" → metaphor-rich, flowing imagery\n   - \"fierce\" → direct, powerful declarations\n\n   The pet's name may appear in the lyrics (e.g., in a chorus hook) but the\n   narrative voice is always the pet speaking\u002Fsinging.\n\n   **When perspective matters**: Write the lyrics yourself and pass via `--lyrics`.\n   **When perspective is not critical**: Use `--lyrics-optimizer` for convenience.\n\n3. **Preview (MUST show full content)**: Before generating, show the user the\n   **complete lyrics** and **full prompt** — no abbreviation, no `...`, no summary.\n   This is part of the fun — the user wants to read and enjoy the lyrics before\n   hearing them sung.\n\n   The API prompt is always constructed in English (for best generation quality).\n   When responding in a non-English language, show a **localized description** of\n   the prompt in the user's language for readability. The English prompt is an\n   internal implementation detail — do not show it to the user. Translate all\n   labels (Singer, Theme, Description, Confirm, etc.) into the user's language.\n\n   Template (English reference — localize all labels at runtime):\n\n   ```\n   About to generate:\n   Singer: \u003Cname>\n   Theme: \u003Ctheme>\n\n   Lyrics:\n   [verse]\n   \u003Cfull verse lyrics here>\n\n   [chorus]\n   \u003Cfull chorus lyrics here>\n\n   ... (show ALL sections in full)\n\n   Description: \u003Clocalized description of the song style and mood>\n\n   Confirm? (press enter to confirm, or tell me what to change)\n   ```\n\n   **Never truncate or abbreviate** the lyrics or prompt in the preview.\n   The user should see exactly what will be sent to the API.\n\n4. **Call music generation**:\n\n   **With auto-generated lyrics (perspective not critical):**\n   ```bash\n   mmx music generate \\\n     --prompt \"\u003Cfull combined prompt>\" \\\n     --lyrics-optimizer \\\n     --out ~\u002FMusic\u002Fminimax-gen\u002F\u003Cname>_sings_\u003CYYYYMMDD_HHMMSS>.mp3 \\\n     --quiet --non-interactive\n   ```\n\n   **With self-written lyrics (perspective-controlled):**\n   ```bash\n   mmx music generate \\\n     --prompt \"\u003Cfull combined prompt>\" \\\n     --lyrics \"\u003Clyrics with correct pet perspective>\" \\\n     --out ~\u002FMusic\u002Fminimax-gen\u002F\u003Cname>_sings_\u003CYYYYMMDD_HHMMSS>.mp3 \\\n     --quiet --non-interactive\n   ```\n\n---\n\n## Step 5: Play & Feedback\n\n### Cross-platform playback\n\nDetect the available audio player and play the generated file:\n\n```bash\nif command -v mpv >\u002Fdev\u002Fnull 2>&1; then\n  mpv --no-video ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelif command -v ffplay >\u002Fdev\u002Fnull 2>&1; then\n  ffplay -nodisp -autoexit ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelif command -v afplay >\u002Fdev\u002Fnull 2>&1; then\n  afplay ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelse\n  echo \"No audio player found. Your song is saved at: ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\"\nfi\n```\n\nAfter starting playback, tell the user the file is playing and where it's saved.\nDo NOT show playback controls (e.g. keyboard shortcuts) — they don't work in this\nenvironment since the player runs in the background.\n\nIf no player is found, show the file path and suggest installing mpv.\n\n### Feedback\n\nAfter playback, ask for feedback (localize all text):\n\n```\nHow was \u003Cname>'s performance?\n\n1. Amazing! Keep it!\n2. Try a different theme \u002F style\n3. Fine-tune the lyrics and regenerate\n4. Try another random one\n```\n\n---\n\n## Edge Cases\n\n| Situation | Action |\n|-----------|--------|\n| No `~\u002F.claude.json` | Tell user to run `\u002Fbuddy` first |\n| Companion field is empty | Same — guide to `\u002Fbuddy` |\n| mmx CLI not installed | Print: \"You need to install mmx CLI: `npm install -g mmx-cli && mmx auth login`\" |\n| No audio player found | Show file path and suggest installing mpv |\n| No memory files found | Suggest a custom theme or random mode |\n| User wants to change the pet's voice | Delete cache, re-interpret personality |\n| User wants a specific genre | Let them override — append their genre to the prompt |\n\n---\n\n## Notes\n\n- The vocal identity is based on **name + personality** only. No species\u002Frarity\n  template mapping.\n- Voice is cached and consistent across sessions. Same pet = same voice.\n- Lyrics should always be **original** — never reproduce copyrighted lyrics.\n- The pet's personality shapes both the **voice** (how they sound) and the\n  **lyrics** (what they say and how they say it).\n- All generated files go to `~\u002FMusic\u002Fminimax-gen\u002F` with the pet name in the\n  filename.\n",{"data":35,"body":38},{"name":4,"description":6,"license":26,"metadata":36},{"version":37,"category":15},"1.1",{"type":39,"children":40},"root",[41,50,56,63,250,254,260,270,273,279,284,294,319,324,327,333,354,359,368,373,378,403,408,417,420,426,443,450,455,488,501,510,516,528,724,734,751,775,785,791,800,803,809,819,825,837,870,876,881,1065,1070,1076,1081,1087,1092,1101,1107,1112,1130,1135,1138,1144,1149,1934,1937,1943,1949,1954,2231,2236,2241,2247,2252,2261,2264,2270,2408,2411,2417,2481],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"buddy-sings-let-your-claude-code-pet-sing",[47],{"type":48,"value":49},"text","Buddy Sings — Let Your Claude Code Pet Sing",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Turn your Claude Code pet into a singer. Each pet gets a unique vocal identity\nbased on its name and personality — the same pet always sounds the same.",{"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,204],{"type":42,"tag":68,"props":69,"children":70},"li",{},[71,77,79,83,88,128,131,136,188,191,193,202],{"type":42,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":48,"value":76},"mmx CLI",{"type":48,"value":78}," (required for music generation):",{"type":42,"tag":80,"props":81,"children":82},"br",{},[],{"type":42,"tag":72,"props":84,"children":85},{},[86],{"type":48,"value":87},"Install:",{"type":42,"tag":89,"props":90,"children":95},"pre",{"className":91,"code":92,"language":93,"meta":94,"style":94},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install -g mmx-cli\n","bash","",[96],{"type":42,"tag":97,"props":98,"children":99},"code",{"__ignoreMap":94},[100],{"type":42,"tag":101,"props":102,"children":105},"span",{"class":103,"line":104},"line",1,[106,112,118,123],{"type":42,"tag":101,"props":107,"children":109},{"style":108},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[110],{"type":48,"value":111},"npm",{"type":42,"tag":101,"props":113,"children":115},{"style":114},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[116],{"type":48,"value":117}," install",{"type":42,"tag":101,"props":119,"children":120},{"style":114},[121],{"type":48,"value":122}," -g",{"type":42,"tag":101,"props":124,"children":125},{"style":114},[126],{"type":48,"value":127}," mmx-cli\n",{"type":42,"tag":80,"props":129,"children":130},{},[],{"type":42,"tag":72,"props":132,"children":133},{},[134],{"type":48,"value":135},"Authenticate (first time only):",{"type":42,"tag":89,"props":137,"children":139},{"className":91,"code":138,"language":93,"meta":94,"style":94},"mmx auth login --api-key \u003Cyour-minimax-api-key>\n",[140],{"type":42,"tag":97,"props":141,"children":142},{"__ignoreMap":94},[143],{"type":42,"tag":101,"props":144,"children":145},{"class":103,"line":104},[146,151,156,161,166,172,177,183],{"type":42,"tag":101,"props":147,"children":148},{"style":108},[149],{"type":48,"value":150},"mmx",{"type":42,"tag":101,"props":152,"children":153},{"style":114},[154],{"type":48,"value":155}," auth",{"type":42,"tag":101,"props":157,"children":158},{"style":114},[159],{"type":48,"value":160}," login",{"type":42,"tag":101,"props":162,"children":163},{"style":114},[164],{"type":48,"value":165}," --api-key",{"type":42,"tag":101,"props":167,"children":169},{"style":168},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[170],{"type":48,"value":171}," \u003C",{"type":42,"tag":101,"props":173,"children":174},{"style":114},[175],{"type":48,"value":176},"your-minimax-api-ke",{"type":42,"tag":101,"props":178,"children":180},{"style":179},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[181],{"type":48,"value":182},"y",{"type":42,"tag":101,"props":184,"children":185},{"style":168},[186],{"type":48,"value":187},">\n",{"type":42,"tag":80,"props":189,"children":190},{},[],{"type":48,"value":192},"Get your API key from ",{"type":42,"tag":194,"props":195,"children":199},"a",{"href":196,"rel":197},"https:\u002F\u002Fplatform.minimaxi.com\u002F",[198],"nofollow",[200],{"type":48,"value":201},"MiniMax Platform",{"type":48,"value":203},".",{"type":42,"tag":68,"props":205,"children":206},{},[207,212,214],{"type":42,"tag":72,"props":208,"children":209},{},[210],{"type":48,"value":211},"Audio player",{"type":48,"value":213}," (for playback — at least one of):",{"type":42,"tag":64,"props":215,"children":216},{},[217,228,239],{"type":42,"tag":68,"props":218,"children":219},{},[220,226],{"type":42,"tag":97,"props":221,"children":223},{"className":222},[],[224],{"type":48,"value":225},"mpv",{"type":48,"value":227}," (recommended — interactive controls: space = pause, q = quit)",{"type":42,"tag":68,"props":229,"children":230},{},[231,237],{"type":42,"tag":97,"props":232,"children":234},{"className":233},[],[235],{"type":48,"value":236},"ffplay",{"type":48,"value":238}," (from FFmpeg)",{"type":42,"tag":68,"props":240,"children":241},{},[242,248],{"type":42,"tag":97,"props":243,"children":245},{"className":244},[],[246],{"type":48,"value":247},"afplay",{"type":48,"value":249}," (macOS built-in)",{"type":42,"tag":251,"props":252,"children":253},"hr",{},[],{"type":42,"tag":57,"props":255,"children":257},{"id":256},"workflow-overview",[258],{"type":48,"value":259},"Workflow Overview",{"type":42,"tag":89,"props":261,"children":265},{"className":262,"code":264,"language":48},[263],"language-text","Check pet → Build vocal identity → Gather context → Generate music → Play & feedback\n",[266],{"type":42,"tag":97,"props":267,"children":268},{"__ignoreMap":94},[269],{"type":48,"value":264},{"type":42,"tag":251,"props":271,"children":272},{},[],{"type":42,"tag":57,"props":274,"children":276},{"id":275},"language-interaction",[277],{"type":48,"value":278},"Language & Interaction",{"type":42,"tag":51,"props":280,"children":281},{},[282],{"type":48,"value":283},"Detect the user's language from their first message. Respond in the same language\nthroughout the entire session. All examples below are in English — translate them\nnaturally when responding in other languages.",{"type":42,"tag":51,"props":285,"children":286},{},[287,292],{"type":42,"tag":72,"props":288,"children":289},{},[290],{"type":48,"value":291},"User-facing text localization rule",{"type":48,"value":293},":",{"type":42,"tag":64,"props":295,"children":296},{},[297,302,314],{"type":42,"tag":68,"props":298,"children":299},{},[300],{"type":48,"value":301},"ALL text shown to the user — including pet info, voice description, lyrics preview,\nprompt preview, playback info, and feedback prompts — MUST be fully translated into\nthe user's language.",{"type":42,"tag":68,"props":303,"children":304},{},[305,307,312],{"type":48,"value":306},"The ",{"type":42,"tag":72,"props":308,"children":309},{},[310],{"type":48,"value":311},"API prompt",{"type":48,"value":313}," sent to the model should always be written in English for best\ngeneration quality. However, when previewing the prompt to the user, show a localized\ndescription in the user's language instead of the raw English prompt. The English prompt\nis an internal implementation detail — the user does not need to see it.",{"type":42,"tag":68,"props":315,"children":316},{},[317],{"type":48,"value":318},"The templates below are written in English as reference. At runtime, translate every\nlabel and message into the user's detected language.",{"type":42,"tag":51,"props":320,"children":321},{},[322],{"type":48,"value":323},"The pet sings in the user's language by default. Embed the singing language\nnaturally in the vocal description (e.g., \"singing in Japanese\" or \"singing in\nMandarin Chinese\") rather than appending a separate language tag. If the user\nexplicitly requests a different language for the lyrics, honor that request.",{"type":42,"tag":251,"props":325,"children":326},{},[],{"type":42,"tag":57,"props":328,"children":330},{"id":329},"step-1-check-for-pet",[331],{"type":48,"value":332},"Step 1: Check for Pet",{"type":42,"tag":51,"props":334,"children":335},{},[336,338,344,346,352],{"type":48,"value":337},"Read ",{"type":42,"tag":97,"props":339,"children":341},{"className":340},[],[342],{"type":48,"value":343},"~\u002F.claude.json",{"type":48,"value":345}," and look for the ",{"type":42,"tag":97,"props":347,"children":349},{"className":348},[],[350],{"type":48,"value":351},"companion",{"type":48,"value":353}," field.",{"type":42,"tag":51,"props":355,"children":356},{},[357],{"type":48,"value":358},"If no companion is found or the field is empty, tell the user:",{"type":42,"tag":89,"props":360,"children":363},{"className":361,"code":362,"language":48},[263],"You don't have a pet yet! Type \u002Fbuddy to adopt one, then come back to let it sing.\n",[364],{"type":42,"tag":97,"props":365,"children":366},{"__ignoreMap":94},[367],{"type":48,"value":362},{"type":42,"tag":51,"props":369,"children":370},{},[371],{"type":48,"value":372},"Stop here and wait for the user to adopt a pet. Do not proceed without a pet.",{"type":42,"tag":51,"props":374,"children":375},{},[376],{"type":48,"value":377},"If a companion exists, extract its profile:",{"type":42,"tag":64,"props":379,"children":380},{},[381,392],{"type":42,"tag":68,"props":382,"children":383},{},[384,390],{"type":42,"tag":97,"props":385,"children":387},{"className":386},[],[388],{"type":48,"value":389},"name",{"type":48,"value":391}," — the pet's name",{"type":42,"tag":68,"props":393,"children":394},{},[395,401],{"type":42,"tag":97,"props":396,"children":398},{"className":397},[],[399],{"type":48,"value":400},"personality",{"type":48,"value":402}," — the pet's personality description",{"type":42,"tag":51,"props":404,"children":405},{},[406],{"type":48,"value":407},"Present the pet to the user:",{"type":42,"tag":89,"props":409,"children":412},{"className":410,"code":411,"language":48},[263],"Found your pet!\n   Name: \u003Cname>\n   Personality: \u003Cpersonality>\n",[413],{"type":42,"tag":97,"props":414,"children":415},{"__ignoreMap":94},[416],{"type":48,"value":411},{"type":42,"tag":251,"props":418,"children":419},{},[],{"type":42,"tag":57,"props":421,"children":423},{"id":422},"step-2-build-vocal-identity",[424],{"type":48,"value":425},"Step 2: Build Vocal Identity",{"type":42,"tag":51,"props":427,"children":428},{},[429,431,435,437,441],{"type":48,"value":430},"Based on the pet's ",{"type":42,"tag":72,"props":432,"children":433},{},[434],{"type":48,"value":389},{"type":48,"value":436}," and ",{"type":42,"tag":72,"props":438,"children":439},{},[440],{"type":48,"value":400},{"type":48,"value":442}," text, creatively design a unique\nvocal identity. No template lookups — interpret the personality freely.",{"type":42,"tag":444,"props":445,"children":447},"h3",{"id":446},"how-to-interpret-personality-into-voice",[448],{"type":48,"value":449},"How to interpret personality into voice",{"type":42,"tag":51,"props":451,"children":452},{},[453],{"type":48,"value":454},"Read the personality text and craft vocal attributes:",{"type":42,"tag":64,"props":456,"children":457},{},[458,468,478],{"type":42,"tag":68,"props":459,"children":460},{},[461,466],{"type":42,"tag":72,"props":462,"children":463},{},[464],{"type":48,"value":465},"Timbre",{"type":48,"value":467},": What does this personality sound like? e.g., \"few words\" →\nlow, warm, deliberate; \"energetic\" → bright, punchy; \"mysterious\" → breathy,\ndark; \"legendary chonk\" → thick, warm, cozy",{"type":42,"tag":68,"props":469,"children":470},{},[471,476],{"type":42,"tag":72,"props":472,"children":473},{},[474],{"type":48,"value":475},"Singing style",{"type":48,"value":477},": How would they deliver a song? e.g., \"of few words\" →\nsparse, dramatic pauses; \"playful\" → bouncy, rhythmic; \"poetic\" → flowing, legato",{"type":42,"tag":68,"props":479,"children":480},{},[481,486],{"type":42,"tag":72,"props":482,"children":483},{},[484],{"type":48,"value":485},"Mood",{"type":48,"value":487},": What emotional tone fits? e.g., \"chill\" → relaxed, laid-back;\n\"fierce\" → intense, powerful",{"type":42,"tag":51,"props":489,"children":490},{},[491,493,499],{"type":48,"value":492},"Construct a ",{"type":42,"tag":97,"props":494,"children":496},{"className":495},[],[497],{"type":48,"value":498},"prompt_fragment",{"type":48,"value":500}," that describes the vocal style in English, embedding\nthe singing language naturally. For example:",{"type":42,"tag":89,"props":502,"children":505},{"className":503,"code":504,"language":48},[263],"Vocal: warm low female voice singing in Mandarin Chinese with cozy thick timbre,\nsparse minimalist delivery with dramatic pauses giving each word weight, relaxed\nlaid-back mood.\n",[506],{"type":42,"tag":97,"props":507,"children":508},{"__ignoreMap":94},[509],{"type":48,"value":504},{"type":42,"tag":444,"props":511,"children":513},{"id":512},"voice-caching",[514],{"type":48,"value":515},"Voice caching",{"type":42,"tag":51,"props":517,"children":518},{},[519,521,526],{"type":48,"value":520},"The vocal identity must be ",{"type":42,"tag":72,"props":522,"children":523},{},[524],{"type":48,"value":525},"cached",{"type":48,"value":527}," so the pet always sounds the same.",{"type":42,"tag":64,"props":529,"children":530},{},[531,542],{"type":42,"tag":68,"props":532,"children":533},{},[534,536],{"type":48,"value":535},"Cache file: ",{"type":42,"tag":97,"props":537,"children":539},{"className":538},[],[540],{"type":48,"value":541},"~\u002F.claude\u002Fskills\u002Fbuddy-sings\u002Fvoices\u002F\u003Cname>.json",{"type":42,"tag":68,"props":543,"children":544},{},[545,547],{"type":48,"value":546},"Cache format:\n",{"type":42,"tag":89,"props":548,"children":552},{"className":549,"code":550,"language":551,"meta":94,"style":94},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"Moth\",\n  \"personality\": \"A legendary chonk of few words.\",\n  \"prompt_fragment\": \"Vocal: warm low female voice singing in Mandarin Chinese...\",\n  \"cached_at\": \"2026-04-07T19:52:15\"\n}\n","json",[553],{"type":42,"tag":97,"props":554,"children":555},{"__ignoreMap":94},[556,564,606,643,680,715],{"type":42,"tag":101,"props":557,"children":558},{"class":103,"line":104},[559],{"type":42,"tag":101,"props":560,"children":561},{"style":168},[562],{"type":48,"value":563},"{\n",{"type":42,"tag":101,"props":565,"children":567},{"class":103,"line":566},2,[568,573,578,583,587,592,597,601],{"type":42,"tag":101,"props":569,"children":570},{"style":168},[571],{"type":48,"value":572},"  \"",{"type":42,"tag":101,"props":574,"children":576},{"style":575},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[577],{"type":48,"value":389},{"type":42,"tag":101,"props":579,"children":580},{"style":168},[581],{"type":48,"value":582},"\"",{"type":42,"tag":101,"props":584,"children":585},{"style":168},[586],{"type":48,"value":293},{"type":42,"tag":101,"props":588,"children":589},{"style":168},[590],{"type":48,"value":591}," \"",{"type":42,"tag":101,"props":593,"children":594},{"style":114},[595],{"type":48,"value":596},"Moth",{"type":42,"tag":101,"props":598,"children":599},{"style":168},[600],{"type":48,"value":582},{"type":42,"tag":101,"props":602,"children":603},{"style":168},[604],{"type":48,"value":605},",\n",{"type":42,"tag":101,"props":607,"children":609},{"class":103,"line":608},3,[610,614,618,622,626,630,635,639],{"type":42,"tag":101,"props":611,"children":612},{"style":168},[613],{"type":48,"value":572},{"type":42,"tag":101,"props":615,"children":616},{"style":575},[617],{"type":48,"value":400},{"type":42,"tag":101,"props":619,"children":620},{"style":168},[621],{"type":48,"value":582},{"type":42,"tag":101,"props":623,"children":624},{"style":168},[625],{"type":48,"value":293},{"type":42,"tag":101,"props":627,"children":628},{"style":168},[629],{"type":48,"value":591},{"type":42,"tag":101,"props":631,"children":632},{"style":114},[633],{"type":48,"value":634},"A legendary chonk of few words.",{"type":42,"tag":101,"props":636,"children":637},{"style":168},[638],{"type":48,"value":582},{"type":42,"tag":101,"props":640,"children":641},{"style":168},[642],{"type":48,"value":605},{"type":42,"tag":101,"props":644,"children":646},{"class":103,"line":645},4,[647,651,655,659,663,667,672,676],{"type":42,"tag":101,"props":648,"children":649},{"style":168},[650],{"type":48,"value":572},{"type":42,"tag":101,"props":652,"children":653},{"style":575},[654],{"type":48,"value":498},{"type":42,"tag":101,"props":656,"children":657},{"style":168},[658],{"type":48,"value":582},{"type":42,"tag":101,"props":660,"children":661},{"style":168},[662],{"type":48,"value":293},{"type":42,"tag":101,"props":664,"children":665},{"style":168},[666],{"type":48,"value":591},{"type":42,"tag":101,"props":668,"children":669},{"style":114},[670],{"type":48,"value":671},"Vocal: warm low female voice singing in Mandarin Chinese...",{"type":42,"tag":101,"props":673,"children":674},{"style":168},[675],{"type":48,"value":582},{"type":42,"tag":101,"props":677,"children":678},{"style":168},[679],{"type":48,"value":605},{"type":42,"tag":101,"props":681,"children":683},{"class":103,"line":682},5,[684,688,693,697,701,705,710],{"type":42,"tag":101,"props":685,"children":686},{"style":168},[687],{"type":48,"value":572},{"type":42,"tag":101,"props":689,"children":690},{"style":575},[691],{"type":48,"value":692},"cached_at",{"type":42,"tag":101,"props":694,"children":695},{"style":168},[696],{"type":48,"value":582},{"type":42,"tag":101,"props":698,"children":699},{"style":168},[700],{"type":48,"value":293},{"type":42,"tag":101,"props":702,"children":703},{"style":168},[704],{"type":48,"value":591},{"type":42,"tag":101,"props":706,"children":707},{"style":114},[708],{"type":48,"value":709},"2026-04-07T19:52:15",{"type":42,"tag":101,"props":711,"children":712},{"style":168},[713],{"type":48,"value":714},"\"\n",{"type":42,"tag":101,"props":716,"children":718},{"class":103,"line":717},6,[719],{"type":42,"tag":101,"props":720,"children":721},{"style":168},[722],{"type":48,"value":723},"}\n",{"type":42,"tag":51,"props":725,"children":726},{},[727,732],{"type":42,"tag":72,"props":728,"children":729},{},[730],{"type":48,"value":731},"First time",{"type":48,"value":733},": No cache exists → interpret personality → save to cache file.",{"type":42,"tag":51,"props":735,"children":736},{},[737,742,744,749],{"type":42,"tag":72,"props":738,"children":739},{},[740],{"type":48,"value":741},"Subsequent calls",{"type":48,"value":743},": Read cache → use the saved ",{"type":42,"tag":97,"props":745,"children":747},{"className":746},[],[748],{"type":48,"value":498},{"type":48,"value":750}," directly.\nDo NOT re-interpret — consistency matters.",{"type":42,"tag":51,"props":752,"children":753},{},[754,759,761,766,768,773],{"type":42,"tag":72,"props":755,"children":756},{},[757],{"type":48,"value":758},"Cache invalidation",{"type":48,"value":760},": If the ",{"type":42,"tag":97,"props":762,"children":764},{"className":763},[],[765],{"type":48,"value":400},{"type":48,"value":767}," in ",{"type":42,"tag":97,"props":769,"children":771},{"className":770},[],[772],{"type":48,"value":343},{"type":48,"value":774}," differs from what's\ncached, the pet has changed — regenerate and save a new cache.",{"type":42,"tag":51,"props":776,"children":777},{},[778,783],{"type":42,"tag":72,"props":779,"children":780},{},[781],{"type":48,"value":782},"Manual regeneration",{"type":48,"value":784},": If the user says \"change the voice\" or \"regenerate voice\":\ndelete the cache file and re-interpret from scratch.",{"type":42,"tag":444,"props":786,"children":788},{"id":787},"present-the-voice-to-the-user",[789],{"type":48,"value":790},"Present the voice to the user",{"type":42,"tag":89,"props":792,"children":795},{"className":793,"code":794,"language":48},[263],"\u003Cname>'s unique voice:\n\nTimbre: \u003Ctimbre description>\nStyle: \u003Cstyle description>\nMood: \u003Cmood description>\n\nLet's pick what \u003Cname> should sing about!\n",[796],{"type":42,"tag":97,"props":797,"children":798},{"__ignoreMap":94},[799],{"type":48,"value":794},{"type":42,"tag":251,"props":801,"children":802},{},[],{"type":42,"tag":57,"props":804,"children":806},{"id":805},"step-3-understand-intent-gather-context",[807],{"type":48,"value":808},"Step 3: Understand Intent & Gather Context",{"type":42,"tag":51,"props":810,"children":811},{},[812,817],{"type":42,"tag":72,"props":813,"children":814},{},[815],{"type":48,"value":816},"Do NOT always present a mode menu.",{"type":48,"value":818}," Instead, analyze the user's request to\ndetermine what context is needed, and auto-gather it.",{"type":42,"tag":444,"props":820,"children":822},{"id":821},"auto-context-detection",[823],{"type":48,"value":824},"Auto-context detection",{"type":42,"tag":51,"props":826,"children":827},{},[828,830,835],{"type":48,"value":829},"When the user's request implies personal context, ",{"type":42,"tag":72,"props":831,"children":832},{},[833],{"type":48,"value":834},"automatically",{"type":48,"value":836}," scan for\nrelevant information without asking. Triggers include:",{"type":42,"tag":64,"props":838,"children":839},{},[840,850,860],{"type":42,"tag":68,"props":841,"children":842},{},[843,848],{"type":42,"tag":72,"props":844,"children":845},{},[846],{"type":48,"value":847},"Time-based references",{"type":48,"value":849},": \"today\", \"this week\", \"recently\", \"yesterday\" → scan\ncurrent conversation history and memory files for what happened in that period",{"type":42,"tag":68,"props":851,"children":852},{},[853,858],{"type":42,"tag":72,"props":854,"children":855},{},[856],{"type":48,"value":857},"Personal references",{"type":48,"value":859},": \"my work\", \"my day\", \"what I did\" → scan memory\nand conversation for the user's activities",{"type":42,"tag":68,"props":861,"children":862},{},[863,868],{"type":42,"tag":72,"props":864,"children":865},{},[866],{"type":48,"value":867},"Relationship references",{"type":48,"value":869},": \"our story\", \"what we did together\" → scan memory for\nshared experiences between user and pet\u002FClaude",{"type":42,"tag":444,"props":871,"children":873},{"id":872},"context-gathering-auto-not-mode-gated",[874],{"type":48,"value":875},"Context gathering (auto, not mode-gated)",{"type":42,"tag":51,"props":877,"children":878},{},[879],{"type":48,"value":880},"When context is needed, scan these sources in order:",{"type":42,"tag":882,"props":883,"children":884},"ol",{},[885,895,991],{"type":42,"tag":68,"props":886,"children":887},{},[888,893],{"type":42,"tag":72,"props":889,"children":890},{},[891],{"type":48,"value":892},"Current conversation context",{"type":48,"value":894},": Look at what the user has been doing in\nthis Claude Code session — files edited, commands run, topics discussed.\nThis is the richest source for \"today\" type requests.",{"type":42,"tag":68,"props":896,"children":897},{},[898,903,905,978,981,983,989],{"type":42,"tag":72,"props":899,"children":900},{},[901],{"type":48,"value":902},"Memory files",{"type":48,"value":904},": Scan for relevant memories:",{"type":42,"tag":89,"props":906,"children":908},{"className":91,"code":907,"language":93,"meta":94,"style":94},"find ~\u002F.claude\u002Fprojects\u002F*\u002Fmemory\u002F -name \"*.md\" 2>\u002Fdev\u002Fnull | head -20\n",[909],{"type":42,"tag":97,"props":910,"children":911},{"__ignoreMap":94},[912],{"type":42,"tag":101,"props":913,"children":914},{"class":103,"line":104},[915,920,925,930,935,940,944,949,953,958,963,968,973],{"type":42,"tag":101,"props":916,"children":917},{"style":108},[918],{"type":48,"value":919},"find",{"type":42,"tag":101,"props":921,"children":922},{"style":114},[923],{"type":48,"value":924}," ~\u002F.claude\u002Fprojects\u002F",{"type":42,"tag":101,"props":926,"children":927},{"style":179},[928],{"type":48,"value":929},"*",{"type":42,"tag":101,"props":931,"children":932},{"style":114},[933],{"type":48,"value":934},"\u002Fmemory\u002F",{"type":42,"tag":101,"props":936,"children":937},{"style":114},[938],{"type":48,"value":939}," -name",{"type":42,"tag":101,"props":941,"children":942},{"style":168},[943],{"type":48,"value":591},{"type":42,"tag":101,"props":945,"children":946},{"style":114},[947],{"type":48,"value":948},"*.md",{"type":42,"tag":101,"props":950,"children":951},{"style":168},[952],{"type":48,"value":582},{"type":42,"tag":101,"props":954,"children":955},{"style":168},[956],{"type":48,"value":957}," 2>",{"type":42,"tag":101,"props":959,"children":960},{"style":114},[961],{"type":48,"value":962},"\u002Fdev\u002Fnull",{"type":42,"tag":101,"props":964,"children":965},{"style":168},[966],{"type":48,"value":967}," |",{"type":42,"tag":101,"props":969,"children":970},{"style":108},[971],{"type":48,"value":972}," head",{"type":42,"tag":101,"props":974,"children":975},{"style":114},[976],{"type":48,"value":977}," -20\n",{"type":42,"tag":80,"props":979,"children":980},{},[],{"type":48,"value":982},"Also check ",{"type":42,"tag":97,"props":984,"children":986},{"className":985},[],[987],{"type":48,"value":988},"~\u002F.claude\u002Fmemory\u002F",{"type":48,"value":990}," if it exists.\nRead found files and extract themes relevant to the user's request.",{"type":42,"tag":68,"props":992,"children":993},{},[994,999,1001],{"type":42,"tag":72,"props":995,"children":996},{},[997],{"type":48,"value":998},"Git history",{"type":48,"value":1000}," (if in a repo): For work-related songs, check recent commits:",{"type":42,"tag":89,"props":1002,"children":1004},{"className":91,"code":1003,"language":93,"meta":94,"style":94},"git log --oneline --since=\"today\" 2>\u002Fdev\u002Fnull | head -10\n",[1005],{"type":42,"tag":97,"props":1006,"children":1007},{"__ignoreMap":94},[1008],{"type":42,"tag":101,"props":1009,"children":1010},{"class":103,"line":104},[1011,1016,1021,1026,1031,1035,1040,1044,1048,1052,1056,1060],{"type":42,"tag":101,"props":1012,"children":1013},{"style":108},[1014],{"type":48,"value":1015},"git",{"type":42,"tag":101,"props":1017,"children":1018},{"style":114},[1019],{"type":48,"value":1020}," log",{"type":42,"tag":101,"props":1022,"children":1023},{"style":114},[1024],{"type":48,"value":1025}," --oneline",{"type":42,"tag":101,"props":1027,"children":1028},{"style":114},[1029],{"type":48,"value":1030}," --since=",{"type":42,"tag":101,"props":1032,"children":1033},{"style":168},[1034],{"type":48,"value":582},{"type":42,"tag":101,"props":1036,"children":1037},{"style":114},[1038],{"type":48,"value":1039},"today",{"type":42,"tag":101,"props":1041,"children":1042},{"style":168},[1043],{"type":48,"value":582},{"type":42,"tag":101,"props":1045,"children":1046},{"style":168},[1047],{"type":48,"value":957},{"type":42,"tag":101,"props":1049,"children":1050},{"style":114},[1051],{"type":48,"value":962},{"type":42,"tag":101,"props":1053,"children":1054},{"style":168},[1055],{"type":48,"value":967},{"type":42,"tag":101,"props":1057,"children":1058},{"style":108},[1059],{"type":48,"value":972},{"type":42,"tag":101,"props":1061,"children":1062},{"style":114},[1063],{"type":48,"value":1064}," -10\n",{"type":42,"tag":51,"props":1066,"children":1067},{},[1068],{"type":48,"value":1069},"Use gathered context to enrich the lyrics prompt — make the song personal and\nspecific to what actually happened, not generic.",{"type":42,"tag":444,"props":1071,"children":1073},{"id":1072},"when-no-context-is-needed",[1074],{"type":48,"value":1075},"When NO context is needed",{"type":42,"tag":51,"props":1077,"children":1078},{},[1079],{"type":48,"value":1080},"If the user's request is a clear standalone scene (e.g., \"sing a rainy day song\",\n\"sing a lullaby\"), skip context gathering and proceed directly to music generation.",{"type":42,"tag":444,"props":1082,"children":1084},{"id":1083},"when-context-is-ambiguous",[1085],{"type":48,"value":1086},"When context is ambiguous",{"type":42,"tag":51,"props":1088,"children":1089},{},[1090],{"type":48,"value":1091},"Only ask for clarification when you genuinely can't determine what the user wants.\nDon't present a mode menu — ask a specific question:",{"type":42,"tag":89,"props":1093,"children":1096},{"className":1094,"code":1095,"language":48},[263],"What should \u003Cname> sing about?\n\nFor example:\n  - \"Today's work\" — I'll check what you've been up to\n  - \"My pet waiting by the window for me to come home\"\n  - Or let me pick a random theme?\n",[1097],{"type":42,"tag":97,"props":1098,"children":1099},{"__ignoreMap":94},[1100],{"type":48,"value":1095},{"type":42,"tag":444,"props":1102,"children":1104},{"id":1103},"fallback-to-random",[1105],{"type":48,"value":1106},"Fallback to random",{"type":42,"tag":51,"props":1108,"children":1109},{},[1110],{"type":48,"value":1111},"If context gathering finds nothing useful (no memory files, no conversation\nhistory, no git log), fall back to random theme generation based on the pet's\npersonality:",{"type":42,"tag":64,"props":1113,"children":1114},{},[1115,1120,1125],{"type":42,"tag":68,"props":1116,"children":1117},{},[1118],{"type":48,"value":1119},"Quiet\u002Freserved personality → midnight lullaby, gentle sunset, quiet morning",{"type":42,"tag":68,"props":1121,"children":1122},{},[1123],{"type":48,"value":1124},"Energetic personality → party jam, adventure song, victory march",{"type":42,"tag":68,"props":1126,"children":1127},{},[1128],{"type":48,"value":1129},"Mysterious personality → moonlit serenade, secret whisper, dream journey",{"type":42,"tag":51,"props":1131,"children":1132},{},[1133],{"type":48,"value":1134},"Tell the user what theme was picked.",{"type":42,"tag":251,"props":1136,"children":1137},{},[],{"type":42,"tag":57,"props":1139,"children":1141},{"id":1140},"step-4-generate-music",[1142],{"type":48,"value":1143},"Step 4: Generate Music",{"type":42,"tag":51,"props":1145,"children":1146},{},[1147],{"type":48,"value":1148},"Combine the vocal identity with the chosen theme.",{"type":42,"tag":882,"props":1150,"children":1151},{},[1152,1432,1558,1625],{"type":42,"tag":68,"props":1153,"children":1154},{},[1155,1160,1162,1165,1170,1172,1177,1179,1182,1187,1189,1194,1196,1199,1201,1206,1208,1214,1216,1219,1224,1226,1385,1388,1393,1395,1398,1403,1405,1414,1417,1422,1423],{"type":42,"tag":72,"props":1156,"children":1157},{},[1158],{"type":48,"value":1159},"Construct the full prompt",{"type":48,"value":1161},": The prompt has two parts that MUST both be present:",{"type":42,"tag":80,"props":1163,"children":1164},{},[],{"type":42,"tag":72,"props":1166,"children":1167},{},[1168],{"type":48,"value":1169},"Part A — Vocal identity (MUST come first)",{"type":48,"value":1171},": Always start the prompt with the\ncached ",{"type":42,"tag":97,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":48,"value":498},{"type":48,"value":1178},". This is the most important part — it defines who is\nsinging. Place it at the beginning of the prompt so the API prioritizes it.",{"type":42,"tag":80,"props":1180,"children":1181},{},[],{"type":42,"tag":72,"props":1183,"children":1184},{},[1185],{"type":48,"value":1186},"Part B — Genre\u002Fstyle\u002Fmood tags",{"type":48,"value":1188},": Choose tags that ",{"type":42,"tag":72,"props":1190,"children":1191},{},[1192],{"type":48,"value":1193},"match the theme",{"type":48,"value":1195},", NOT\na default set. Vary the genre deliberately based on what the song is about.",{"type":42,"tag":80,"props":1197,"children":1198},{},[],{"type":48,"value":1200},"Write prompts as ",{"type":42,"tag":72,"props":1202,"children":1203},{},[1204],{"type":48,"value":1205},"vivid English sentences",{"type":48,"value":1207},", not comma-separated tags.\nFollow this pattern: ",{"type":42,"tag":97,"props":1209,"children":1211},{"className":1210},[],[1212],{"type":48,"value":1213},"A [mood] [genre] song, featuring [vocal description], about [narrative\u002Ftheme], [atmosphere], [key instruments and production].",{"type":48,"value":1215},"\nDescribe vocals as a character (\"sultry baritone with jazz inflections\"),\nnot just a gender. Include a scene or vibe to anchor the generation.",{"type":42,"tag":80,"props":1217,"children":1218},{},[],{"type":42,"tag":72,"props":1220,"children":1221},{},[1222],{"type":48,"value":1223},"Genre matching guidelines",{"type":48,"value":1225}," — pick a genre that fits the theme's energy:",{"type":42,"tag":1227,"props":1228,"children":1229},"table",{},[1230,1254],{"type":42,"tag":1231,"props":1232,"children":1233},"thead",{},[1234],{"type":42,"tag":1235,"props":1236,"children":1237},"tr",{},[1238,1244,1249],{"type":42,"tag":1239,"props":1240,"children":1241},"th",{},[1242],{"type":48,"value":1243},"Theme energy",{"type":42,"tag":1239,"props":1245,"children":1246},{},[1247],{"type":48,"value":1248},"Suggested genres",{"type":42,"tag":1239,"props":1250,"children":1251},{},[1252],{"type":48,"value":1253},"Avoid",{"type":42,"tag":1255,"props":1256,"children":1257},"tbody",{},[1258,1277,1295,1313,1331,1349,1367],{"type":42,"tag":1235,"props":1259,"children":1260},{},[1261,1267,1272],{"type":42,"tag":1262,"props":1263,"children":1264},"td",{},[1265],{"type":48,"value":1266},"Encouragement \u002F motivation \u002F cheer",{"type":42,"tag":1262,"props":1268,"children":1269},{},[1270],{"type":48,"value":1271},"Indie rock, synth-pop, funk, rap",{"type":42,"tag":1262,"props":1273,"children":1274},{},[1275],{"type":48,"value":1276},"Indie folk, healing",{"type":42,"tag":1235,"props":1278,"children":1279},{},[1280,1285,1290],{"type":42,"tag":1262,"props":1281,"children":1282},{},[1283],{"type":48,"value":1284},"Daily life \u002F warmth \u002F companionship",{"type":42,"tag":1262,"props":1286,"children":1287},{},[1288],{"type":48,"value":1289},"Mandopop, city pop, bossa nova",{"type":42,"tag":1262,"props":1291,"children":1292},{},[1293],{"type":48,"value":1294},"Same as last time",{"type":42,"tag":1235,"props":1296,"children":1297},{},[1298,1303,1308],{"type":42,"tag":1262,"props":1299,"children":1300},{},[1301],{"type":48,"value":1302},"Missing someone \u002F waiting",{"type":42,"tag":1262,"props":1304,"children":1305},{},[1306],{"type":48,"value":1307},"Folk, R&B, lo-fi",{"type":42,"tag":1262,"props":1309,"children":1310},{},[1311],{"type":48,"value":1312},"Rock, EDM",{"type":42,"tag":1235,"props":1314,"children":1315},{},[1316,1321,1326],{"type":42,"tag":1262,"props":1317,"children":1318},{},[1319],{"type":48,"value":1320},"Humor \u002F roasting \u002F complaining",{"type":42,"tag":1262,"props":1322,"children":1323},{},[1324],{"type":48,"value":1325},"Funk, rap, ska, electro-pop",{"type":42,"tag":1262,"props":1327,"children":1328},{},[1329],{"type":48,"value":1330},"Classical, ballad",{"type":42,"tag":1235,"props":1332,"children":1333},{},[1334,1339,1344],{"type":42,"tag":1262,"props":1335,"children":1336},{},[1337],{"type":48,"value":1338},"Late night \u002F quiet",{"type":42,"tag":1262,"props":1340,"children":1341},{},[1342],{"type":48,"value":1343},"Ambient, piano piece, lo-fi, neoclassical",{"type":42,"tag":1262,"props":1345,"children":1346},{},[1347],{"type":48,"value":1348},"Upbeat, EDM",{"type":42,"tag":1235,"props":1350,"children":1351},{},[1352,1357,1362],{"type":42,"tag":1262,"props":1353,"children":1354},{},[1355],{"type":48,"value":1356},"Celebration \u002F achievement",{"type":42,"tag":1262,"props":1358,"children":1359},{},[1360],{"type":48,"value":1361},"EDM, future bass, funk, K-pop",{"type":42,"tag":1262,"props":1363,"children":1364},{},[1365],{"type":48,"value":1366},"Slow tempo, melancholy",{"type":42,"tag":1235,"props":1368,"children":1369},{},[1370,1375,1380],{"type":42,"tag":1262,"props":1371,"children":1372},{},[1373],{"type":48,"value":1374},"Work routine",{"type":42,"tag":1262,"props":1376,"children":1377},{},[1378],{"type":48,"value":1379},"City pop, synth-pop, lo-fi hip-hop, indie rock",{"type":42,"tag":1262,"props":1381,"children":1382},{},[1383],{"type":48,"value":1384},"Same genre every time",{"type":42,"tag":80,"props":1386,"children":1387},{},[],{"type":42,"tag":72,"props":1389,"children":1390},{},[1391],{"type":48,"value":1392},"Anti-monotony rule",{"type":48,"value":1394},": NEVER use the same genre combination twice in a row.\nBefore constructing the prompt, recall what genre was used in the previous\ngeneration (if any in this session) and pick something different.",{"type":42,"tag":80,"props":1396,"children":1397},{},[],{"type":42,"tag":72,"props":1399,"children":1400},{},[1401],{"type":48,"value":1402},"Prompt structure",{"type":48,"value":1404}," — write as vivid English sentences, not comma-separated tags:",{"type":42,"tag":89,"props":1406,"children":1409},{"className":1407,"code":1408,"language":48},[263],"\u003Cvocal prompt_fragment>. A \u003Cgenre> song with \u003Cmood> mood, featuring \u003Cinstruments>,\nat a \u003Ctempo> tempo, evoking \u003Cscene>.\n",[1410],{"type":42,"tag":97,"props":1411,"children":1412},{"__ignoreMap":94},[1413],{"type":48,"value":1408},{"type":42,"tag":80,"props":1415,"children":1416},{},[],{"type":42,"tag":72,"props":1418,"children":1419},{},[1420],{"type":48,"value":1421},"Diverse examples",{"type":48,"value":293},{"type":42,"tag":89,"props":1424,"children":1427},{"className":1425,"code":1426,"language":48},[263],"# Encouragement for the workday\nA deep warm androgynous voice with cozy delivery. An energetic synth-pop track\nwith a fiery, uplifting mood, driven by pulsing synthesizers and electronic drums\nat a fast tempo, capturing the rush of a morning commute.\n\n# Waiting for the owner to come home\nA deep warm androgynous voice with cozy delivery. A warm city pop song with sweet,\ntender feelings, featuring electric piano and groovy bass at a mid-tempo pace,\nset on a sunny afternoon windowsill waiting for someone to come home.\n\n# Complaining about overtime\nA deep warm androgynous voice with cozy delivery. A playful funk track with a\nhumorous, laid-back vibe, featuring slap bass and brass at a groovy mid-tempo,\ncapturing the absurdity of working late in a dim office.\n\n# Late-night companionship\nA deep warm androgynous voice with cozy delivery. A calm lo-fi hip-hop piece with\na healing, dreamy atmosphere, featuring sampled piano and soft electronic drums\nat a slow tempo, evoking a quiet late-night desk with warm lamp light.\n",[1428],{"type":42,"tag":97,"props":1429,"children":1430},{"__ignoreMap":94},[1431],{"type":48,"value":1426},{"type":42,"tag":68,"props":1433,"children":1434},{},[1435,1440,1442,1448,1450,1453,1458,1459,1462,1464,1469,1471,1494,1497,1499,1522,1525,1527,1530,1535,1537,1543,1545,1550,1551,1556],{"type":42,"tag":72,"props":1436,"children":1437},{},[1438],{"type":48,"value":1439},"Generate lyrics",{"type":48,"value":1441},": Use ",{"type":42,"tag":97,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":48,"value":1447},"--lyrics-optimizer",{"type":48,"value":1449}," to auto-generate lyrics, or write lyrics\nyourself when you need to control the perspective.",{"type":42,"tag":80,"props":1451,"children":1452},{},[],{"type":42,"tag":72,"props":1454,"children":1455},{},[1456],{"type":48,"value":1457},"Important — perspective & personality-driven lyrics",{"type":48,"value":293},{"type":42,"tag":80,"props":1460,"children":1461},{},[],{"type":48,"value":1463},"The pet is the singer, so lyrics MUST be written from the ",{"type":42,"tag":72,"props":1465,"children":1466},{},[1467],{"type":48,"value":1468},"pet's first-person\nperspective",{"type":48,"value":1470}," (\"I\" = the pet, \"you\" = the owner\u002Fuser). The pet is singing TO\nthe owner. For example:",{"type":42,"tag":64,"props":1472,"children":1473},{},[1474,1479,1484,1489],{"type":42,"tag":68,"props":1475,"children":1476},{},[1477],{"type":48,"value":1478},"\"I sit by the door waiting for you to come home\" (pet's perspective)",{"type":42,"tag":68,"props":1480,"children":1481},{},[1482],{"type":48,"value":1483},"\"Wake up now, my dear human\" (pet singing to owner)",{"type":42,"tag":68,"props":1485,"children":1486},{},[1487],{"type":48,"value":1488},"NOT \"I rub my sleepy eyes\" (owner's perspective — wrong)",{"type":42,"tag":68,"props":1490,"children":1491},{},[1492],{"type":48,"value":1493},"NOT \"Then you woke up, my little Moth\" (owner talking about pet — wrong)",{"type":42,"tag":80,"props":1495,"children":1496},{},[],{"type":48,"value":1498},"The pet's personality should shape the lyrics' tone and word choice:",{"type":42,"tag":64,"props":1500,"children":1501},{},[1502,1507,1512,1517],{"type":42,"tag":68,"props":1503,"children":1504},{},[1505],{"type":48,"value":1506},"\"of few words\" → short, impactful lines, minimal filler",{"type":42,"tag":68,"props":1508,"children":1509},{},[1510],{"type":48,"value":1511},"\"playful\" → rhyming, bouncy phrasing, fun wordplay",{"type":42,"tag":68,"props":1513,"children":1514},{},[1515],{"type":48,"value":1516},"\"poetic\" → metaphor-rich, flowing imagery",{"type":42,"tag":68,"props":1518,"children":1519},{},[1520],{"type":48,"value":1521},"\"fierce\" → direct, powerful declarations",{"type":42,"tag":80,"props":1523,"children":1524},{},[],{"type":48,"value":1526},"The pet's name may appear in the lyrics (e.g., in a chorus hook) but the\nnarrative voice is always the pet speaking\u002Fsinging.",{"type":42,"tag":80,"props":1528,"children":1529},{},[],{"type":42,"tag":72,"props":1531,"children":1532},{},[1533],{"type":48,"value":1534},"When perspective matters",{"type":48,"value":1536},": Write the lyrics yourself and pass via ",{"type":42,"tag":97,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":48,"value":1542},"--lyrics",{"type":48,"value":1544},".\n",{"type":42,"tag":72,"props":1546,"children":1547},{},[1548],{"type":48,"value":1549},"When perspective is not critical",{"type":48,"value":1441},{"type":42,"tag":97,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":48,"value":1447},{"type":48,"value":1557}," for convenience.",{"type":42,"tag":68,"props":1559,"children":1560},{},[1561,1566,1568,1573,1574,1579,1581,1587,1589,1592,1594,1599,1601,1604,1606,1615,1618,1623],{"type":42,"tag":72,"props":1562,"children":1563},{},[1564],{"type":48,"value":1565},"Preview (MUST show full content)",{"type":48,"value":1567},": Before generating, show the user the\n",{"type":42,"tag":72,"props":1569,"children":1570},{},[1571],{"type":48,"value":1572},"complete lyrics",{"type":48,"value":436},{"type":42,"tag":72,"props":1575,"children":1576},{},[1577],{"type":48,"value":1578},"full prompt",{"type":48,"value":1580}," — no abbreviation, no ",{"type":42,"tag":97,"props":1582,"children":1584},{"className":1583},[],[1585],{"type":48,"value":1586},"...",{"type":48,"value":1588},", no summary.\nThis is part of the fun — the user wants to read and enjoy the lyrics before\nhearing them sung.",{"type":42,"tag":80,"props":1590,"children":1591},{},[],{"type":48,"value":1593},"The API prompt is always constructed in English (for best generation quality).\nWhen responding in a non-English language, show a ",{"type":42,"tag":72,"props":1595,"children":1596},{},[1597],{"type":48,"value":1598},"localized description",{"type":48,"value":1600}," of\nthe prompt in the user's language for readability. The English prompt is an\ninternal implementation detail — do not show it to the user. Translate all\nlabels (Singer, Theme, Description, Confirm, etc.) into the user's language.",{"type":42,"tag":80,"props":1602,"children":1603},{},[],{"type":48,"value":1605},"Template (English reference — localize all labels at runtime):",{"type":42,"tag":89,"props":1607,"children":1610},{"className":1608,"code":1609,"language":48},[263],"About to generate:\nSinger: \u003Cname>\nTheme: \u003Ctheme>\n\nLyrics:\n[verse]\n\u003Cfull verse lyrics here>\n\n[chorus]\n\u003Cfull chorus lyrics here>\n\n... (show ALL sections in full)\n\nDescription: \u003Clocalized description of the song style and mood>\n\nConfirm? (press enter to confirm, or tell me what to change)\n",[1611],{"type":42,"tag":97,"props":1612,"children":1613},{"__ignoreMap":94},[1614],{"type":48,"value":1609},{"type":42,"tag":80,"props":1616,"children":1617},{},[],{"type":42,"tag":72,"props":1619,"children":1620},{},[1621],{"type":48,"value":1622},"Never truncate or abbreviate",{"type":48,"value":1624}," the lyrics or prompt in the preview.\nThe user should see exactly what will be sent to the API.",{"type":42,"tag":68,"props":1626,"children":1627},{},[1628,1633,1634,1637,1642,1786,1789,1794],{"type":42,"tag":72,"props":1629,"children":1630},{},[1631],{"type":48,"value":1632},"Call music generation",{"type":48,"value":293},{"type":42,"tag":80,"props":1635,"children":1636},{},[],{"type":42,"tag":72,"props":1638,"children":1639},{},[1640],{"type":48,"value":1641},"With auto-generated lyrics (perspective not critical):",{"type":42,"tag":89,"props":1643,"children":1645},{"className":91,"code":1644,"language":93,"meta":94,"style":94},"mmx music generate \\\n  --prompt \"\u003Cfull combined prompt>\" \\\n  --lyrics-optimizer \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002F\u003Cname>_sings_\u003CYYYYMMDD_HHMMSS>.mp3 \\\n  --quiet --non-interactive\n",[1646],{"type":42,"tag":97,"props":1647,"children":1648},{"__ignoreMap":94},[1649,1671,1696,1708,1773],{"type":42,"tag":101,"props":1650,"children":1651},{"class":103,"line":104},[1652,1656,1661,1666],{"type":42,"tag":101,"props":1653,"children":1654},{"style":108},[1655],{"type":48,"value":150},{"type":42,"tag":101,"props":1657,"children":1658},{"style":114},[1659],{"type":48,"value":1660}," music",{"type":42,"tag":101,"props":1662,"children":1663},{"style":114},[1664],{"type":48,"value":1665}," generate",{"type":42,"tag":101,"props":1667,"children":1668},{"style":179},[1669],{"type":48,"value":1670}," \\\n",{"type":42,"tag":101,"props":1672,"children":1673},{"class":103,"line":566},[1674,1679,1683,1688,1692],{"type":42,"tag":101,"props":1675,"children":1676},{"style":114},[1677],{"type":48,"value":1678},"  --prompt",{"type":42,"tag":101,"props":1680,"children":1681},{"style":168},[1682],{"type":48,"value":591},{"type":42,"tag":101,"props":1684,"children":1685},{"style":114},[1686],{"type":48,"value":1687},"\u003Cfull combined prompt>",{"type":42,"tag":101,"props":1689,"children":1690},{"style":168},[1691],{"type":48,"value":582},{"type":42,"tag":101,"props":1693,"children":1694},{"style":179},[1695],{"type":48,"value":1670},{"type":42,"tag":101,"props":1697,"children":1698},{"class":103,"line":608},[1699,1704],{"type":42,"tag":101,"props":1700,"children":1701},{"style":114},[1702],{"type":48,"value":1703},"  --lyrics-optimizer",{"type":42,"tag":101,"props":1705,"children":1706},{"style":179},[1707],{"type":48,"value":1670},{"type":42,"tag":101,"props":1709,"children":1710},{"class":103,"line":645},[1711,1716,1721,1726,1731,1736,1741,1746,1750,1755,1760,1764,1769],{"type":42,"tag":101,"props":1712,"children":1713},{"style":114},[1714],{"type":48,"value":1715},"  --out",{"type":42,"tag":101,"props":1717,"children":1718},{"style":114},[1719],{"type":48,"value":1720}," ~\u002FMusic\u002Fminimax-gen\u002F",{"type":42,"tag":101,"props":1722,"children":1723},{"style":168},[1724],{"type":48,"value":1725},"\u003C",{"type":42,"tag":101,"props":1727,"children":1728},{"style":114},[1729],{"type":48,"value":1730},"nam",{"type":42,"tag":101,"props":1732,"children":1733},{"style":179},[1734],{"type":48,"value":1735},"e",{"type":42,"tag":101,"props":1737,"children":1738},{"style":168},[1739],{"type":48,"value":1740},">",{"type":42,"tag":101,"props":1742,"children":1743},{"style":114},[1744],{"type":48,"value":1745},"_sings_",{"type":42,"tag":101,"props":1747,"children":1748},{"style":168},[1749],{"type":48,"value":1725},{"type":42,"tag":101,"props":1751,"children":1752},{"style":114},[1753],{"type":48,"value":1754},"YYYYMMDD_HHMMS",{"type":42,"tag":101,"props":1756,"children":1757},{"style":179},[1758],{"type":48,"value":1759},"S",{"type":42,"tag":101,"props":1761,"children":1762},{"style":168},[1763],{"type":48,"value":1740},{"type":42,"tag":101,"props":1765,"children":1766},{"style":114},[1767],{"type":48,"value":1768},".mp3",{"type":42,"tag":101,"props":1770,"children":1771},{"style":179},[1772],{"type":48,"value":1670},{"type":42,"tag":101,"props":1774,"children":1775},{"class":103,"line":682},[1776,1781],{"type":42,"tag":101,"props":1777,"children":1778},{"style":114},[1779],{"type":48,"value":1780},"  --quiet",{"type":42,"tag":101,"props":1782,"children":1783},{"style":114},[1784],{"type":48,"value":1785}," --non-interactive\n",{"type":42,"tag":80,"props":1787,"children":1788},{},[],{"type":42,"tag":72,"props":1790,"children":1791},{},[1792],{"type":48,"value":1793},"With self-written lyrics (perspective-controlled):",{"type":42,"tag":89,"props":1795,"children":1797},{"className":91,"code":1796,"language":93,"meta":94,"style":94},"mmx music generate \\\n  --prompt \"\u003Cfull combined prompt>\" \\\n  --lyrics \"\u003Clyrics with correct pet perspective>\" \\\n  --out ~\u002FMusic\u002Fminimax-gen\u002F\u003Cname>_sings_\u003CYYYYMMDD_HHMMSS>.mp3 \\\n  --quiet --non-interactive\n",[1798],{"type":42,"tag":97,"props":1799,"children":1800},{"__ignoreMap":94},[1801,1820,1843,1868,1923],{"type":42,"tag":101,"props":1802,"children":1803},{"class":103,"line":104},[1804,1808,1812,1816],{"type":42,"tag":101,"props":1805,"children":1806},{"style":108},[1807],{"type":48,"value":150},{"type":42,"tag":101,"props":1809,"children":1810},{"style":114},[1811],{"type":48,"value":1660},{"type":42,"tag":101,"props":1813,"children":1814},{"style":114},[1815],{"type":48,"value":1665},{"type":42,"tag":101,"props":1817,"children":1818},{"style":179},[1819],{"type":48,"value":1670},{"type":42,"tag":101,"props":1821,"children":1822},{"class":103,"line":566},[1823,1827,1831,1835,1839],{"type":42,"tag":101,"props":1824,"children":1825},{"style":114},[1826],{"type":48,"value":1678},{"type":42,"tag":101,"props":1828,"children":1829},{"style":168},[1830],{"type":48,"value":591},{"type":42,"tag":101,"props":1832,"children":1833},{"style":114},[1834],{"type":48,"value":1687},{"type":42,"tag":101,"props":1836,"children":1837},{"style":168},[1838],{"type":48,"value":582},{"type":42,"tag":101,"props":1840,"children":1841},{"style":179},[1842],{"type":48,"value":1670},{"type":42,"tag":101,"props":1844,"children":1845},{"class":103,"line":608},[1846,1851,1855,1860,1864],{"type":42,"tag":101,"props":1847,"children":1848},{"style":114},[1849],{"type":48,"value":1850},"  --lyrics",{"type":42,"tag":101,"props":1852,"children":1853},{"style":168},[1854],{"type":48,"value":591},{"type":42,"tag":101,"props":1856,"children":1857},{"style":114},[1858],{"type":48,"value":1859},"\u003Clyrics with correct pet perspective>",{"type":42,"tag":101,"props":1861,"children":1862},{"style":168},[1863],{"type":48,"value":582},{"type":42,"tag":101,"props":1865,"children":1866},{"style":179},[1867],{"type":48,"value":1670},{"type":42,"tag":101,"props":1869,"children":1870},{"class":103,"line":645},[1871,1875,1879,1883,1887,1891,1895,1899,1903,1907,1911,1915,1919],{"type":42,"tag":101,"props":1872,"children":1873},{"style":114},[1874],{"type":48,"value":1715},{"type":42,"tag":101,"props":1876,"children":1877},{"style":114},[1878],{"type":48,"value":1720},{"type":42,"tag":101,"props":1880,"children":1881},{"style":168},[1882],{"type":48,"value":1725},{"type":42,"tag":101,"props":1884,"children":1885},{"style":114},[1886],{"type":48,"value":1730},{"type":42,"tag":101,"props":1888,"children":1889},{"style":179},[1890],{"type":48,"value":1735},{"type":42,"tag":101,"props":1892,"children":1893},{"style":168},[1894],{"type":48,"value":1740},{"type":42,"tag":101,"props":1896,"children":1897},{"style":114},[1898],{"type":48,"value":1745},{"type":42,"tag":101,"props":1900,"children":1901},{"style":168},[1902],{"type":48,"value":1725},{"type":42,"tag":101,"props":1904,"children":1905},{"style":114},[1906],{"type":48,"value":1754},{"type":42,"tag":101,"props":1908,"children":1909},{"style":179},[1910],{"type":48,"value":1759},{"type":42,"tag":101,"props":1912,"children":1913},{"style":168},[1914],{"type":48,"value":1740},{"type":42,"tag":101,"props":1916,"children":1917},{"style":114},[1918],{"type":48,"value":1768},{"type":42,"tag":101,"props":1920,"children":1921},{"style":179},[1922],{"type":48,"value":1670},{"type":42,"tag":101,"props":1924,"children":1925},{"class":103,"line":682},[1926,1930],{"type":42,"tag":101,"props":1927,"children":1928},{"style":114},[1929],{"type":48,"value":1780},{"type":42,"tag":101,"props":1931,"children":1932},{"style":114},[1933],{"type":48,"value":1785},{"type":42,"tag":251,"props":1935,"children":1936},{},[],{"type":42,"tag":57,"props":1938,"children":1940},{"id":1939},"step-5-play-feedback",[1941],{"type":48,"value":1942},"Step 5: Play & Feedback",{"type":42,"tag":444,"props":1944,"children":1946},{"id":1945},"cross-platform-playback",[1947],{"type":48,"value":1948},"Cross-platform playback",{"type":42,"tag":51,"props":1950,"children":1951},{},[1952],{"type":48,"value":1953},"Detect the available audio player and play the generated file:",{"type":42,"tag":89,"props":1955,"children":1957},{"className":91,"code":1956,"language":93,"meta":94,"style":94},"if command -v mpv >\u002Fdev\u002Fnull 2>&1; then\n  mpv --no-video ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelif command -v ffplay >\u002Fdev\u002Fnull 2>&1; then\n  ffplay -nodisp -autoexit ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelif command -v afplay >\u002Fdev\u002Fnull 2>&1; then\n  afplay ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\nelse\n  echo \"No audio player found. Your song is saved at: ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3\"\nfi\n",[1958],{"type":42,"tag":97,"props":1959,"children":1960},{"__ignoreMap":94},[1961,2005,2044,2081,2123,2159,2191,2200,2222],{"type":42,"tag":101,"props":1962,"children":1963},{"class":103,"line":104},[1964,1970,1976,1981,1986,1991,1995,2000],{"type":42,"tag":101,"props":1965,"children":1967},{"style":1966},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1968],{"type":48,"value":1969},"if",{"type":42,"tag":101,"props":1971,"children":1973},{"style":1972},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1974],{"type":48,"value":1975}," command",{"type":42,"tag":101,"props":1977,"children":1978},{"style":114},[1979],{"type":48,"value":1980}," -v",{"type":42,"tag":101,"props":1982,"children":1983},{"style":114},[1984],{"type":48,"value":1985}," mpv",{"type":42,"tag":101,"props":1987,"children":1988},{"style":168},[1989],{"type":48,"value":1990}," >",{"type":42,"tag":101,"props":1992,"children":1993},{"style":114},[1994],{"type":48,"value":962},{"type":42,"tag":101,"props":1996,"children":1997},{"style":168},[1998],{"type":48,"value":1999}," 2>&1;",{"type":42,"tag":101,"props":2001,"children":2002},{"style":1966},[2003],{"type":48,"value":2004}," then\n",{"type":42,"tag":101,"props":2006,"children":2007},{"class":103,"line":566},[2008,2013,2018,2022,2026,2031,2035,2039],{"type":42,"tag":101,"props":2009,"children":2010},{"style":108},[2011],{"type":48,"value":2012},"  mpv",{"type":42,"tag":101,"props":2014,"children":2015},{"style":114},[2016],{"type":48,"value":2017}," --no-video",{"type":42,"tag":101,"props":2019,"children":2020},{"style":114},[2021],{"type":48,"value":1720},{"type":42,"tag":101,"props":2023,"children":2024},{"style":168},[2025],{"type":48,"value":1725},{"type":42,"tag":101,"props":2027,"children":2028},{"style":114},[2029],{"type":48,"value":2030},"filenam",{"type":42,"tag":101,"props":2032,"children":2033},{"style":179},[2034],{"type":48,"value":1735},{"type":42,"tag":101,"props":2036,"children":2037},{"style":168},[2038],{"type":48,"value":1740},{"type":42,"tag":101,"props":2040,"children":2041},{"style":114},[2042],{"type":48,"value":2043},".mp3\n",{"type":42,"tag":101,"props":2045,"children":2046},{"class":103,"line":608},[2047,2052,2056,2060,2065,2069,2073,2077],{"type":42,"tag":101,"props":2048,"children":2049},{"style":1966},[2050],{"type":48,"value":2051},"elif",{"type":42,"tag":101,"props":2053,"children":2054},{"style":1972},[2055],{"type":48,"value":1975},{"type":42,"tag":101,"props":2057,"children":2058},{"style":114},[2059],{"type":48,"value":1980},{"type":42,"tag":101,"props":2061,"children":2062},{"style":114},[2063],{"type":48,"value":2064}," ffplay",{"type":42,"tag":101,"props":2066,"children":2067},{"style":168},[2068],{"type":48,"value":1990},{"type":42,"tag":101,"props":2070,"children":2071},{"style":114},[2072],{"type":48,"value":962},{"type":42,"tag":101,"props":2074,"children":2075},{"style":168},[2076],{"type":48,"value":1999},{"type":42,"tag":101,"props":2078,"children":2079},{"style":1966},[2080],{"type":48,"value":2004},{"type":42,"tag":101,"props":2082,"children":2083},{"class":103,"line":645},[2084,2089,2094,2099,2103,2107,2111,2115,2119],{"type":42,"tag":101,"props":2085,"children":2086},{"style":108},[2087],{"type":48,"value":2088},"  ffplay",{"type":42,"tag":101,"props":2090,"children":2091},{"style":114},[2092],{"type":48,"value":2093}," -nodisp",{"type":42,"tag":101,"props":2095,"children":2096},{"style":114},[2097],{"type":48,"value":2098}," -autoexit",{"type":42,"tag":101,"props":2100,"children":2101},{"style":114},[2102],{"type":48,"value":1720},{"type":42,"tag":101,"props":2104,"children":2105},{"style":168},[2106],{"type":48,"value":1725},{"type":42,"tag":101,"props":2108,"children":2109},{"style":114},[2110],{"type":48,"value":2030},{"type":42,"tag":101,"props":2112,"children":2113},{"style":179},[2114],{"type":48,"value":1735},{"type":42,"tag":101,"props":2116,"children":2117},{"style":168},[2118],{"type":48,"value":1740},{"type":42,"tag":101,"props":2120,"children":2121},{"style":114},[2122],{"type":48,"value":2043},{"type":42,"tag":101,"props":2124,"children":2125},{"class":103,"line":682},[2126,2130,2134,2138,2143,2147,2151,2155],{"type":42,"tag":101,"props":2127,"children":2128},{"style":1966},[2129],{"type":48,"value":2051},{"type":42,"tag":101,"props":2131,"children":2132},{"style":1972},[2133],{"type":48,"value":1975},{"type":42,"tag":101,"props":2135,"children":2136},{"style":114},[2137],{"type":48,"value":1980},{"type":42,"tag":101,"props":2139,"children":2140},{"style":114},[2141],{"type":48,"value":2142}," afplay",{"type":42,"tag":101,"props":2144,"children":2145},{"style":168},[2146],{"type":48,"value":1990},{"type":42,"tag":101,"props":2148,"children":2149},{"style":114},[2150],{"type":48,"value":962},{"type":42,"tag":101,"props":2152,"children":2153},{"style":168},[2154],{"type":48,"value":1999},{"type":42,"tag":101,"props":2156,"children":2157},{"style":1966},[2158],{"type":48,"value":2004},{"type":42,"tag":101,"props":2160,"children":2161},{"class":103,"line":717},[2162,2167,2171,2175,2179,2183,2187],{"type":42,"tag":101,"props":2163,"children":2164},{"style":108},[2165],{"type":48,"value":2166},"  afplay",{"type":42,"tag":101,"props":2168,"children":2169},{"style":114},[2170],{"type":48,"value":1720},{"type":42,"tag":101,"props":2172,"children":2173},{"style":168},[2174],{"type":48,"value":1725},{"type":42,"tag":101,"props":2176,"children":2177},{"style":114},[2178],{"type":48,"value":2030},{"type":42,"tag":101,"props":2180,"children":2181},{"style":179},[2182],{"type":48,"value":1735},{"type":42,"tag":101,"props":2184,"children":2185},{"style":168},[2186],{"type":48,"value":1740},{"type":42,"tag":101,"props":2188,"children":2189},{"style":114},[2190],{"type":48,"value":2043},{"type":42,"tag":101,"props":2192,"children":2194},{"class":103,"line":2193},7,[2195],{"type":42,"tag":101,"props":2196,"children":2197},{"style":1966},[2198],{"type":48,"value":2199},"else\n",{"type":42,"tag":101,"props":2201,"children":2203},{"class":103,"line":2202},8,[2204,2209,2213,2218],{"type":42,"tag":101,"props":2205,"children":2206},{"style":1972},[2207],{"type":48,"value":2208},"  echo",{"type":42,"tag":101,"props":2210,"children":2211},{"style":168},[2212],{"type":48,"value":591},{"type":42,"tag":101,"props":2214,"children":2215},{"style":114},[2216],{"type":48,"value":2217},"No audio player found. Your song is saved at: ~\u002FMusic\u002Fminimax-gen\u002F\u003Cfilename>.mp3",{"type":42,"tag":101,"props":2219,"children":2220},{"style":168},[2221],{"type":48,"value":714},{"type":42,"tag":101,"props":2223,"children":2225},{"class":103,"line":2224},9,[2226],{"type":42,"tag":101,"props":2227,"children":2228},{"style":1966},[2229],{"type":48,"value":2230},"fi\n",{"type":42,"tag":51,"props":2232,"children":2233},{},[2234],{"type":48,"value":2235},"After starting playback, tell the user the file is playing and where it's saved.\nDo NOT show playback controls (e.g. keyboard shortcuts) — they don't work in this\nenvironment since the player runs in the background.",{"type":42,"tag":51,"props":2237,"children":2238},{},[2239],{"type":48,"value":2240},"If no player is found, show the file path and suggest installing mpv.",{"type":42,"tag":444,"props":2242,"children":2244},{"id":2243},"feedback",[2245],{"type":48,"value":2246},"Feedback",{"type":42,"tag":51,"props":2248,"children":2249},{},[2250],{"type":48,"value":2251},"After playback, ask for feedback (localize all text):",{"type":42,"tag":89,"props":2253,"children":2256},{"className":2254,"code":2255,"language":48},[263],"How was \u003Cname>'s performance?\n\n1. Amazing! Keep it!\n2. Try a different theme \u002F style\n3. Fine-tune the lyrics and regenerate\n4. Try another random one\n",[2257],{"type":42,"tag":97,"props":2258,"children":2259},{"__ignoreMap":94},[2260],{"type":48,"value":2255},{"type":42,"tag":251,"props":2262,"children":2263},{},[],{"type":42,"tag":57,"props":2265,"children":2267},{"id":2266},"edge-cases",[2268],{"type":48,"value":2269},"Edge Cases",{"type":42,"tag":1227,"props":2271,"children":2272},{},[2273,2289],{"type":42,"tag":1231,"props":2274,"children":2275},{},[2276],{"type":42,"tag":1235,"props":2277,"children":2278},{},[2279,2284],{"type":42,"tag":1239,"props":2280,"children":2281},{},[2282],{"type":48,"value":2283},"Situation",{"type":42,"tag":1239,"props":2285,"children":2286},{},[2287],{"type":48,"value":2288},"Action",{"type":42,"tag":1255,"props":2290,"children":2291},{},[2292,2318,2336,2356,2369,2382,2395],{"type":42,"tag":1235,"props":2293,"children":2294},{},[2295,2305],{"type":42,"tag":1262,"props":2296,"children":2297},{},[2298,2300],{"type":48,"value":2299},"No ",{"type":42,"tag":97,"props":2301,"children":2303},{"className":2302},[],[2304],{"type":48,"value":343},{"type":42,"tag":1262,"props":2306,"children":2307},{},[2308,2310,2316],{"type":48,"value":2309},"Tell user to run ",{"type":42,"tag":97,"props":2311,"children":2313},{"className":2312},[],[2314],{"type":48,"value":2315},"\u002Fbuddy",{"type":48,"value":2317}," first",{"type":42,"tag":1235,"props":2319,"children":2320},{},[2321,2326],{"type":42,"tag":1262,"props":2322,"children":2323},{},[2324],{"type":48,"value":2325},"Companion field is empty",{"type":42,"tag":1262,"props":2327,"children":2328},{},[2329,2331],{"type":48,"value":2330},"Same — guide to ",{"type":42,"tag":97,"props":2332,"children":2334},{"className":2333},[],[2335],{"type":48,"value":2315},{"type":42,"tag":1235,"props":2337,"children":2338},{},[2339,2344],{"type":42,"tag":1262,"props":2340,"children":2341},{},[2342],{"type":48,"value":2343},"mmx CLI not installed",{"type":42,"tag":1262,"props":2345,"children":2346},{},[2347,2349,2355],{"type":48,"value":2348},"Print: \"You need to install mmx CLI: ",{"type":42,"tag":97,"props":2350,"children":2352},{"className":2351},[],[2353],{"type":48,"value":2354},"npm install -g mmx-cli && mmx auth login",{"type":48,"value":582},{"type":42,"tag":1235,"props":2357,"children":2358},{},[2359,2364],{"type":42,"tag":1262,"props":2360,"children":2361},{},[2362],{"type":48,"value":2363},"No audio player found",{"type":42,"tag":1262,"props":2365,"children":2366},{},[2367],{"type":48,"value":2368},"Show file path and suggest installing mpv",{"type":42,"tag":1235,"props":2370,"children":2371},{},[2372,2377],{"type":42,"tag":1262,"props":2373,"children":2374},{},[2375],{"type":48,"value":2376},"No memory files found",{"type":42,"tag":1262,"props":2378,"children":2379},{},[2380],{"type":48,"value":2381},"Suggest a custom theme or random mode",{"type":42,"tag":1235,"props":2383,"children":2384},{},[2385,2390],{"type":42,"tag":1262,"props":2386,"children":2387},{},[2388],{"type":48,"value":2389},"User wants to change the pet's voice",{"type":42,"tag":1262,"props":2391,"children":2392},{},[2393],{"type":48,"value":2394},"Delete cache, re-interpret personality",{"type":42,"tag":1235,"props":2396,"children":2397},{},[2398,2403],{"type":42,"tag":1262,"props":2399,"children":2400},{},[2401],{"type":48,"value":2402},"User wants a specific genre",{"type":42,"tag":1262,"props":2404,"children":2405},{},[2406],{"type":48,"value":2407},"Let them override — append their genre to the prompt",{"type":42,"tag":251,"props":2409,"children":2410},{},[],{"type":42,"tag":57,"props":2412,"children":2414},{"id":2413},"notes",[2415],{"type":48,"value":2416},"Notes",{"type":42,"tag":64,"props":2418,"children":2419},{},[2420,2432,2437,2449,2468],{"type":42,"tag":68,"props":2421,"children":2422},{},[2423,2425,2430],{"type":48,"value":2424},"The vocal identity is based on ",{"type":42,"tag":72,"props":2426,"children":2427},{},[2428],{"type":48,"value":2429},"name + personality",{"type":48,"value":2431}," only. No species\u002Frarity\ntemplate mapping.",{"type":42,"tag":68,"props":2433,"children":2434},{},[2435],{"type":48,"value":2436},"Voice is cached and consistent across sessions. Same pet = same voice.",{"type":42,"tag":68,"props":2438,"children":2439},{},[2440,2442,2447],{"type":48,"value":2441},"Lyrics should always be ",{"type":42,"tag":72,"props":2443,"children":2444},{},[2445],{"type":48,"value":2446},"original",{"type":48,"value":2448}," — never reproduce copyrighted lyrics.",{"type":42,"tag":68,"props":2450,"children":2451},{},[2452,2454,2459,2461,2466],{"type":48,"value":2453},"The pet's personality shapes both the ",{"type":42,"tag":72,"props":2455,"children":2456},{},[2457],{"type":48,"value":2458},"voice",{"type":48,"value":2460}," (how they sound) and the\n",{"type":42,"tag":72,"props":2462,"children":2463},{},[2464],{"type":48,"value":2465},"lyrics",{"type":48,"value":2467}," (what they say and how they say it).",{"type":42,"tag":68,"props":2469,"children":2470},{},[2471,2473,2479],{"type":48,"value":2472},"All generated files go to ",{"type":42,"tag":97,"props":2474,"children":2476},{"className":2475},[],[2477],{"type":48,"value":2478},"~\u002FMusic\u002Fminimax-gen\u002F",{"type":48,"value":2480}," with the pet name in the\nfilename.",{"type":42,"tag":2482,"props":2483,"children":2484},"style",{},[2485],{"type":48,"value":2486},"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":2488,"total":2677},[2489,2511,2517,2536,2551,2571,2589,2607,2622,2638,2657,2667],{"slug":2490,"name":2490,"fn":2491,"description":2492,"org":2493,"tags":2494,"stars":23,"repoUrl":24,"updatedAt":2510},"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},[2495,2498,2501,2504,2507],{"name":2496,"slug":2497,"type":16},"Accessibility","accessibility",{"name":2499,"slug":2500,"type":16},"Android","android",{"name":2502,"slug":2503,"type":16},"Kotlin","kotlin",{"name":2505,"slug":2506,"type":16},"Mobile","mobile",{"name":2508,"slug":2509,"type":16},"UI Components","ui-components","2026-07-13T06:16:54.247834",{"slug":4,"name":4,"fn":5,"description":6,"org":2512,"tags":2513,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2514,2515,2516],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"slug":2518,"name":2518,"fn":2519,"description":2520,"org":2521,"tags":2522,"stars":23,"repoUrl":24,"updatedAt":2535},"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},[2523,2526,2529,2532],{"name":2524,"slug":2525,"type":16},"Design","design",{"name":2527,"slug":2528,"type":16},"Presentations","presentations",{"name":2530,"slug":2531,"type":16},"Themes","themes",{"name":2533,"slug":2534,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":2537,"name":2537,"fn":2538,"description":2539,"org":2540,"tags":2541,"stars":23,"repoUrl":24,"updatedAt":2550},"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},[2542,2543,2546,2549],{"name":2524,"slug":2525,"type":16},{"name":2544,"slug":2545,"type":16},"Design System","design-system",{"name":2547,"slug":2548,"type":16},"PowerPoint","powerpoint",{"name":2527,"slug":2528,"type":16},"2026-07-13T06:17:10.398389",{"slug":2552,"name":2552,"fn":2553,"description":2554,"org":2555,"tags":2556,"stars":23,"repoUrl":24,"updatedAt":2570},"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},[2557,2560,2563,2564,2567],{"name":2558,"slug":2559,"type":16},"Dart","dart",{"name":2561,"slug":2562,"type":16},"Flutter","flutter",{"name":2505,"slug":2506,"type":16},{"name":2565,"slug":2566,"type":16},"Performance","performance",{"name":2568,"slug":2569,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":2572,"name":2572,"fn":2573,"description":2574,"org":2575,"tags":2576,"stars":23,"repoUrl":24,"updatedAt":2588},"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},[2577,2580,2581,2582,2585],{"name":2578,"slug":2579,"type":16},"Animation","animation",{"name":14,"slug":15,"type":16},{"name":2524,"slug":2525,"type":16},{"name":2583,"slug":2584,"type":16},"Frontend","frontend",{"name":2586,"slug":2587,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":2590,"name":2590,"fn":2591,"description":2592,"org":2593,"tags":2594,"stars":23,"repoUrl":24,"updatedAt":2606},"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},[2595,2598,2599,2602,2605],{"name":2596,"slug":2597,"type":16},"Backend","backend",{"name":2583,"slug":2584,"type":16},{"name":2600,"slug":2601,"type":16},"Full-stack","full-stack",{"name":2603,"slug":2604,"type":16},"REST API","rest-api",{"name":2586,"slug":2587,"type":16},"2026-07-13T06:16:43.219005",{"slug":2608,"name":2608,"fn":2609,"description":2610,"org":2611,"tags":2612,"stars":23,"repoUrl":24,"updatedAt":2621},"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},[2613,2614,2615,2618],{"name":2578,"slug":2579,"type":16},{"name":14,"slug":15,"type":16},{"name":2616,"slug":2617,"type":16},"Images","images",{"name":2619,"slug":2620,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":2623,"name":2623,"fn":2624,"description":2625,"org":2626,"tags":2627,"stars":23,"repoUrl":24,"updatedAt":2637},"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},[2628,2629,2632,2633,2636],{"name":2496,"slug":2497,"type":16},{"name":2630,"slug":2631,"type":16},"iOS","ios",{"name":2505,"slug":2506,"type":16},{"name":2634,"slug":2635,"type":16},"SwiftUI","swiftui",{"name":2508,"slug":2509,"type":16},"2026-07-13T06:16:55.686092",{"slug":2639,"name":2639,"fn":2640,"description":2641,"org":2642,"tags":2643,"stars":23,"repoUrl":24,"updatedAt":2656},"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},[2644,2647,2650,2653],{"name":2645,"slug":2646,"type":16},"Documents","documents",{"name":2648,"slug":2649,"type":16},"DOCX","docx",{"name":2651,"slug":2652,"type":16},"Office","office",{"name":2654,"slug":2655,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":2658,"name":2658,"fn":2659,"description":2660,"org":2661,"tags":2662,"stars":23,"repoUrl":24,"updatedAt":2666},"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},[2663,2664,2665],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":2619,"slug":2620,"type":16},"2026-07-13T06:16:50.381758",{"slug":2668,"name":2668,"fn":2669,"description":2670,"org":2671,"tags":2672,"stars":23,"repoUrl":24,"updatedAt":2676},"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},[2673,2674,2675],{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":2619,"slug":2620,"type":16},"2026-07-13T06:16:57.002997",37,{"items":2679,"total":2732},[2680,2688,2694,2701,2708,2716,2724],{"slug":2490,"name":2490,"fn":2491,"description":2492,"org":2681,"tags":2682,"stars":23,"repoUrl":24,"updatedAt":2510},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2683,2684,2685,2686,2687],{"name":2496,"slug":2497,"type":16},{"name":2499,"slug":2500,"type":16},{"name":2502,"slug":2503,"type":16},{"name":2505,"slug":2506,"type":16},{"name":2508,"slug":2509,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":2689,"tags":2690,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2691,2692,2693],{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"slug":2518,"name":2518,"fn":2519,"description":2520,"org":2695,"tags":2696,"stars":23,"repoUrl":24,"updatedAt":2535},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2697,2698,2699,2700],{"name":2524,"slug":2525,"type":16},{"name":2527,"slug":2528,"type":16},{"name":2530,"slug":2531,"type":16},{"name":2533,"slug":2534,"type":16},{"slug":2537,"name":2537,"fn":2538,"description":2539,"org":2702,"tags":2703,"stars":23,"repoUrl":24,"updatedAt":2550},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2704,2705,2706,2707],{"name":2524,"slug":2525,"type":16},{"name":2544,"slug":2545,"type":16},{"name":2547,"slug":2548,"type":16},{"name":2527,"slug":2528,"type":16},{"slug":2552,"name":2552,"fn":2553,"description":2554,"org":2709,"tags":2710,"stars":23,"repoUrl":24,"updatedAt":2570},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2711,2712,2713,2714,2715],{"name":2558,"slug":2559,"type":16},{"name":2561,"slug":2562,"type":16},{"name":2505,"slug":2506,"type":16},{"name":2565,"slug":2566,"type":16},{"name":2568,"slug":2569,"type":16},{"slug":2572,"name":2572,"fn":2573,"description":2574,"org":2717,"tags":2718,"stars":23,"repoUrl":24,"updatedAt":2588},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2719,2720,2721,2722,2723],{"name":2578,"slug":2579,"type":16},{"name":14,"slug":15,"type":16},{"name":2524,"slug":2525,"type":16},{"name":2583,"slug":2584,"type":16},{"name":2586,"slug":2587,"type":16},{"slug":2590,"name":2590,"fn":2591,"description":2592,"org":2725,"tags":2726,"stars":23,"repoUrl":24,"updatedAt":2606},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2727,2728,2729,2730,2731],{"name":2596,"slug":2597,"type":16},{"name":2583,"slug":2584,"type":16},{"name":2600,"slug":2601,"type":16},{"name":2603,"slug":2604,"type":16},{"name":2586,"slug":2587,"type":16},22]