[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-mcp-server-patterns":3,"mdc--3f222t-key":31,"related-org-minimax-mcp-server-patterns":319,"related-repo-minimax-mcp-server-patterns":522},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"mcp-server-patterns","design and debug MCP servers","Reference patterns for designing, evaluating, integrating, and debugging MCP servers. Use this Skill whenever the task involves deciding whether to add an MCP server, reviewing a server design, integrating one into a workflow, or diagnosing why one fails.",{"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],{"name":14,"slug":15,"type":16},"Architecture","architecture","tag",{"name":18,"slug":19,"type":16},"MCP","mcp",5,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins","2026-08-18T03:49:42.711595",null,2,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Community registry and contribution toolkit for MiniMax Code plugins.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins\u002Ftree\u002FHEAD\u002Fplugins\u002FHylouis233\u002Fmcp-server-patterns\u002Fskills\u002Fmcp-server-patterns","---\nname: mcp-server-patterns\ndescription: Reference patterns for designing, evaluating, integrating, and debugging MCP servers. Use this Skill whenever the task involves deciding whether to add an MCP server, reviewing a server design, integrating one into a workflow, or diagnosing why one fails.\n---\n\n# MCP Server Patterns\n\nUse this skill when evaluating, designing, or integrating MCP servers.\n\n## Scope\n\nThis skill is for guidance and design review only. Do not change MCP settings, install or invoke\nservers, rewrite configuration, authenticate to services, or send test requests. If the user asks\nfor implementation, provide a proposed plan or copyable steps and ask them to perform or authorize\nthe execution outside this Skill.\n\n## Evaluate an MCP server with these questions\n\n1. What problem does it solve better than direct tools or local agents?\n2. Is it read-only, mutating, or both?\n3. Who publishes the package or operates the endpoint, how is its identity verified, and is the\n   selected version or endpoint authentic and trustworthy?\n4. What authentication model does it require, and are the requested authorization scopes the\n   least privilege needed for the advertised tools?\n5. What data leaves the local machine; which endpoint, subprocess, or downstream provider\n   receives it; and how is it logged, stored, retained, shared, or used for training?\n6. What are the failure and retry semantics? For mutating tools, are retries idempotent through an\n   idempotency key or server-side deduplication, or must automatic retries be disabled?\n7. How will users discover and safely invoke it? Do destructive or high-impact production writes\n   show a preview and require informed confirmation immediately before execution?\n8. Does it overlap with MCP servers or native tools already present in the environment?\n\n## Design checklist\n\n- Clear tool boundaries.\n- Stable input\u002Foutput schemas.\n- Good error messages.\n- Minimal required secrets and least-privilege authorization scopes.\n- Predictable latency.\n- Explicit read vs write behavior.\n- Retry semantics tied to that behavior: idempotency keys or server-side deduplication for safe\n  retries, and automatic retries disabled for non-idempotent writes.\n- Safe defaults.\n- Preview and informed user confirmation immediately before destructive or high-impact production\n  writes such as deletion, deployment, publication, payment, or permission changes.\n- Clear ownership of side effects.\n- Explicit egress destination and downstream logging, storage, retention, sharing, and training use.\n\n## Integration checklist\n\n- Avoid duplicating existing MCP coverage.\n- Prefer the lightest tool that solves the task.\n- Verify publisher\u002Foperator provenance, package or endpoint authenticity, version integrity, and\n  ownership before recommending adoption.\n- Document auth and environment requirements, including least-privilege scopes.\n- Document every egress destination and the downstream logging, storage, retention, sharing, and\n  training behavior before recommending adoption.\n- Confirm mutating tools expose safe retry semantics and immediate confirmation for consequential\n  production writes.\n- Verify whether the server should be global or project-local.\n- Decide whether it belongs in default workflows or specialist workflows only.\n- Define when native agent tools are still preferable.\n\n## Debugging checklist\n\n- Ask the user to confirm whether the server is enabled; do not inspect or modify live settings.\n- Ask the user to confirm that each required credential variable name is available to the actual\n  server process environment (not merely the interactive shell); never request or expose values.\n- Design the smallest possible reproduction request and identify its data and side effects, but do\n  not execute it. Prefer a read-only operation against a sandbox or disposable test resource. If\n  mutation is unavoidable, clearly warn about the exact side effect and require explicit user\n  confirmation before asking them to run it and share a redacted result.\n- Use the redacted result to distinguish application failures from transport failures such as\n  process startup, DNS\u002FTLS, connection, or protocol negotiation.\n- Check whether a native tool already solves the same problem better.\n- Classify the failure as transport, server\u002Fapplication, authentication\u002Fauthorization, or client\n  routing; retain the relevant transport subcategory when applicable.\n\n## Good usage pattern\n\n- Use MCP when it gives unique external access or structured remote capabilities.\n- Do not add MCP just to wrap a local command that native tools already cover well.\n- Prefer specialist or project-local MCP servers only when the default toolchain cannot\n  provide the same value cleanly.\n\n## Notes\n\n- This is a knowledge skill only.\n- It must not change hooks, settings, plugin state, or MCP configuration files.\n- It must not invoke MCP servers, make network requests, authenticate, or handle credential values.\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,44,50,57,62,68,113,119,178,184,232,238,271,277,295,301],{"type":37,"tag":38,"props":39,"children":40},"element","h1",{"id":4},[41],{"type":42,"value":43},"text","MCP Server Patterns",{"type":37,"tag":45,"props":46,"children":47},"p",{},[48],{"type":42,"value":49},"Use this skill when evaluating, designing, or integrating MCP servers.",{"type":37,"tag":51,"props":52,"children":54},"h2",{"id":53},"scope",[55],{"type":42,"value":56},"Scope",{"type":37,"tag":45,"props":58,"children":59},{},[60],{"type":42,"value":61},"This skill is for guidance and design review only. Do not change MCP settings, install or invoke\nservers, rewrite configuration, authenticate to services, or send test requests. If the user asks\nfor implementation, provide a proposed plan or copyable steps and ask them to perform or authorize\nthe execution outside this Skill.",{"type":37,"tag":51,"props":63,"children":65},{"id":64},"evaluate-an-mcp-server-with-these-questions",[66],{"type":42,"value":67},"Evaluate an MCP server with these questions",{"type":37,"tag":69,"props":70,"children":71},"ol",{},[72,78,83,88,93,98,103,108],{"type":37,"tag":73,"props":74,"children":75},"li",{},[76],{"type":42,"value":77},"What problem does it solve better than direct tools or local agents?",{"type":37,"tag":73,"props":79,"children":80},{},[81],{"type":42,"value":82},"Is it read-only, mutating, or both?",{"type":37,"tag":73,"props":84,"children":85},{},[86],{"type":42,"value":87},"Who publishes the package or operates the endpoint, how is its identity verified, and is the\nselected version or endpoint authentic and trustworthy?",{"type":37,"tag":73,"props":89,"children":90},{},[91],{"type":42,"value":92},"What authentication model does it require, and are the requested authorization scopes the\nleast privilege needed for the advertised tools?",{"type":37,"tag":73,"props":94,"children":95},{},[96],{"type":42,"value":97},"What data leaves the local machine; which endpoint, subprocess, or downstream provider\nreceives it; and how is it logged, stored, retained, shared, or used for training?",{"type":37,"tag":73,"props":99,"children":100},{},[101],{"type":42,"value":102},"What are the failure and retry semantics? For mutating tools, are retries idempotent through an\nidempotency key or server-side deduplication, or must automatic retries be disabled?",{"type":37,"tag":73,"props":104,"children":105},{},[106],{"type":42,"value":107},"How will users discover and safely invoke it? Do destructive or high-impact production writes\nshow a preview and require informed confirmation immediately before execution?",{"type":37,"tag":73,"props":109,"children":110},{},[111],{"type":42,"value":112},"Does it overlap with MCP servers or native tools already present in the environment?",{"type":37,"tag":51,"props":114,"children":116},{"id":115},"design-checklist",[117],{"type":42,"value":118},"Design checklist",{"type":37,"tag":120,"props":121,"children":122},"ul",{},[123,128,133,138,143,148,153,158,163,168,173],{"type":37,"tag":73,"props":124,"children":125},{},[126],{"type":42,"value":127},"Clear tool boundaries.",{"type":37,"tag":73,"props":129,"children":130},{},[131],{"type":42,"value":132},"Stable input\u002Foutput schemas.",{"type":37,"tag":73,"props":134,"children":135},{},[136],{"type":42,"value":137},"Good error messages.",{"type":37,"tag":73,"props":139,"children":140},{},[141],{"type":42,"value":142},"Minimal required secrets and least-privilege authorization scopes.",{"type":37,"tag":73,"props":144,"children":145},{},[146],{"type":42,"value":147},"Predictable latency.",{"type":37,"tag":73,"props":149,"children":150},{},[151],{"type":42,"value":152},"Explicit read vs write behavior.",{"type":37,"tag":73,"props":154,"children":155},{},[156],{"type":42,"value":157},"Retry semantics tied to that behavior: idempotency keys or server-side deduplication for safe\nretries, and automatic retries disabled for non-idempotent writes.",{"type":37,"tag":73,"props":159,"children":160},{},[161],{"type":42,"value":162},"Safe defaults.",{"type":37,"tag":73,"props":164,"children":165},{},[166],{"type":42,"value":167},"Preview and informed user confirmation immediately before destructive or high-impact production\nwrites such as deletion, deployment, publication, payment, or permission changes.",{"type":37,"tag":73,"props":169,"children":170},{},[171],{"type":42,"value":172},"Clear ownership of side effects.",{"type":37,"tag":73,"props":174,"children":175},{},[176],{"type":42,"value":177},"Explicit egress destination and downstream logging, storage, retention, sharing, and training use.",{"type":37,"tag":51,"props":179,"children":181},{"id":180},"integration-checklist",[182],{"type":42,"value":183},"Integration checklist",{"type":37,"tag":120,"props":185,"children":186},{},[187,192,197,202,207,212,217,222,227],{"type":37,"tag":73,"props":188,"children":189},{},[190],{"type":42,"value":191},"Avoid duplicating existing MCP coverage.",{"type":37,"tag":73,"props":193,"children":194},{},[195],{"type":42,"value":196},"Prefer the lightest tool that solves the task.",{"type":37,"tag":73,"props":198,"children":199},{},[200],{"type":42,"value":201},"Verify publisher\u002Foperator provenance, package or endpoint authenticity, version integrity, and\nownership before recommending adoption.",{"type":37,"tag":73,"props":203,"children":204},{},[205],{"type":42,"value":206},"Document auth and environment requirements, including least-privilege scopes.",{"type":37,"tag":73,"props":208,"children":209},{},[210],{"type":42,"value":211},"Document every egress destination and the downstream logging, storage, retention, sharing, and\ntraining behavior before recommending adoption.",{"type":37,"tag":73,"props":213,"children":214},{},[215],{"type":42,"value":216},"Confirm mutating tools expose safe retry semantics and immediate confirmation for consequential\nproduction writes.",{"type":37,"tag":73,"props":218,"children":219},{},[220],{"type":42,"value":221},"Verify whether the server should be global or project-local.",{"type":37,"tag":73,"props":223,"children":224},{},[225],{"type":42,"value":226},"Decide whether it belongs in default workflows or specialist workflows only.",{"type":37,"tag":73,"props":228,"children":229},{},[230],{"type":42,"value":231},"Define when native agent tools are still preferable.",{"type":37,"tag":51,"props":233,"children":235},{"id":234},"debugging-checklist",[236],{"type":42,"value":237},"Debugging checklist",{"type":37,"tag":120,"props":239,"children":240},{},[241,246,251,256,261,266],{"type":37,"tag":73,"props":242,"children":243},{},[244],{"type":42,"value":245},"Ask the user to confirm whether the server is enabled; do not inspect or modify live settings.",{"type":37,"tag":73,"props":247,"children":248},{},[249],{"type":42,"value":250},"Ask the user to confirm that each required credential variable name is available to the actual\nserver process environment (not merely the interactive shell); never request or expose values.",{"type":37,"tag":73,"props":252,"children":253},{},[254],{"type":42,"value":255},"Design the smallest possible reproduction request and identify its data and side effects, but do\nnot execute it. Prefer a read-only operation against a sandbox or disposable test resource. If\nmutation is unavoidable, clearly warn about the exact side effect and require explicit user\nconfirmation before asking them to run it and share a redacted result.",{"type":37,"tag":73,"props":257,"children":258},{},[259],{"type":42,"value":260},"Use the redacted result to distinguish application failures from transport failures such as\nprocess startup, DNS\u002FTLS, connection, or protocol negotiation.",{"type":37,"tag":73,"props":262,"children":263},{},[264],{"type":42,"value":265},"Check whether a native tool already solves the same problem better.",{"type":37,"tag":73,"props":267,"children":268},{},[269],{"type":42,"value":270},"Classify the failure as transport, server\u002Fapplication, authentication\u002Fauthorization, or client\nrouting; retain the relevant transport subcategory when applicable.",{"type":37,"tag":51,"props":272,"children":274},{"id":273},"good-usage-pattern",[275],{"type":42,"value":276},"Good usage pattern",{"type":37,"tag":120,"props":278,"children":279},{},[280,285,290],{"type":37,"tag":73,"props":281,"children":282},{},[283],{"type":42,"value":284},"Use MCP when it gives unique external access or structured remote capabilities.",{"type":37,"tag":73,"props":286,"children":287},{},[288],{"type":42,"value":289},"Do not add MCP just to wrap a local command that native tools already cover well.",{"type":37,"tag":73,"props":291,"children":292},{},[293],{"type":42,"value":294},"Prefer specialist or project-local MCP servers only when the default toolchain cannot\nprovide the same value cleanly.",{"type":37,"tag":51,"props":296,"children":298},{"id":297},"notes",[299],{"type":42,"value":300},"Notes",{"type":37,"tag":120,"props":302,"children":303},{},[304,309,314],{"type":37,"tag":73,"props":305,"children":306},{},[307],{"type":42,"value":308},"This is a knowledge skill only.",{"type":37,"tag":73,"props":310,"children":311},{},[312],{"type":42,"value":313},"It must not change hooks, settings, plugin state, or MCP configuration files.",{"type":37,"tag":73,"props":315,"children":316},{},[317],{"type":42,"value":318},"It must not invoke MCP servers, make network requests, authenticate, or handle credential values.",{"items":320,"total":521},[321,345,361,380,395,415,433,451,466,482,501,511],{"slug":322,"name":322,"fn":323,"description":324,"org":325,"tags":326,"stars":342,"repoUrl":343,"updatedAt":344},"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},[327,330,333,336,339],{"name":328,"slug":329,"type":16},"Accessibility","accessibility",{"name":331,"slug":332,"type":16},"Android","android",{"name":334,"slug":335,"type":16},"Kotlin","kotlin",{"name":337,"slug":338,"type":16},"Mobile","mobile",{"name":340,"slug":341,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":346,"name":346,"fn":347,"description":348,"org":349,"tags":350,"stars":342,"repoUrl":343,"updatedAt":360},"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},[351,354,357],{"name":352,"slug":353,"type":16},"Agents","agents",{"name":355,"slug":356,"type":16},"Audio","audio",{"name":358,"slug":359,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":362,"name":362,"fn":363,"description":364,"org":365,"tags":366,"stars":342,"repoUrl":343,"updatedAt":379},"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},[367,370,373,376],{"name":368,"slug":369,"type":16},"Design","design",{"name":371,"slug":372,"type":16},"Presentations","presentations",{"name":374,"slug":375,"type":16},"Themes","themes",{"name":377,"slug":378,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":381,"name":381,"fn":382,"description":383,"org":384,"tags":385,"stars":342,"repoUrl":343,"updatedAt":394},"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},[386,387,390,393],{"name":368,"slug":369,"type":16},{"name":388,"slug":389,"type":16},"Design System","design-system",{"name":391,"slug":392,"type":16},"PowerPoint","powerpoint",{"name":371,"slug":372,"type":16},"2026-07-13T06:17:10.398389",{"slug":396,"name":396,"fn":397,"description":398,"org":399,"tags":400,"stars":342,"repoUrl":343,"updatedAt":414},"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},[401,404,407,408,411],{"name":402,"slug":403,"type":16},"Dart","dart",{"name":405,"slug":406,"type":16},"Flutter","flutter",{"name":337,"slug":338,"type":16},{"name":409,"slug":410,"type":16},"Performance","performance",{"name":412,"slug":413,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":416,"name":416,"fn":417,"description":418,"org":419,"tags":420,"stars":342,"repoUrl":343,"updatedAt":432},"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},[421,424,425,426,429],{"name":422,"slug":423,"type":16},"Animation","animation",{"name":358,"slug":359,"type":16},{"name":368,"slug":369,"type":16},{"name":427,"slug":428,"type":16},"Frontend","frontend",{"name":430,"slug":431,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":434,"name":434,"fn":435,"description":436,"org":437,"tags":438,"stars":342,"repoUrl":343,"updatedAt":450},"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},[439,442,443,446,449],{"name":440,"slug":441,"type":16},"Backend","backend",{"name":427,"slug":428,"type":16},{"name":444,"slug":445,"type":16},"Full-stack","full-stack",{"name":447,"slug":448,"type":16},"REST API","rest-api",{"name":430,"slug":431,"type":16},"2026-07-13T06:16:43.219005",{"slug":452,"name":452,"fn":453,"description":454,"org":455,"tags":456,"stars":342,"repoUrl":343,"updatedAt":465},"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},[457,458,459,462],{"name":422,"slug":423,"type":16},{"name":358,"slug":359,"type":16},{"name":460,"slug":461,"type":16},"Images","images",{"name":463,"slug":464,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":467,"name":467,"fn":468,"description":469,"org":470,"tags":471,"stars":342,"repoUrl":343,"updatedAt":481},"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},[472,473,476,477,480],{"name":328,"slug":329,"type":16},{"name":474,"slug":475,"type":16},"iOS","ios",{"name":337,"slug":338,"type":16},{"name":478,"slug":479,"type":16},"SwiftUI","swiftui",{"name":340,"slug":341,"type":16},"2026-07-13T06:16:55.686092",{"slug":483,"name":483,"fn":484,"description":485,"org":486,"tags":487,"stars":342,"repoUrl":343,"updatedAt":500},"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},[488,491,494,497],{"name":489,"slug":490,"type":16},"Documents","documents",{"name":492,"slug":493,"type":16},"DOCX","docx",{"name":495,"slug":496,"type":16},"Office","office",{"name":498,"slug":499,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":502,"name":502,"fn":503,"description":504,"org":505,"tags":506,"stars":342,"repoUrl":343,"updatedAt":510},"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},[507,508,509],{"name":355,"slug":356,"type":16},{"name":358,"slug":359,"type":16},{"name":463,"slug":464,"type":16},"2026-07-13T06:16:50.381758",{"slug":512,"name":512,"fn":513,"description":514,"org":515,"tags":516,"stars":342,"repoUrl":343,"updatedAt":520},"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},[517,518,519],{"name":355,"slug":356,"type":16},{"name":358,"slug":359,"type":16},{"name":463,"slug":464,"type":16},"2026-07-13T06:16:57.002997",56,{"items":523,"total":611},[524,538,550,566,571,587,601],{"slug":525,"name":525,"fn":526,"description":527,"org":528,"tags":529,"stars":20,"repoUrl":21,"updatedAt":537},"article2tasks","convert articles into Dida365 tasks","将技术周报（批量）或单篇文章整理为滴答清单待办事项，自动分类到已有清单并打标签，全程通过 MCP 写入，跨平台无需任何本地脚本。当用户提供周报内容、文章链接，或提及「周报」「文章汇总」「添加到滴答」时，使用此技能。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[530,533,534],{"name":531,"slug":532,"type":16},"Content Creation","content-creation",{"name":18,"slug":19,"type":16},{"name":535,"slug":536,"type":16},"Task Management","task-management","2026-08-18T03:49:38.751656",{"slug":539,"name":539,"fn":540,"description":541,"org":542,"tags":543,"stars":20,"repoUrl":21,"updatedAt":549},"dida365","manage Dida365 tasks and habits","Manage 滴答清单 (Dida365 China) tasks, lists, habits, focus records and countdowns through the official Dida365 MCP server at mcp.dida365.com. Use when the user asks to check, plan, create, update, complete or review tasks and habits on dida365.com, or asks about focus history and countdowns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[544,545,548],{"name":18,"slug":19,"type":16},{"name":546,"slug":547,"type":16},"Scheduling","scheduling",{"name":535,"slug":536,"type":16},"2026-08-18T03:49:37.126385",{"slug":551,"name":551,"fn":552,"description":553,"org":554,"tags":555,"stars":20,"repoUrl":21,"updatedAt":565},"github-explore","explore and audit GitHub repositories","Use when the user wants to search\u002Fdiscover\u002Fsummarize\u002Faudit GitHub (find repos about X, explore a topic's landscape, what's trending, repo overview, similar projects, code search, issue\u002FPR search, org audit) or run gh CLI operations. Prefer scripts\u002F for discovery; raw gh commands for management ops.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[556,559,562],{"name":557,"slug":558,"type":16},"Code Analysis","code-analysis",{"name":560,"slug":561,"type":16},"GitHub","github",{"name":563,"slug":564,"type":16},"Research","research","2026-08-18T03:49:39.302333",{"slug":4,"name":4,"fn":5,"description":6,"org":567,"tags":568,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[569,570],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"slug":572,"name":572,"fn":573,"description":574,"org":575,"tags":576,"stars":20,"repoUrl":21,"updatedAt":586},"minimax-code-trajectory","visualize MiniMax code session trajectories","Inspect or visualize privacy-aware timelines for local MiniMax Code sessions. Use when the user asks to show, draw, open, review, or diagnose a task trajectory, summarize tool or token activity, inspect compaction or failure events, or compare recent session metadata without opening raw ledger files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[577,580,583],{"name":578,"slug":579,"type":16},"Debugging","debugging",{"name":581,"slug":582,"type":16},"Observability","observability",{"name":584,"slug":585,"type":16},"Tracing","tracing","2026-08-18T03:49:38.218712",{"slug":588,"name":588,"fn":589,"description":590,"org":591,"tags":592,"stars":20,"repoUrl":21,"updatedAt":600},"search-first","enforce search-before-edit code workflows","Enforce a search-before-edit workflow for code changes. Use this Skill whenever a task involves changing code, tracing behavior, or understanding an unfamiliar area, so the agent searches and reads the relevant files before proposing or implementing edits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[593,596,597],{"name":594,"slug":595,"type":16},"Best Practices","best-practices",{"name":557,"slug":558,"type":16},{"name":598,"slug":599,"type":16},"Engineering","engineering","2026-08-18T03:49:37.673989",{"slug":602,"name":602,"fn":603,"description":604,"org":605,"tags":606,"stars":20,"repoUrl":21,"updatedAt":610},"ticktick","manage TickTick tasks and habits","Manage TickTick (international, ticktick.com) tasks, lists, habits, focus records and countdowns through the official TickTick MCP server at mcp.ticktick.com. Use when the user asks to check, plan, create, update, complete or review tasks and habits on TickTick, or asks about focus history and countdowns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[607,608,609],{"name":18,"slug":19,"type":16},{"name":546,"slug":547,"type":16},{"name":535,"slug":536,"type":16},"2026-08-18T03:49:42.187465",8]