[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-flutter-dev":3,"mdc-zc1d0k-key":40,"related-repo-minimax-flutter-dev":1182,"related-org-minimax-flutter-dev":1299},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":29,"repoUrl":30,"updatedAt":31,"license":32,"forks":33,"topics":34,"repo":35,"sourceUrl":38,"mdContent":39},"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},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20,23,26],{"name":14,"slug":15,"type":16},"Performance","performance","tag",{"name":18,"slug":19,"type":16},"Flutter","flutter",{"name":21,"slug":22,"type":16},"Mobile","mobile",{"name":24,"slug":25,"type":16},"Dart","dart",{"name":27,"slug":28,"type":16},"State Management","state-management",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:36.626679","MIT",1118,[],{"repoUrl":30,"stars":29,"forks":33,"topics":36,"description":37},[],null,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fflutter-dev","---\nname: flutter-dev\ndescription: |\n  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.\n  Use when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\nlicense: MIT\nmetadata:\n  version: \"1.0.0\"\n  category: mobile\n  sources:\n    - flutter-expert by Jeff Smolinski (https:\u002F\u002Fgithub.com\u002FJeffallan\u002Fclaude-skills) — Flutter expert skill framework\n    - Flutter Documentation\n    - Riverpod Documentation\n    - Bloc Library Documentation\n---\n\n# Flutter Development Guide\n\nA practical guide for building cross-platform applications with Flutter 3 and Dart. Focuses on proven patterns, state management, and performance optimization.\n\n## Quick Reference\n\n### Widget Patterns\n\n| Purpose | Component |\n|---------|-----------|\n| State management (simple) | `StateProvider` + `ConsumerWidget` |\n| State management (complex) | `NotifierProvider` \u002F `Bloc` |\n| Async data | `FutureProvider` \u002F `AsyncNotifierProvider` |\n| Real-time streams | `StreamProvider` |\n| Navigation | `GoRouter` + `context.go\u002Fpush` |\n| Responsive layout | `LayoutBuilder` + breakpoints |\n| List display | `ListView.builder` |\n| Complex scrolling | `CustomScrollView` + Slivers |\n| Hooks | `HookWidget` + `useState\u002FuseEffect` |\n| Forms | `Form` + `TextFormField` + validation |\n\n### Performance Patterns\n\n| Purpose | Solution |\n|---------|----------|\n| Prevent rebuilds | `const` constructors |\n| Selective updates | `ref.watch(provider.select(...))` |\n| Isolate repaints | `RepaintBoundary` |\n| Lazy lists | `ListView.builder` |\n| Heavy computation | `compute()` isolate |\n| Image caching | `cached_network_image` |\n\n## Core Principles\n\n### Widget Optimization\n- Use `const` constructors wherever possible\n- Extract static widgets to separate const classes\n- Use `Key` for list items (ValueKey, ObjectKey)\n- Prefer `ConsumerWidget` over `StatefulWidget` for state\n\n### State Management\n- Riverpod for dependency injection and simple state\n- Bloc\u002FCubit for event-driven workflows and complex logic\n- Never mutate state directly (create new instances)\n- Use `select()` to minimize rebuilds\n\n### Layout\n- 8pt spacing increments (8, 16, 24, 32, 48)\n- Responsive breakpoints: mobile (\u003C650), tablet (650-1100), desktop (>1100)\n- Support all screen sizes with flexible layouts\n- Follow Material 3 \u002F Cupertino design guidelines\n\n### Performance\n- Profile with DevTools before optimizing\n- Target \u003C16ms frame time for 60fps\n- Use `RepaintBoundary` for complex animations\n- Offload heavy work with `compute()`\n\n## Checklist\n\n### Widget Best Practices\n- [ ] `const` constructors on all static widgets\n- [ ] Proper `Key` on list items\n- [ ] `ConsumerWidget` for state-dependent widgets\n- [ ] No widget building inside `build()` method\n- [ ] Extract reusable widgets to separate files\n\n### State Management\n- [ ] Immutable state objects\n- [ ] `select()` for granular rebuilds\n- [ ] Proper provider scoping\n- [ ] Dispose controllers and subscriptions\n- [ ] Handle loading\u002Ferror states\n\n### Navigation\n- [ ] GoRouter with typed routes\n- [ ] Auth guards via redirect\n- [ ] Deep linking support\n- [ ] State preservation across routes\n\n### Performance\n- [ ] Profile mode testing (`flutter run --profile`)\n- [ ] \u003C16ms frame rendering time\n- [ ] No unnecessary rebuilds (DevTools check)\n- [ ] Images cached and resized\n- [ ] Heavy computation in isolates\n\n### Testing\n- [ ] Widget tests for UI components\n- [ ] Unit tests for business logic\n- [ ] Integration tests for user flows\n- [ ] Bloc tests with `blocTest()`\n\n## References\n\n| Topic | Reference |\n|-------|-----------|\n| Widget patterns, const optimization, responsive layout | [Widget Patterns](references\u002Fwidget-patterns.md) |\n| Riverpod providers, notifiers, async state | [Riverpod State Management](references\u002Friverpod-state.md) |\n| Bloc, Cubit, event-driven state | [Bloc State Management](references\u002Fbloc-state.md) |\n| GoRouter setup, routes, deep linking | [GoRouter Navigation](references\u002Fgorouter-navigation.md) |\n| Feature-based structure, dependencies | [Project Structure](references\u002Fproject-structure.md) |\n| Profiling, const optimization, DevTools | [Performance Optimization](references\u002Fperformance.md) |\n| Widget tests, integration tests, mocking | [Testing Strategies](references\u002Ftesting.md) |\n| iOS\u002FAndroid\u002FWeb specific implementations | [Platform Integration](references\u002Fplatform-specific.md) |\n| Implicit\u002Fexplicit animations, Hero, transitions | [Animations](references\u002Fanimations.md) |\n| Dio, interceptors, error handling, caching | [Networking](references\u002Fnetworking.md) |\n| Form validation, FormField, input formatters | [Forms](references\u002Fforms.md) |\n| i18n, flutter_localizations, intl | [Localization](references\u002Flocalization.md) |\n\n---\n\nFlutter, Dart, Material Design, and Cupertino are trademarks of Google LLC and Apple Inc. respectively. Riverpod, Bloc, and GoRouter are open-source packages by their respective maintainers.\n",{"data":41,"body":49},{"name":4,"description":6,"license":32,"metadata":42},{"version":43,"category":22,"sources":44},"1.0.0",[45,46,47,48],"flutter-expert by Jeff Smolinski (https:\u002F\u002Fgithub.com\u002FJeffallan\u002Fclaude-skills) — Flutter expert skill framework","Flutter Documentation","Riverpod Documentation","Bloc Library Documentation",{"type":50,"children":51},"root",[52,61,67,74,81,330,336,462,468,474,528,532,562,568,591,595,629,635,641,723,728,783,788,828,833,890,896,942,948,1173,1177],{"type":53,"tag":54,"props":55,"children":57},"element","h1",{"id":56},"flutter-development-guide",[58],{"type":59,"value":60},"text","Flutter Development Guide",{"type":53,"tag":62,"props":63,"children":64},"p",{},[65],{"type":59,"value":66},"A practical guide for building cross-platform applications with Flutter 3 and Dart. Focuses on proven patterns, state management, and performance optimization.",{"type":53,"tag":68,"props":69,"children":71},"h2",{"id":70},"quick-reference",[72],{"type":59,"value":73},"Quick Reference",{"type":53,"tag":75,"props":76,"children":78},"h3",{"id":77},"widget-patterns",[79],{"type":59,"value":80},"Widget Patterns",{"type":53,"tag":82,"props":83,"children":84},"table",{},[85,104],{"type":53,"tag":86,"props":87,"children":88},"thead",{},[89],{"type":53,"tag":90,"props":91,"children":92},"tr",{},[93,99],{"type":53,"tag":94,"props":95,"children":96},"th",{},[97],{"type":59,"value":98},"Purpose",{"type":53,"tag":94,"props":100,"children":101},{},[102],{"type":59,"value":103},"Component",{"type":53,"tag":105,"props":106,"children":107},"tbody",{},[108,135,160,184,201,225,244,261,280,304],{"type":53,"tag":90,"props":109,"children":110},{},[111,117],{"type":53,"tag":112,"props":113,"children":114},"td",{},[115],{"type":59,"value":116},"State management (simple)",{"type":53,"tag":112,"props":118,"children":119},{},[120,127,129],{"type":53,"tag":121,"props":122,"children":124},"code",{"className":123},[],[125],{"type":59,"value":126},"StateProvider",{"type":59,"value":128}," + ",{"type":53,"tag":121,"props":130,"children":132},{"className":131},[],[133],{"type":59,"value":134},"ConsumerWidget",{"type":53,"tag":90,"props":136,"children":137},{},[138,143],{"type":53,"tag":112,"props":139,"children":140},{},[141],{"type":59,"value":142},"State management (complex)",{"type":53,"tag":112,"props":144,"children":145},{},[146,152,154],{"type":53,"tag":121,"props":147,"children":149},{"className":148},[],[150],{"type":59,"value":151},"NotifierProvider",{"type":59,"value":153}," \u002F ",{"type":53,"tag":121,"props":155,"children":157},{"className":156},[],[158],{"type":59,"value":159},"Bloc",{"type":53,"tag":90,"props":161,"children":162},{},[163,168],{"type":53,"tag":112,"props":164,"children":165},{},[166],{"type":59,"value":167},"Async data",{"type":53,"tag":112,"props":169,"children":170},{},[171,177,178],{"type":53,"tag":121,"props":172,"children":174},{"className":173},[],[175],{"type":59,"value":176},"FutureProvider",{"type":59,"value":153},{"type":53,"tag":121,"props":179,"children":181},{"className":180},[],[182],{"type":59,"value":183},"AsyncNotifierProvider",{"type":53,"tag":90,"props":185,"children":186},{},[187,192],{"type":53,"tag":112,"props":188,"children":189},{},[190],{"type":59,"value":191},"Real-time streams",{"type":53,"tag":112,"props":193,"children":194},{},[195],{"type":53,"tag":121,"props":196,"children":198},{"className":197},[],[199],{"type":59,"value":200},"StreamProvider",{"type":53,"tag":90,"props":202,"children":203},{},[204,209],{"type":53,"tag":112,"props":205,"children":206},{},[207],{"type":59,"value":208},"Navigation",{"type":53,"tag":112,"props":210,"children":211},{},[212,218,219],{"type":53,"tag":121,"props":213,"children":215},{"className":214},[],[216],{"type":59,"value":217},"GoRouter",{"type":59,"value":128},{"type":53,"tag":121,"props":220,"children":222},{"className":221},[],[223],{"type":59,"value":224},"context.go\u002Fpush",{"type":53,"tag":90,"props":226,"children":227},{},[228,233],{"type":53,"tag":112,"props":229,"children":230},{},[231],{"type":59,"value":232},"Responsive layout",{"type":53,"tag":112,"props":234,"children":235},{},[236,242],{"type":53,"tag":121,"props":237,"children":239},{"className":238},[],[240],{"type":59,"value":241},"LayoutBuilder",{"type":59,"value":243}," + breakpoints",{"type":53,"tag":90,"props":245,"children":246},{},[247,252],{"type":53,"tag":112,"props":248,"children":249},{},[250],{"type":59,"value":251},"List display",{"type":53,"tag":112,"props":253,"children":254},{},[255],{"type":53,"tag":121,"props":256,"children":258},{"className":257},[],[259],{"type":59,"value":260},"ListView.builder",{"type":53,"tag":90,"props":262,"children":263},{},[264,269],{"type":53,"tag":112,"props":265,"children":266},{},[267],{"type":59,"value":268},"Complex scrolling",{"type":53,"tag":112,"props":270,"children":271},{},[272,278],{"type":53,"tag":121,"props":273,"children":275},{"className":274},[],[276],{"type":59,"value":277},"CustomScrollView",{"type":59,"value":279}," + Slivers",{"type":53,"tag":90,"props":281,"children":282},{},[283,288],{"type":53,"tag":112,"props":284,"children":285},{},[286],{"type":59,"value":287},"Hooks",{"type":53,"tag":112,"props":289,"children":290},{},[291,297,298],{"type":53,"tag":121,"props":292,"children":294},{"className":293},[],[295],{"type":59,"value":296},"HookWidget",{"type":59,"value":128},{"type":53,"tag":121,"props":299,"children":301},{"className":300},[],[302],{"type":59,"value":303},"useState\u002FuseEffect",{"type":53,"tag":90,"props":305,"children":306},{},[307,312],{"type":53,"tag":112,"props":308,"children":309},{},[310],{"type":59,"value":311},"Forms",{"type":53,"tag":112,"props":313,"children":314},{},[315,321,322,328],{"type":53,"tag":121,"props":316,"children":318},{"className":317},[],[319],{"type":59,"value":320},"Form",{"type":59,"value":128},{"type":53,"tag":121,"props":323,"children":325},{"className":324},[],[326],{"type":59,"value":327},"TextFormField",{"type":59,"value":329}," + validation",{"type":53,"tag":75,"props":331,"children":333},{"id":332},"performance-patterns",[334],{"type":59,"value":335},"Performance Patterns",{"type":53,"tag":82,"props":337,"children":338},{},[339,354],{"type":53,"tag":86,"props":340,"children":341},{},[342],{"type":53,"tag":90,"props":343,"children":344},{},[345,349],{"type":53,"tag":94,"props":346,"children":347},{},[348],{"type":59,"value":98},{"type":53,"tag":94,"props":350,"children":351},{},[352],{"type":59,"value":353},"Solution",{"type":53,"tag":105,"props":355,"children":356},{},[357,376,393,410,426,445],{"type":53,"tag":90,"props":358,"children":359},{},[360,365],{"type":53,"tag":112,"props":361,"children":362},{},[363],{"type":59,"value":364},"Prevent rebuilds",{"type":53,"tag":112,"props":366,"children":367},{},[368,374],{"type":53,"tag":121,"props":369,"children":371},{"className":370},[],[372],{"type":59,"value":373},"const",{"type":59,"value":375}," constructors",{"type":53,"tag":90,"props":377,"children":378},{},[379,384],{"type":53,"tag":112,"props":380,"children":381},{},[382],{"type":59,"value":383},"Selective updates",{"type":53,"tag":112,"props":385,"children":386},{},[387],{"type":53,"tag":121,"props":388,"children":390},{"className":389},[],[391],{"type":59,"value":392},"ref.watch(provider.select(...))",{"type":53,"tag":90,"props":394,"children":395},{},[396,401],{"type":53,"tag":112,"props":397,"children":398},{},[399],{"type":59,"value":400},"Isolate repaints",{"type":53,"tag":112,"props":402,"children":403},{},[404],{"type":53,"tag":121,"props":405,"children":407},{"className":406},[],[408],{"type":59,"value":409},"RepaintBoundary",{"type":53,"tag":90,"props":411,"children":412},{},[413,418],{"type":53,"tag":112,"props":414,"children":415},{},[416],{"type":59,"value":417},"Lazy lists",{"type":53,"tag":112,"props":419,"children":420},{},[421],{"type":53,"tag":121,"props":422,"children":424},{"className":423},[],[425],{"type":59,"value":260},{"type":53,"tag":90,"props":427,"children":428},{},[429,434],{"type":53,"tag":112,"props":430,"children":431},{},[432],{"type":59,"value":433},"Heavy computation",{"type":53,"tag":112,"props":435,"children":436},{},[437,443],{"type":53,"tag":121,"props":438,"children":440},{"className":439},[],[441],{"type":59,"value":442},"compute()",{"type":59,"value":444}," isolate",{"type":53,"tag":90,"props":446,"children":447},{},[448,453],{"type":53,"tag":112,"props":449,"children":450},{},[451],{"type":59,"value":452},"Image caching",{"type":53,"tag":112,"props":454,"children":455},{},[456],{"type":53,"tag":121,"props":457,"children":459},{"className":458},[],[460],{"type":59,"value":461},"cached_network_image",{"type":53,"tag":68,"props":463,"children":465},{"id":464},"core-principles",[466],{"type":59,"value":467},"Core Principles",{"type":53,"tag":75,"props":469,"children":471},{"id":470},"widget-optimization",[472],{"type":59,"value":473},"Widget Optimization",{"type":53,"tag":475,"props":476,"children":477},"ul",{},[478,491,496,508],{"type":53,"tag":479,"props":480,"children":481},"li",{},[482,484,489],{"type":59,"value":483},"Use ",{"type":53,"tag":121,"props":485,"children":487},{"className":486},[],[488],{"type":59,"value":373},{"type":59,"value":490}," constructors wherever possible",{"type":53,"tag":479,"props":492,"children":493},{},[494],{"type":59,"value":495},"Extract static widgets to separate const classes",{"type":53,"tag":479,"props":497,"children":498},{},[499,500,506],{"type":59,"value":483},{"type":53,"tag":121,"props":501,"children":503},{"className":502},[],[504],{"type":59,"value":505},"Key",{"type":59,"value":507}," for list items (ValueKey, ObjectKey)",{"type":53,"tag":479,"props":509,"children":510},{},[511,513,518,520,526],{"type":59,"value":512},"Prefer ",{"type":53,"tag":121,"props":514,"children":516},{"className":515},[],[517],{"type":59,"value":134},{"type":59,"value":519}," over ",{"type":53,"tag":121,"props":521,"children":523},{"className":522},[],[524],{"type":59,"value":525},"StatefulWidget",{"type":59,"value":527}," for state",{"type":53,"tag":75,"props":529,"children":530},{"id":28},[531],{"type":59,"value":27},{"type":53,"tag":475,"props":533,"children":534},{},[535,540,545,550],{"type":53,"tag":479,"props":536,"children":537},{},[538],{"type":59,"value":539},"Riverpod for dependency injection and simple state",{"type":53,"tag":479,"props":541,"children":542},{},[543],{"type":59,"value":544},"Bloc\u002FCubit for event-driven workflows and complex logic",{"type":53,"tag":479,"props":546,"children":547},{},[548],{"type":59,"value":549},"Never mutate state directly (create new instances)",{"type":53,"tag":479,"props":551,"children":552},{},[553,554,560],{"type":59,"value":483},{"type":53,"tag":121,"props":555,"children":557},{"className":556},[],[558],{"type":59,"value":559},"select()",{"type":59,"value":561}," to minimize rebuilds",{"type":53,"tag":75,"props":563,"children":565},{"id":564},"layout",[566],{"type":59,"value":567},"Layout",{"type":53,"tag":475,"props":569,"children":570},{},[571,576,581,586],{"type":53,"tag":479,"props":572,"children":573},{},[574],{"type":59,"value":575},"8pt spacing increments (8, 16, 24, 32, 48)",{"type":53,"tag":479,"props":577,"children":578},{},[579],{"type":59,"value":580},"Responsive breakpoints: mobile (\u003C650), tablet (650-1100), desktop (>1100)",{"type":53,"tag":479,"props":582,"children":583},{},[584],{"type":59,"value":585},"Support all screen sizes with flexible layouts",{"type":53,"tag":479,"props":587,"children":588},{},[589],{"type":59,"value":590},"Follow Material 3 \u002F Cupertino design guidelines",{"type":53,"tag":75,"props":592,"children":593},{"id":15},[594],{"type":59,"value":14},{"type":53,"tag":475,"props":596,"children":597},{},[598,603,608,619],{"type":53,"tag":479,"props":599,"children":600},{},[601],{"type":59,"value":602},"Profile with DevTools before optimizing",{"type":53,"tag":479,"props":604,"children":605},{},[606],{"type":59,"value":607},"Target \u003C16ms frame time for 60fps",{"type":53,"tag":479,"props":609,"children":610},{},[611,612,617],{"type":59,"value":483},{"type":53,"tag":121,"props":613,"children":615},{"className":614},[],[616],{"type":59,"value":409},{"type":59,"value":618}," for complex animations",{"type":53,"tag":479,"props":620,"children":621},{},[622,624],{"type":59,"value":623},"Offload heavy work with ",{"type":53,"tag":121,"props":625,"children":627},{"className":626},[],[628],{"type":59,"value":442},{"type":53,"tag":68,"props":630,"children":632},{"id":631},"checklist",[633],{"type":59,"value":634},"Checklist",{"type":53,"tag":75,"props":636,"children":638},{"id":637},"widget-best-practices",[639],{"type":59,"value":640},"Widget Best Practices",{"type":53,"tag":475,"props":642,"children":645},{"className":643},[644],"contains-task-list",[646,666,682,697,714],{"type":53,"tag":479,"props":647,"children":650},{"className":648},[649],"task-list-item",[651,657,659,664],{"type":53,"tag":652,"props":653,"children":656},"input",{"disabled":654,"type":655},true,"checkbox",[],{"type":59,"value":658}," ",{"type":53,"tag":121,"props":660,"children":662},{"className":661},[],[663],{"type":59,"value":373},{"type":59,"value":665}," constructors on all static widgets",{"type":53,"tag":479,"props":667,"children":669},{"className":668},[649],[670,673,675,680],{"type":53,"tag":652,"props":671,"children":672},{"disabled":654,"type":655},[],{"type":59,"value":674}," Proper ",{"type":53,"tag":121,"props":676,"children":678},{"className":677},[],[679],{"type":59,"value":505},{"type":59,"value":681}," on list items",{"type":53,"tag":479,"props":683,"children":685},{"className":684},[649],[686,689,690,695],{"type":53,"tag":652,"props":687,"children":688},{"disabled":654,"type":655},[],{"type":59,"value":658},{"type":53,"tag":121,"props":691,"children":693},{"className":692},[],[694],{"type":59,"value":134},{"type":59,"value":696}," for state-dependent widgets",{"type":53,"tag":479,"props":698,"children":700},{"className":699},[649],[701,704,706,712],{"type":53,"tag":652,"props":702,"children":703},{"disabled":654,"type":655},[],{"type":59,"value":705}," No widget building inside ",{"type":53,"tag":121,"props":707,"children":709},{"className":708},[],[710],{"type":59,"value":711},"build()",{"type":59,"value":713}," method",{"type":53,"tag":479,"props":715,"children":717},{"className":716},[649],[718,721],{"type":53,"tag":652,"props":719,"children":720},{"disabled":654,"type":655},[],{"type":59,"value":722}," Extract reusable widgets to separate files",{"type":53,"tag":75,"props":724,"children":726},{"id":725},"state-management-1",[727],{"type":59,"value":27},{"type":53,"tag":475,"props":729,"children":731},{"className":730},[644],[732,741,756,765,774],{"type":53,"tag":479,"props":733,"children":735},{"className":734},[649],[736,739],{"type":53,"tag":652,"props":737,"children":738},{"disabled":654,"type":655},[],{"type":59,"value":740}," Immutable state objects",{"type":53,"tag":479,"props":742,"children":744},{"className":743},[649],[745,748,749,754],{"type":53,"tag":652,"props":746,"children":747},{"disabled":654,"type":655},[],{"type":59,"value":658},{"type":53,"tag":121,"props":750,"children":752},{"className":751},[],[753],{"type":59,"value":559},{"type":59,"value":755}," for granular rebuilds",{"type":53,"tag":479,"props":757,"children":759},{"className":758},[649],[760,763],{"type":53,"tag":652,"props":761,"children":762},{"disabled":654,"type":655},[],{"type":59,"value":764}," Proper provider scoping",{"type":53,"tag":479,"props":766,"children":768},{"className":767},[649],[769,772],{"type":53,"tag":652,"props":770,"children":771},{"disabled":654,"type":655},[],{"type":59,"value":773}," Dispose controllers and subscriptions",{"type":53,"tag":479,"props":775,"children":777},{"className":776},[649],[778,781],{"type":53,"tag":652,"props":779,"children":780},{"disabled":654,"type":655},[],{"type":59,"value":782}," Handle loading\u002Ferror states",{"type":53,"tag":75,"props":784,"children":786},{"id":785},"navigation",[787],{"type":59,"value":208},{"type":53,"tag":475,"props":789,"children":791},{"className":790},[644],[792,801,810,819],{"type":53,"tag":479,"props":793,"children":795},{"className":794},[649],[796,799],{"type":53,"tag":652,"props":797,"children":798},{"disabled":654,"type":655},[],{"type":59,"value":800}," GoRouter with typed routes",{"type":53,"tag":479,"props":802,"children":804},{"className":803},[649],[805,808],{"type":53,"tag":652,"props":806,"children":807},{"disabled":654,"type":655},[],{"type":59,"value":809}," Auth guards via redirect",{"type":53,"tag":479,"props":811,"children":813},{"className":812},[649],[814,817],{"type":53,"tag":652,"props":815,"children":816},{"disabled":654,"type":655},[],{"type":59,"value":818}," Deep linking support",{"type":53,"tag":479,"props":820,"children":822},{"className":821},[649],[823,826],{"type":53,"tag":652,"props":824,"children":825},{"disabled":654,"type":655},[],{"type":59,"value":827}," State preservation across routes",{"type":53,"tag":75,"props":829,"children":831},{"id":830},"performance-1",[832],{"type":59,"value":14},{"type":53,"tag":475,"props":834,"children":836},{"className":835},[644],[837,854,863,872,881],{"type":53,"tag":479,"props":838,"children":840},{"className":839},[649],[841,844,846,852],{"type":53,"tag":652,"props":842,"children":843},{"disabled":654,"type":655},[],{"type":59,"value":845}," Profile mode testing (",{"type":53,"tag":121,"props":847,"children":849},{"className":848},[],[850],{"type":59,"value":851},"flutter run --profile",{"type":59,"value":853},")",{"type":53,"tag":479,"props":855,"children":857},{"className":856},[649],[858,861],{"type":53,"tag":652,"props":859,"children":860},{"disabled":654,"type":655},[],{"type":59,"value":862}," \u003C16ms frame rendering time",{"type":53,"tag":479,"props":864,"children":866},{"className":865},[649],[867,870],{"type":53,"tag":652,"props":868,"children":869},{"disabled":654,"type":655},[],{"type":59,"value":871}," No unnecessary rebuilds (DevTools check)",{"type":53,"tag":479,"props":873,"children":875},{"className":874},[649],[876,879],{"type":53,"tag":652,"props":877,"children":878},{"disabled":654,"type":655},[],{"type":59,"value":880}," Images cached and resized",{"type":53,"tag":479,"props":882,"children":884},{"className":883},[649],[885,888],{"type":53,"tag":652,"props":886,"children":887},{"disabled":654,"type":655},[],{"type":59,"value":889}," Heavy computation in isolates",{"type":53,"tag":75,"props":891,"children":893},{"id":892},"testing",[894],{"type":59,"value":895},"Testing",{"type":53,"tag":475,"props":897,"children":899},{"className":898},[644],[900,909,918,927],{"type":53,"tag":479,"props":901,"children":903},{"className":902},[649],[904,907],{"type":53,"tag":652,"props":905,"children":906},{"disabled":654,"type":655},[],{"type":59,"value":908}," Widget tests for UI components",{"type":53,"tag":479,"props":910,"children":912},{"className":911},[649],[913,916],{"type":53,"tag":652,"props":914,"children":915},{"disabled":654,"type":655},[],{"type":59,"value":917}," Unit tests for business logic",{"type":53,"tag":479,"props":919,"children":921},{"className":920},[649],[922,925],{"type":53,"tag":652,"props":923,"children":924},{"disabled":654,"type":655},[],{"type":59,"value":926}," Integration tests for user flows",{"type":53,"tag":479,"props":928,"children":930},{"className":929},[649],[931,934,936],{"type":53,"tag":652,"props":932,"children":933},{"disabled":654,"type":655},[],{"type":59,"value":935}," Bloc tests with ",{"type":53,"tag":121,"props":937,"children":939},{"className":938},[],[940],{"type":59,"value":941},"blocTest()",{"type":53,"tag":68,"props":943,"children":945},{"id":944},"references",[946],{"type":59,"value":947},"References",{"type":53,"tag":82,"props":949,"children":950},{},[951,967],{"type":53,"tag":86,"props":952,"children":953},{},[954],{"type":53,"tag":90,"props":955,"children":956},{},[957,962],{"type":53,"tag":94,"props":958,"children":959},{},[960],{"type":59,"value":961},"Topic",{"type":53,"tag":94,"props":963,"children":964},{},[965],{"type":59,"value":966},"Reference",{"type":53,"tag":105,"props":968,"children":969},{},[970,987,1004,1021,1038,1055,1072,1089,1106,1123,1140,1156],{"type":53,"tag":90,"props":971,"children":972},{},[973,978],{"type":53,"tag":112,"props":974,"children":975},{},[976],{"type":59,"value":977},"Widget patterns, const optimization, responsive layout",{"type":53,"tag":112,"props":979,"children":980},{},[981],{"type":53,"tag":982,"props":983,"children":985},"a",{"href":984},"references\u002Fwidget-patterns.md",[986],{"type":59,"value":80},{"type":53,"tag":90,"props":988,"children":989},{},[990,995],{"type":53,"tag":112,"props":991,"children":992},{},[993],{"type":59,"value":994},"Riverpod providers, notifiers, async state",{"type":53,"tag":112,"props":996,"children":997},{},[998],{"type":53,"tag":982,"props":999,"children":1001},{"href":1000},"references\u002Friverpod-state.md",[1002],{"type":59,"value":1003},"Riverpod State Management",{"type":53,"tag":90,"props":1005,"children":1006},{},[1007,1012],{"type":53,"tag":112,"props":1008,"children":1009},{},[1010],{"type":59,"value":1011},"Bloc, Cubit, event-driven state",{"type":53,"tag":112,"props":1013,"children":1014},{},[1015],{"type":53,"tag":982,"props":1016,"children":1018},{"href":1017},"references\u002Fbloc-state.md",[1019],{"type":59,"value":1020},"Bloc State Management",{"type":53,"tag":90,"props":1022,"children":1023},{},[1024,1029],{"type":53,"tag":112,"props":1025,"children":1026},{},[1027],{"type":59,"value":1028},"GoRouter setup, routes, deep linking",{"type":53,"tag":112,"props":1030,"children":1031},{},[1032],{"type":53,"tag":982,"props":1033,"children":1035},{"href":1034},"references\u002Fgorouter-navigation.md",[1036],{"type":59,"value":1037},"GoRouter Navigation",{"type":53,"tag":90,"props":1039,"children":1040},{},[1041,1046],{"type":53,"tag":112,"props":1042,"children":1043},{},[1044],{"type":59,"value":1045},"Feature-based structure, dependencies",{"type":53,"tag":112,"props":1047,"children":1048},{},[1049],{"type":53,"tag":982,"props":1050,"children":1052},{"href":1051},"references\u002Fproject-structure.md",[1053],{"type":59,"value":1054},"Project Structure",{"type":53,"tag":90,"props":1056,"children":1057},{},[1058,1063],{"type":53,"tag":112,"props":1059,"children":1060},{},[1061],{"type":59,"value":1062},"Profiling, const optimization, DevTools",{"type":53,"tag":112,"props":1064,"children":1065},{},[1066],{"type":53,"tag":982,"props":1067,"children":1069},{"href":1068},"references\u002Fperformance.md",[1070],{"type":59,"value":1071},"Performance Optimization",{"type":53,"tag":90,"props":1073,"children":1074},{},[1075,1080],{"type":53,"tag":112,"props":1076,"children":1077},{},[1078],{"type":59,"value":1079},"Widget tests, integration tests, mocking",{"type":53,"tag":112,"props":1081,"children":1082},{},[1083],{"type":53,"tag":982,"props":1084,"children":1086},{"href":1085},"references\u002Ftesting.md",[1087],{"type":59,"value":1088},"Testing Strategies",{"type":53,"tag":90,"props":1090,"children":1091},{},[1092,1097],{"type":53,"tag":112,"props":1093,"children":1094},{},[1095],{"type":59,"value":1096},"iOS\u002FAndroid\u002FWeb specific implementations",{"type":53,"tag":112,"props":1098,"children":1099},{},[1100],{"type":53,"tag":982,"props":1101,"children":1103},{"href":1102},"references\u002Fplatform-specific.md",[1104],{"type":59,"value":1105},"Platform Integration",{"type":53,"tag":90,"props":1107,"children":1108},{},[1109,1114],{"type":53,"tag":112,"props":1110,"children":1111},{},[1112],{"type":59,"value":1113},"Implicit\u002Fexplicit animations, Hero, transitions",{"type":53,"tag":112,"props":1115,"children":1116},{},[1117],{"type":53,"tag":982,"props":1118,"children":1120},{"href":1119},"references\u002Fanimations.md",[1121],{"type":59,"value":1122},"Animations",{"type":53,"tag":90,"props":1124,"children":1125},{},[1126,1131],{"type":53,"tag":112,"props":1127,"children":1128},{},[1129],{"type":59,"value":1130},"Dio, interceptors, error handling, caching",{"type":53,"tag":112,"props":1132,"children":1133},{},[1134],{"type":53,"tag":982,"props":1135,"children":1137},{"href":1136},"references\u002Fnetworking.md",[1138],{"type":59,"value":1139},"Networking",{"type":53,"tag":90,"props":1141,"children":1142},{},[1143,1148],{"type":53,"tag":112,"props":1144,"children":1145},{},[1146],{"type":59,"value":1147},"Form validation, FormField, input formatters",{"type":53,"tag":112,"props":1149,"children":1150},{},[1151],{"type":53,"tag":982,"props":1152,"children":1154},{"href":1153},"references\u002Fforms.md",[1155],{"type":59,"value":311},{"type":53,"tag":90,"props":1157,"children":1158},{},[1159,1164],{"type":53,"tag":112,"props":1160,"children":1161},{},[1162],{"type":59,"value":1163},"i18n, flutter_localizations, intl",{"type":53,"tag":112,"props":1165,"children":1166},{},[1167],{"type":53,"tag":982,"props":1168,"children":1170},{"href":1169},"references\u002Flocalization.md",[1171],{"type":59,"value":1172},"Localization",{"type":53,"tag":1174,"props":1175,"children":1176},"hr",{},[],{"type":53,"tag":62,"props":1178,"children":1179},{},[1180],{"type":59,"value":1181},"Flutter, Dart, Material Design, and Cupertino are trademarks of Google LLC and Apple Inc. respectively. Riverpod, Bloc, and GoRouter are open-source packages by their respective maintainers.",{"items":1183,"total":1298},[1184,1204,1220,1239,1254,1262,1280],{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1188,"tags":1189,"stars":29,"repoUrl":30,"updatedAt":1203},"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},[1190,1193,1196,1199,1200],{"name":1191,"slug":1192,"type":16},"Accessibility","accessibility",{"name":1194,"slug":1195,"type":16},"Android","android",{"name":1197,"slug":1198,"type":16},"Kotlin","kotlin",{"name":21,"slug":22,"type":16},{"name":1201,"slug":1202,"type":16},"UI Components","ui-components","2026-07-13T06:16:54.247834",{"slug":1205,"name":1205,"fn":1206,"description":1207,"org":1208,"tags":1209,"stars":29,"repoUrl":30,"updatedAt":1219},"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},[1210,1213,1216],{"name":1211,"slug":1212,"type":16},"Agents","agents",{"name":1214,"slug":1215,"type":16},"Audio","audio",{"name":1217,"slug":1218,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":1221,"name":1221,"fn":1222,"description":1223,"org":1224,"tags":1225,"stars":29,"repoUrl":30,"updatedAt":1238},"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},[1226,1229,1232,1235],{"name":1227,"slug":1228,"type":16},"Design","design",{"name":1230,"slug":1231,"type":16},"Presentations","presentations",{"name":1233,"slug":1234,"type":16},"Themes","themes",{"name":1236,"slug":1237,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1243,"tags":1244,"stars":29,"repoUrl":30,"updatedAt":1253},"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},[1245,1246,1249,1252],{"name":1227,"slug":1228,"type":16},{"name":1247,"slug":1248,"type":16},"Design System","design-system",{"name":1250,"slug":1251,"type":16},"PowerPoint","powerpoint",{"name":1230,"slug":1231,"type":16},"2026-07-13T06:17:10.398389",{"slug":4,"name":4,"fn":5,"description":6,"org":1255,"tags":1256,"stars":29,"repoUrl":30,"updatedAt":31},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1257,1258,1259,1260,1261],{"name":24,"slug":25,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":27,"slug":28,"type":16},{"slug":1263,"name":1263,"fn":1264,"description":1265,"org":1266,"tags":1267,"stars":29,"repoUrl":30,"updatedAt":1279},"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},[1268,1271,1272,1273,1276],{"name":1269,"slug":1270,"type":16},"Animation","animation",{"name":1217,"slug":1218,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1274,"slug":1275,"type":16},"Frontend","frontend",{"name":1277,"slug":1278,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":1281,"name":1281,"fn":1282,"description":1283,"org":1284,"tags":1285,"stars":29,"repoUrl":30,"updatedAt":1297},"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},[1286,1289,1290,1293,1296],{"name":1287,"slug":1288,"type":16},"Backend","backend",{"name":1274,"slug":1275,"type":16},{"name":1291,"slug":1292,"type":16},"Full-stack","full-stack",{"name":1294,"slug":1295,"type":16},"REST API","rest-api",{"name":1277,"slug":1278,"type":16},"2026-07-13T06:16:43.219005",22,{"items":1300,"total":1423},[1301,1309,1315,1322,1329,1337,1345,1353,1368,1384,1403,1413],{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1302,"tags":1303,"stars":29,"repoUrl":30,"updatedAt":1203},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1304,1305,1306,1307,1308],{"name":1191,"slug":1192,"type":16},{"name":1194,"slug":1195,"type":16},{"name":1197,"slug":1198,"type":16},{"name":21,"slug":22,"type":16},{"name":1201,"slug":1202,"type":16},{"slug":1205,"name":1205,"fn":1206,"description":1207,"org":1310,"tags":1311,"stars":29,"repoUrl":30,"updatedAt":1219},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1312,1313,1314],{"name":1211,"slug":1212,"type":16},{"name":1214,"slug":1215,"type":16},{"name":1217,"slug":1218,"type":16},{"slug":1221,"name":1221,"fn":1222,"description":1223,"org":1316,"tags":1317,"stars":29,"repoUrl":30,"updatedAt":1238},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1318,1319,1320,1321],{"name":1227,"slug":1228,"type":16},{"name":1230,"slug":1231,"type":16},{"name":1233,"slug":1234,"type":16},{"name":1236,"slug":1237,"type":16},{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1323,"tags":1324,"stars":29,"repoUrl":30,"updatedAt":1253},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1325,1326,1327,1328],{"name":1227,"slug":1228,"type":16},{"name":1247,"slug":1248,"type":16},{"name":1250,"slug":1251,"type":16},{"name":1230,"slug":1231,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":1330,"tags":1331,"stars":29,"repoUrl":30,"updatedAt":31},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1332,1333,1334,1335,1336],{"name":24,"slug":25,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"name":27,"slug":28,"type":16},{"slug":1263,"name":1263,"fn":1264,"description":1265,"org":1338,"tags":1339,"stars":29,"repoUrl":30,"updatedAt":1279},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1340,1341,1342,1343,1344],{"name":1269,"slug":1270,"type":16},{"name":1217,"slug":1218,"type":16},{"name":1227,"slug":1228,"type":16},{"name":1274,"slug":1275,"type":16},{"name":1277,"slug":1278,"type":16},{"slug":1281,"name":1281,"fn":1282,"description":1283,"org":1346,"tags":1347,"stars":29,"repoUrl":30,"updatedAt":1297},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1348,1349,1350,1351,1352],{"name":1287,"slug":1288,"type":16},{"name":1274,"slug":1275,"type":16},{"name":1291,"slug":1292,"type":16},{"name":1294,"slug":1295,"type":16},{"name":1277,"slug":1278,"type":16},{"slug":1354,"name":1354,"fn":1355,"description":1356,"org":1357,"tags":1358,"stars":29,"repoUrl":30,"updatedAt":1367},"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},[1359,1360,1361,1364],{"name":1269,"slug":1270,"type":16},{"name":1217,"slug":1218,"type":16},{"name":1362,"slug":1363,"type":16},"Images","images",{"name":1365,"slug":1366,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1369,"name":1369,"fn":1370,"description":1371,"org":1372,"tags":1373,"stars":29,"repoUrl":30,"updatedAt":1383},"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},[1374,1375,1378,1379,1382],{"name":1191,"slug":1192,"type":16},{"name":1376,"slug":1377,"type":16},"iOS","ios",{"name":21,"slug":22,"type":16},{"name":1380,"slug":1381,"type":16},"SwiftUI","swiftui",{"name":1201,"slug":1202,"type":16},"2026-07-13T06:16:55.686092",{"slug":1385,"name":1385,"fn":1386,"description":1387,"org":1388,"tags":1389,"stars":29,"repoUrl":30,"updatedAt":1402},"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},[1390,1393,1396,1399],{"name":1391,"slug":1392,"type":16},"Documents","documents",{"name":1394,"slug":1395,"type":16},"DOCX","docx",{"name":1397,"slug":1398,"type":16},"Office","office",{"name":1400,"slug":1401,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":29,"repoUrl":30,"updatedAt":1412},"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},[1409,1410,1411],{"name":1214,"slug":1215,"type":16},{"name":1217,"slug":1218,"type":16},{"name":1365,"slug":1366,"type":16},"2026-07-13T06:16:50.381758",{"slug":1414,"name":1414,"fn":1415,"description":1416,"org":1417,"tags":1418,"stars":29,"repoUrl":30,"updatedAt":1422},"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},[1419,1420,1421],{"name":1214,"slug":1215,"type":16},{"name":1217,"slug":1218,"type":16},{"name":1365,"slug":1366,"type":16},"2026-07-13T06:16:57.002997",37]