[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-skill-creator":3,"mdc-6aqye8-key":36,"related-org-minimax-skill-creator":1158,"related-repo-minimax-skill-creator":1359},{"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":31,"sourceUrl":34,"mdContent":35},"skill-creator","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.",{"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},"Plugin Development","plugin-development","tag",{"name":18,"slug":19,"type":16},"Agents","agents",{"name":21,"slug":22,"type":16},"Technical Writing","technical-writing",2872,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent","2026-07-13T06:17:19.852455","Complete terms in LICENSE.txt",421,[29,30,8],"agent","llm",{"repoUrl":24,"stars":23,"forks":27,"topics":32,"description":33},[29,30,8],"A minimal yet professional single agent demo project that showcases the core execution pipeline and production-grade features of agents.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMini-Agent\u002Ftree\u002FHEAD\u002Fmini_agent\u002Fskills\u002Fskill-creator","---\nname: skill-creator\ndescription: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.\nlicense: Complete terms in LICENSE.txt\n---\n\n# Skill Creator\n\nThis skill provides guidance for creating effective skills.\n\n## About Skills\n\nSkills are modular, self-contained packages that extend Claude's capabilities by providing\nspecialized knowledge, workflows, and tools. Think of them as \"onboarding guides\" for specific\ndomains or tasks—they transform Claude from a general-purpose agent into a specialized agent\nequipped with procedural knowledge that no model can fully possess.\n\n### What Skills Provide\n\n1. Specialized workflows - Multi-step procedures for specific domains\n2. Tool integrations - Instructions for working with specific file formats or APIs\n3. Domain expertise - Company-specific knowledge, schemas, business logic\n4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks\n\n### Anatomy of a Skill\n\nEvery skill consists of a required SKILL.md file and optional bundled resources:\n\n```\nskill-name\u002F\n├── SKILL.md (required)\n│   ├── YAML frontmatter metadata (required)\n│   │   ├── name: (required)\n│   │   └── description: (required)\n│   └── Markdown instructions (required)\n└── Bundled Resources (optional)\n    ├── scripts\u002F          - Executable code (Python\u002FBash\u002Fetc.)\n    ├── references\u002F       - Documentation intended to be loaded into context as needed\n    └── assets\u002F           - Files used in output (templates, icons, fonts, etc.)\n```\n\n#### SKILL.md (required)\n\n**Metadata Quality:** The `name` and `description` in YAML frontmatter determine when Claude will use the skill. Be specific about what the skill does and when to use it. Use the third-person (e.g. \"This skill should be used when...\" instead of \"Use this skill when...\").\n\n#### Bundled Resources (optional)\n\n##### Scripts (`scripts\u002F`)\n\nExecutable code (Python\u002FBash\u002Fetc.) for tasks that require deterministic reliability or are repeatedly rewritten.\n\n- **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed\n- **Example**: `scripts\u002Frotate_pdf.py` for PDF rotation tasks\n- **Benefits**: Token efficient, deterministic, may be executed without loading into context\n- **Note**: Scripts may still need to be read by Claude for patching or environment-specific adjustments\n\n##### References (`references\u002F`)\n\nDocumentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.\n\n- **When to include**: For documentation that Claude should reference while working\n- **Examples**: `references\u002Ffinance.md` for financial schemas, `references\u002Fmnda.md` for company NDA template, `references\u002Fpolicies.md` for company policies, `references\u002Fapi_docs.md` for API specifications\n- **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides\n- **Benefits**: Keeps SKILL.md lean, loaded only when Claude determines it's needed\n- **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md\n- **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.\n\n##### Assets (`assets\u002F`)\n\nFiles not intended to be loaded into context, but rather used within the output Claude produces.\n\n- **When to include**: When the skill needs files that will be used in the final output\n- **Examples**: `assets\u002Flogo.png` for brand assets, `assets\u002Fslides.pptx` for PowerPoint templates, `assets\u002Ffrontend-template\u002F` for HTML\u002FReact boilerplate, `assets\u002Ffont.ttf` for typography\n- **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified\n- **Benefits**: Separates output resources from documentation, enables Claude to use files without loading them into context\n\n### Progressive Disclosure Design Principle\n\nSkills use a three-level loading system to manage context efficiently:\n\n1. **Metadata (name + description)** - Always in context (~100 words)\n2. **SKILL.md body** - When skill triggers (\u003C5k words)\n3. **Bundled resources** - As needed by Claude (Unlimited*)\n\n*Unlimited because scripts can be executed without reading into context window.\n\n## Skill Creation Process\n\nTo create a skill, follow the \"Skill Creation Process\" in order, skipping steps only if there is a clear reason why they are not applicable.\n\n### Step 1: Understanding the Skill with Concrete Examples\n\nSkip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.\n\nTo create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.\n\nFor example, when building an image-editor skill, relevant questions include:\n\n- \"What functionality should the image-editor skill support? Editing, rotating, anything else?\"\n- \"Can you give some examples of how this skill would be used?\"\n- \"I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?\"\n- \"What would a user say that should trigger this skill?\"\n\nTo avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.\n\nConclude this step when there is a clear sense of the functionality the skill should support.\n\n### Step 2: Planning the Reusable Skill Contents\n\nTo turn concrete examples into an effective skill, analyze each example by:\n\n1. Considering how to execute on the example from scratch\n2. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly\n\nExample: When building a `pdf-editor` skill to handle queries like \"Help me rotate this PDF,\" the analysis shows:\n\n1. Rotating a PDF requires re-writing the same code each time\n2. A `scripts\u002Frotate_pdf.py` script would be helpful to store in the skill\n\nExample: When designing a `frontend-webapp-builder` skill for queries like \"Build me a todo app\" or \"Build me a dashboard to track my steps,\" the analysis shows:\n\n1. Writing a frontend webapp requires the same boilerplate HTML\u002FReact each time\n2. An `assets\u002Fhello-world\u002F` template containing the boilerplate HTML\u002FReact project files would be helpful to store in the skill\n\nExample: When building a `big-query` skill to handle queries like \"How many users have logged in today?\" the analysis shows:\n\n1. Querying BigQuery requires re-discovering the table schemas and relationships each time\n2. A `references\u002Fschema.md` file documenting the table schemas would be helpful to store in the skill\n\nTo establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.\n\n### Step 3: Initializing the Skill\n\nAt this point, it is time to actually create the skill.\n\nSkip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step.\n\nWhen creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.\n\nUsage:\n\n```bash\nscripts\u002Finit_skill.py \u003Cskill-name> --path \u003Coutput-directory>\n```\n\nThe script:\n\n- Creates the skill directory at the specified path\n- Generates a SKILL.md template with proper frontmatter and TODO placeholders\n- Creates example resource directories: `scripts\u002F`, `references\u002F`, and `assets\u002F`\n- Adds example files in each directory that can be customized or deleted\n\nAfter initialization, customize or remove the generated SKILL.md and example files as needed.\n\n### Step 4: Edit the Skill\n\nWhen editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Focus on including information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively.\n\n#### Start with Reusable Skill Contents\n\nTo begin implementation, start with the reusable resources identified above: `scripts\u002F`, `references\u002F`, and `assets\u002F` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets\u002F`, or documentation to store in `references\u002F`.\n\nAlso, delete any example files and directories not needed for the skill. The initialization script creates example files in `scripts\u002F`, `references\u002F`, and `assets\u002F` to demonstrate structure, but most skills won't need all of them.\n\n#### Update SKILL.md\n\n**Writing Style:** Write the entire skill using **imperative\u002Finfinitive form** (verb-first instructions), not second person. Use objective, instructional language (e.g., \"To accomplish X, do Y\" rather than \"You should do X\" or \"If you need to do X\"). This maintains consistency and clarity for AI consumption.\n\nTo complete SKILL.md, answer the following questions:\n\n1. What is the purpose of the skill, in a few sentences?\n2. When should the skill be used?\n3. In practice, how should Claude use the skill? All reusable skill contents developed above should be referenced so that Claude knows how to use them.\n\n### Step 5: Packaging a Skill\n\nOnce the skill is ready, it should be packaged into a distributable zip file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements:\n\n```bash\nscripts\u002Fpackage_skill.py \u003Cpath\u002Fto\u002Fskill-folder>\n```\n\nOptional output directory specification:\n\n```bash\nscripts\u002Fpackage_skill.py \u003Cpath\u002Fto\u002Fskill-folder> .\u002Fdist\n```\n\nThe packaging script will:\n\n1. **Validate** the skill automatically, checking:\n   - YAML frontmatter format and required fields\n   - Skill naming conventions and directory structure\n   - Description completeness and quality\n   - File organization and resource references\n\n2. **Package** the skill if validation passes, creating a zip file named after the skill (e.g., `my-skill.zip`) that includes all files and maintains the proper directory structure for distribution.\n\nIf validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.\n\n### Step 6: Iterate\n\nAfter testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.\n\n**Iteration workflow:**\n1. Use the skill on real tasks\n2. Notice struggles or inefficiencies\n3. Identify how SKILL.md or bundled resources should be updated\n4. Implement changes and test again\n",{"data":37,"body":38},{"name":4,"description":6,"license":26},{"type":39,"children":40},"root",[41,49,55,62,67,74,99,105,110,123,130,157,163,178,183,235,248,253,345,358,363,433,439,444,477,482,488,493,499,504,509,514,537,542,547,553,558,571,584,604,617,638,650,670,675,681,686,691,704,709,777,782,824,829,835,840,846,892,916,922,939,944,962,968,973,1006,1011,1046,1051,1105,1110,1116,1121,1129,1152],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Skill Creator",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"This skill provides guidance for creating effective skills.",{"type":42,"tag":56,"props":57,"children":59},"h2",{"id":58},"about-skills",[60],{"type":47,"value":61},"About Skills",{"type":42,"tag":50,"props":63,"children":64},{},[65],{"type":47,"value":66},"Skills are modular, self-contained packages that extend Claude's capabilities by providing\nspecialized knowledge, workflows, and tools. Think of them as \"onboarding guides\" for specific\ndomains or tasks—they transform Claude from a general-purpose agent into a specialized agent\nequipped with procedural knowledge that no model can fully possess.",{"type":42,"tag":68,"props":69,"children":71},"h3",{"id":70},"what-skills-provide",[72],{"type":47,"value":73},"What Skills Provide",{"type":42,"tag":75,"props":76,"children":77},"ol",{},[78,84,89,94],{"type":42,"tag":79,"props":80,"children":81},"li",{},[82],{"type":47,"value":83},"Specialized workflows - Multi-step procedures for specific domains",{"type":42,"tag":79,"props":85,"children":86},{},[87],{"type":47,"value":88},"Tool integrations - Instructions for working with specific file formats or APIs",{"type":42,"tag":79,"props":90,"children":91},{},[92],{"type":47,"value":93},"Domain expertise - Company-specific knowledge, schemas, business logic",{"type":42,"tag":79,"props":95,"children":96},{},[97],{"type":47,"value":98},"Bundled resources - Scripts, references, and assets for complex and repetitive tasks",{"type":42,"tag":68,"props":100,"children":102},{"id":101},"anatomy-of-a-skill",[103],{"type":47,"value":104},"Anatomy of a Skill",{"type":42,"tag":50,"props":106,"children":107},{},[108],{"type":47,"value":109},"Every skill consists of a required SKILL.md file and optional bundled resources:",{"type":42,"tag":111,"props":112,"children":116},"pre",{"className":113,"code":115,"language":47},[114],"language-text","skill-name\u002F\n├── SKILL.md (required)\n│   ├── YAML frontmatter metadata (required)\n│   │   ├── name: (required)\n│   │   └── description: (required)\n│   └── Markdown instructions (required)\n└── Bundled Resources (optional)\n    ├── scripts\u002F          - Executable code (Python\u002FBash\u002Fetc.)\n    ├── references\u002F       - Documentation intended to be loaded into context as needed\n    └── assets\u002F           - Files used in output (templates, icons, fonts, etc.)\n",[117],{"type":42,"tag":118,"props":119,"children":121},"code",{"__ignoreMap":120},"",[122],{"type":47,"value":115},{"type":42,"tag":124,"props":125,"children":127},"h4",{"id":126},"skillmd-required",[128],{"type":47,"value":129},"SKILL.md (required)",{"type":42,"tag":50,"props":131,"children":132},{},[133,139,141,147,149,155],{"type":42,"tag":134,"props":135,"children":136},"strong",{},[137],{"type":47,"value":138},"Metadata Quality:",{"type":47,"value":140}," The ",{"type":42,"tag":118,"props":142,"children":144},{"className":143},[],[145],{"type":47,"value":146},"name",{"type":47,"value":148}," and ",{"type":42,"tag":118,"props":150,"children":152},{"className":151},[],[153],{"type":47,"value":154},"description",{"type":47,"value":156}," in YAML frontmatter determine when Claude will use the skill. Be specific about what the skill does and when to use it. Use the third-person (e.g. \"This skill should be used when...\" instead of \"Use this skill when...\").",{"type":42,"tag":124,"props":158,"children":160},{"id":159},"bundled-resources-optional",[161],{"type":47,"value":162},"Bundled Resources (optional)",{"type":42,"tag":164,"props":165,"children":167},"h5",{"id":166},"scripts-scripts",[168,170,176],{"type":47,"value":169},"Scripts (",{"type":42,"tag":118,"props":171,"children":173},{"className":172},[],[174],{"type":47,"value":175},"scripts\u002F",{"type":47,"value":177},")",{"type":42,"tag":50,"props":179,"children":180},{},[181],{"type":47,"value":182},"Executable code (Python\u002FBash\u002Fetc.) for tasks that require deterministic reliability or are repeatedly rewritten.",{"type":42,"tag":184,"props":185,"children":186},"ul",{},[187,197,215,225],{"type":42,"tag":79,"props":188,"children":189},{},[190,195],{"type":42,"tag":134,"props":191,"children":192},{},[193],{"type":47,"value":194},"When to include",{"type":47,"value":196},": When the same code is being rewritten repeatedly or deterministic reliability is needed",{"type":42,"tag":79,"props":198,"children":199},{},[200,205,207,213],{"type":42,"tag":134,"props":201,"children":202},{},[203],{"type":47,"value":204},"Example",{"type":47,"value":206},": ",{"type":42,"tag":118,"props":208,"children":210},{"className":209},[],[211],{"type":47,"value":212},"scripts\u002Frotate_pdf.py",{"type":47,"value":214}," for PDF rotation tasks",{"type":42,"tag":79,"props":216,"children":217},{},[218,223],{"type":42,"tag":134,"props":219,"children":220},{},[221],{"type":47,"value":222},"Benefits",{"type":47,"value":224},": Token efficient, deterministic, may be executed without loading into context",{"type":42,"tag":79,"props":226,"children":227},{},[228,233],{"type":42,"tag":134,"props":229,"children":230},{},[231],{"type":47,"value":232},"Note",{"type":47,"value":234},": Scripts may still need to be read by Claude for patching or environment-specific adjustments",{"type":42,"tag":164,"props":236,"children":238},{"id":237},"references-references",[239,241,247],{"type":47,"value":240},"References (",{"type":42,"tag":118,"props":242,"children":244},{"className":243},[],[245],{"type":47,"value":246},"references\u002F",{"type":47,"value":177},{"type":42,"tag":50,"props":249,"children":250},{},[251],{"type":47,"value":252},"Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.",{"type":42,"tag":184,"props":254,"children":255},{},[256,265,306,316,325,335],{"type":42,"tag":79,"props":257,"children":258},{},[259,263],{"type":42,"tag":134,"props":260,"children":261},{},[262],{"type":47,"value":194},{"type":47,"value":264},": For documentation that Claude should reference while working",{"type":42,"tag":79,"props":266,"children":267},{},[268,273,274,280,282,288,290,296,298,304],{"type":42,"tag":134,"props":269,"children":270},{},[271],{"type":47,"value":272},"Examples",{"type":47,"value":206},{"type":42,"tag":118,"props":275,"children":277},{"className":276},[],[278],{"type":47,"value":279},"references\u002Ffinance.md",{"type":47,"value":281}," for financial schemas, ",{"type":42,"tag":118,"props":283,"children":285},{"className":284},[],[286],{"type":47,"value":287},"references\u002Fmnda.md",{"type":47,"value":289}," for company NDA template, ",{"type":42,"tag":118,"props":291,"children":293},{"className":292},[],[294],{"type":47,"value":295},"references\u002Fpolicies.md",{"type":47,"value":297}," for company policies, ",{"type":42,"tag":118,"props":299,"children":301},{"className":300},[],[302],{"type":47,"value":303},"references\u002Fapi_docs.md",{"type":47,"value":305}," for API specifications",{"type":42,"tag":79,"props":307,"children":308},{},[309,314],{"type":42,"tag":134,"props":310,"children":311},{},[312],{"type":47,"value":313},"Use cases",{"type":47,"value":315},": Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides",{"type":42,"tag":79,"props":317,"children":318},{},[319,323],{"type":42,"tag":134,"props":320,"children":321},{},[322],{"type":47,"value":222},{"type":47,"value":324},": Keeps SKILL.md lean, loaded only when Claude determines it's needed",{"type":42,"tag":79,"props":326,"children":327},{},[328,333],{"type":42,"tag":134,"props":329,"children":330},{},[331],{"type":47,"value":332},"Best practice",{"type":47,"value":334},": If files are large (>10k words), include grep search patterns in SKILL.md",{"type":42,"tag":79,"props":336,"children":337},{},[338,343],{"type":42,"tag":134,"props":339,"children":340},{},[341],{"type":47,"value":342},"Avoid duplication",{"type":47,"value":344},": Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.",{"type":42,"tag":164,"props":346,"children":348},{"id":347},"assets-assets",[349,351,357],{"type":47,"value":350},"Assets (",{"type":42,"tag":118,"props":352,"children":354},{"className":353},[],[355],{"type":47,"value":356},"assets\u002F",{"type":47,"value":177},{"type":42,"tag":50,"props":359,"children":360},{},[361],{"type":47,"value":362},"Files not intended to be loaded into context, but rather used within the output Claude produces.",{"type":42,"tag":184,"props":364,"children":365},{},[366,375,415,424],{"type":42,"tag":79,"props":367,"children":368},{},[369,373],{"type":42,"tag":134,"props":370,"children":371},{},[372],{"type":47,"value":194},{"type":47,"value":374},": When the skill needs files that will be used in the final output",{"type":42,"tag":79,"props":376,"children":377},{},[378,382,383,389,391,397,399,405,407,413],{"type":42,"tag":134,"props":379,"children":380},{},[381],{"type":47,"value":272},{"type":47,"value":206},{"type":42,"tag":118,"props":384,"children":386},{"className":385},[],[387],{"type":47,"value":388},"assets\u002Flogo.png",{"type":47,"value":390}," for brand assets, ",{"type":42,"tag":118,"props":392,"children":394},{"className":393},[],[395],{"type":47,"value":396},"assets\u002Fslides.pptx",{"type":47,"value":398}," for PowerPoint templates, ",{"type":42,"tag":118,"props":400,"children":402},{"className":401},[],[403],{"type":47,"value":404},"assets\u002Ffrontend-template\u002F",{"type":47,"value":406}," for HTML\u002FReact boilerplate, ",{"type":42,"tag":118,"props":408,"children":410},{"className":409},[],[411],{"type":47,"value":412},"assets\u002Ffont.ttf",{"type":47,"value":414}," for typography",{"type":42,"tag":79,"props":416,"children":417},{},[418,422],{"type":42,"tag":134,"props":419,"children":420},{},[421],{"type":47,"value":313},{"type":47,"value":423},": Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified",{"type":42,"tag":79,"props":425,"children":426},{},[427,431],{"type":42,"tag":134,"props":428,"children":429},{},[430],{"type":47,"value":222},{"type":47,"value":432},": Separates output resources from documentation, enables Claude to use files without loading them into context",{"type":42,"tag":68,"props":434,"children":436},{"id":435},"progressive-disclosure-design-principle",[437],{"type":47,"value":438},"Progressive Disclosure Design Principle",{"type":42,"tag":50,"props":440,"children":441},{},[442],{"type":47,"value":443},"Skills use a three-level loading system to manage context efficiently:",{"type":42,"tag":75,"props":445,"children":446},{},[447,457,467],{"type":42,"tag":79,"props":448,"children":449},{},[450,455],{"type":42,"tag":134,"props":451,"children":452},{},[453],{"type":47,"value":454},"Metadata (name + description)",{"type":47,"value":456}," - Always in context (~100 words)",{"type":42,"tag":79,"props":458,"children":459},{},[460,465],{"type":42,"tag":134,"props":461,"children":462},{},[463],{"type":47,"value":464},"SKILL.md body",{"type":47,"value":466}," - When skill triggers (\u003C5k words)",{"type":42,"tag":79,"props":468,"children":469},{},[470,475],{"type":42,"tag":134,"props":471,"children":472},{},[473],{"type":47,"value":474},"Bundled resources",{"type":47,"value":476}," - As needed by Claude (Unlimited*)",{"type":42,"tag":50,"props":478,"children":479},{},[480],{"type":47,"value":481},"*Unlimited because scripts can be executed without reading into context window.",{"type":42,"tag":56,"props":483,"children":485},{"id":484},"skill-creation-process",[486],{"type":47,"value":487},"Skill Creation Process",{"type":42,"tag":50,"props":489,"children":490},{},[491],{"type":47,"value":492},"To create a skill, follow the \"Skill Creation Process\" in order, skipping steps only if there is a clear reason why they are not applicable.",{"type":42,"tag":68,"props":494,"children":496},{"id":495},"step-1-understanding-the-skill-with-concrete-examples",[497],{"type":47,"value":498},"Step 1: Understanding the Skill with Concrete Examples",{"type":42,"tag":50,"props":500,"children":501},{},[502],{"type":47,"value":503},"Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.",{"type":42,"tag":50,"props":505,"children":506},{},[507],{"type":47,"value":508},"To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.",{"type":42,"tag":50,"props":510,"children":511},{},[512],{"type":47,"value":513},"For example, when building an image-editor skill, relevant questions include:",{"type":42,"tag":184,"props":515,"children":516},{},[517,522,527,532],{"type":42,"tag":79,"props":518,"children":519},{},[520],{"type":47,"value":521},"\"What functionality should the image-editor skill support? Editing, rotating, anything else?\"",{"type":42,"tag":79,"props":523,"children":524},{},[525],{"type":47,"value":526},"\"Can you give some examples of how this skill would be used?\"",{"type":42,"tag":79,"props":528,"children":529},{},[530],{"type":47,"value":531},"\"I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?\"",{"type":42,"tag":79,"props":533,"children":534},{},[535],{"type":47,"value":536},"\"What would a user say that should trigger this skill?\"",{"type":42,"tag":50,"props":538,"children":539},{},[540],{"type":47,"value":541},"To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.",{"type":42,"tag":50,"props":543,"children":544},{},[545],{"type":47,"value":546},"Conclude this step when there is a clear sense of the functionality the skill should support.",{"type":42,"tag":68,"props":548,"children":550},{"id":549},"step-2-planning-the-reusable-skill-contents",[551],{"type":47,"value":552},"Step 2: Planning the Reusable Skill Contents",{"type":42,"tag":50,"props":554,"children":555},{},[556],{"type":47,"value":557},"To turn concrete examples into an effective skill, analyze each example by:",{"type":42,"tag":75,"props":559,"children":560},{},[561,566],{"type":42,"tag":79,"props":562,"children":563},{},[564],{"type":47,"value":565},"Considering how to execute on the example from scratch",{"type":42,"tag":79,"props":567,"children":568},{},[569],{"type":47,"value":570},"Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly",{"type":42,"tag":50,"props":572,"children":573},{},[574,576,582],{"type":47,"value":575},"Example: When building a ",{"type":42,"tag":118,"props":577,"children":579},{"className":578},[],[580],{"type":47,"value":581},"pdf-editor",{"type":47,"value":583}," skill to handle queries like \"Help me rotate this PDF,\" the analysis shows:",{"type":42,"tag":75,"props":585,"children":586},{},[587,592],{"type":42,"tag":79,"props":588,"children":589},{},[590],{"type":47,"value":591},"Rotating a PDF requires re-writing the same code each time",{"type":42,"tag":79,"props":593,"children":594},{},[595,597,602],{"type":47,"value":596},"A ",{"type":42,"tag":118,"props":598,"children":600},{"className":599},[],[601],{"type":47,"value":212},{"type":47,"value":603}," script would be helpful to store in the skill",{"type":42,"tag":50,"props":605,"children":606},{},[607,609,615],{"type":47,"value":608},"Example: When designing a ",{"type":42,"tag":118,"props":610,"children":612},{"className":611},[],[613],{"type":47,"value":614},"frontend-webapp-builder",{"type":47,"value":616}," skill for queries like \"Build me a todo app\" or \"Build me a dashboard to track my steps,\" the analysis shows:",{"type":42,"tag":75,"props":618,"children":619},{},[620,625],{"type":42,"tag":79,"props":621,"children":622},{},[623],{"type":47,"value":624},"Writing a frontend webapp requires the same boilerplate HTML\u002FReact each time",{"type":42,"tag":79,"props":626,"children":627},{},[628,630,636],{"type":47,"value":629},"An ",{"type":42,"tag":118,"props":631,"children":633},{"className":632},[],[634],{"type":47,"value":635},"assets\u002Fhello-world\u002F",{"type":47,"value":637}," template containing the boilerplate HTML\u002FReact project files would be helpful to store in the skill",{"type":42,"tag":50,"props":639,"children":640},{},[641,642,648],{"type":47,"value":575},{"type":42,"tag":118,"props":643,"children":645},{"className":644},[],[646],{"type":47,"value":647},"big-query",{"type":47,"value":649}," skill to handle queries like \"How many users have logged in today?\" the analysis shows:",{"type":42,"tag":75,"props":651,"children":652},{},[653,658],{"type":42,"tag":79,"props":654,"children":655},{},[656],{"type":47,"value":657},"Querying BigQuery requires re-discovering the table schemas and relationships each time",{"type":42,"tag":79,"props":659,"children":660},{},[661,662,668],{"type":47,"value":596},{"type":42,"tag":118,"props":663,"children":665},{"className":664},[],[666],{"type":47,"value":667},"references\u002Fschema.md",{"type":47,"value":669}," file documenting the table schemas would be helpful to store in the skill",{"type":42,"tag":50,"props":671,"children":672},{},[673],{"type":47,"value":674},"To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.",{"type":42,"tag":68,"props":676,"children":678},{"id":677},"step-3-initializing-the-skill",[679],{"type":47,"value":680},"Step 3: Initializing the Skill",{"type":42,"tag":50,"props":682,"children":683},{},[684],{"type":47,"value":685},"At this point, it is time to actually create the skill.",{"type":42,"tag":50,"props":687,"children":688},{},[689],{"type":47,"value":690},"Skip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step.",{"type":42,"tag":50,"props":692,"children":693},{},[694,696,702],{"type":47,"value":695},"When creating a new skill from scratch, always run the ",{"type":42,"tag":118,"props":697,"children":699},{"className":698},[],[700],{"type":47,"value":701},"init_skill.py",{"type":47,"value":703}," script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.",{"type":42,"tag":50,"props":705,"children":706},{},[707],{"type":47,"value":708},"Usage:",{"type":42,"tag":111,"props":710,"children":714},{"className":711,"code":712,"language":713,"meta":120,"style":120},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","scripts\u002Finit_skill.py \u003Cskill-name> --path \u003Coutput-directory>\n","bash",[715],{"type":42,"tag":118,"props":716,"children":717},{"__ignoreMap":120},[718],{"type":42,"tag":719,"props":720,"children":723},"span",{"class":721,"line":722},"line",1,[724,730,736,742,748,753,758,762,767,772],{"type":42,"tag":719,"props":725,"children":727},{"style":726},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[728],{"type":47,"value":729},"scripts\u002Finit_skill.py",{"type":42,"tag":719,"props":731,"children":733},{"style":732},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[734],{"type":47,"value":735}," \u003C",{"type":42,"tag":719,"props":737,"children":739},{"style":738},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[740],{"type":47,"value":741},"skill-nam",{"type":42,"tag":719,"props":743,"children":745},{"style":744},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[746],{"type":47,"value":747},"e",{"type":42,"tag":719,"props":749,"children":750},{"style":732},[751],{"type":47,"value":752},">",{"type":42,"tag":719,"props":754,"children":755},{"style":738},[756],{"type":47,"value":757}," --path",{"type":42,"tag":719,"props":759,"children":760},{"style":732},[761],{"type":47,"value":735},{"type":42,"tag":719,"props":763,"children":764},{"style":738},[765],{"type":47,"value":766},"output-director",{"type":42,"tag":719,"props":768,"children":769},{"style":744},[770],{"type":47,"value":771},"y",{"type":42,"tag":719,"props":773,"children":774},{"style":732},[775],{"type":47,"value":776},">\n",{"type":42,"tag":50,"props":778,"children":779},{},[780],{"type":47,"value":781},"The script:",{"type":42,"tag":184,"props":783,"children":784},{},[785,790,795,819],{"type":42,"tag":79,"props":786,"children":787},{},[788],{"type":47,"value":789},"Creates the skill directory at the specified path",{"type":42,"tag":79,"props":791,"children":792},{},[793],{"type":47,"value":794},"Generates a SKILL.md template with proper frontmatter and TODO placeholders",{"type":42,"tag":79,"props":796,"children":797},{},[798,800,805,807,812,814],{"type":47,"value":799},"Creates example resource directories: ",{"type":42,"tag":118,"props":801,"children":803},{"className":802},[],[804],{"type":47,"value":175},{"type":47,"value":806},", ",{"type":42,"tag":118,"props":808,"children":810},{"className":809},[],[811],{"type":47,"value":246},{"type":47,"value":813},", and ",{"type":42,"tag":118,"props":815,"children":817},{"className":816},[],[818],{"type":47,"value":356},{"type":42,"tag":79,"props":820,"children":821},{},[822],{"type":47,"value":823},"Adds example files in each directory that can be customized or deleted",{"type":42,"tag":50,"props":825,"children":826},{},[827],{"type":47,"value":828},"After initialization, customize or remove the generated SKILL.md and example files as needed.",{"type":42,"tag":68,"props":830,"children":832},{"id":831},"step-4-edit-the-skill",[833],{"type":47,"value":834},"Step 4: Edit the Skill",{"type":42,"tag":50,"props":836,"children":837},{},[838],{"type":47,"value":839},"When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Focus on including information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively.",{"type":42,"tag":124,"props":841,"children":843},{"id":842},"start-with-reusable-skill-contents",[844],{"type":47,"value":845},"Start with Reusable Skill Contents",{"type":42,"tag":50,"props":847,"children":848},{},[849,851,856,857,862,863,868,870,876,878,883,885,890],{"type":47,"value":850},"To begin implementation, start with the reusable resources identified above: ",{"type":42,"tag":118,"props":852,"children":854},{"className":853},[],[855],{"type":47,"value":175},{"type":47,"value":806},{"type":42,"tag":118,"props":858,"children":860},{"className":859},[],[861],{"type":47,"value":246},{"type":47,"value":813},{"type":42,"tag":118,"props":864,"children":866},{"className":865},[],[867],{"type":47,"value":356},{"type":47,"value":869}," files. Note that this step may require user input. For example, when implementing a ",{"type":42,"tag":118,"props":871,"children":873},{"className":872},[],[874],{"type":47,"value":875},"brand-guidelines",{"type":47,"value":877}," skill, the user may need to provide brand assets or templates to store in ",{"type":42,"tag":118,"props":879,"children":881},{"className":880},[],[882],{"type":47,"value":356},{"type":47,"value":884},", or documentation to store in ",{"type":42,"tag":118,"props":886,"children":888},{"className":887},[],[889],{"type":47,"value":246},{"type":47,"value":891},".",{"type":42,"tag":50,"props":893,"children":894},{},[895,897,902,903,908,909,914],{"type":47,"value":896},"Also, delete any example files and directories not needed for the skill. The initialization script creates example files in ",{"type":42,"tag":118,"props":898,"children":900},{"className":899},[],[901],{"type":47,"value":175},{"type":47,"value":806},{"type":42,"tag":118,"props":904,"children":906},{"className":905},[],[907],{"type":47,"value":246},{"type":47,"value":813},{"type":42,"tag":118,"props":910,"children":912},{"className":911},[],[913],{"type":47,"value":356},{"type":47,"value":915}," to demonstrate structure, but most skills won't need all of them.",{"type":42,"tag":124,"props":917,"children":919},{"id":918},"update-skillmd",[920],{"type":47,"value":921},"Update SKILL.md",{"type":42,"tag":50,"props":923,"children":924},{},[925,930,932,937],{"type":42,"tag":134,"props":926,"children":927},{},[928],{"type":47,"value":929},"Writing Style:",{"type":47,"value":931}," Write the entire skill using ",{"type":42,"tag":134,"props":933,"children":934},{},[935],{"type":47,"value":936},"imperative\u002Finfinitive form",{"type":47,"value":938}," (verb-first instructions), not second person. Use objective, instructional language (e.g., \"To accomplish X, do Y\" rather than \"You should do X\" or \"If you need to do X\"). This maintains consistency and clarity for AI consumption.",{"type":42,"tag":50,"props":940,"children":941},{},[942],{"type":47,"value":943},"To complete SKILL.md, answer the following questions:",{"type":42,"tag":75,"props":945,"children":946},{},[947,952,957],{"type":42,"tag":79,"props":948,"children":949},{},[950],{"type":47,"value":951},"What is the purpose of the skill, in a few sentences?",{"type":42,"tag":79,"props":953,"children":954},{},[955],{"type":47,"value":956},"When should the skill be used?",{"type":42,"tag":79,"props":958,"children":959},{},[960],{"type":47,"value":961},"In practice, how should Claude use the skill? All reusable skill contents developed above should be referenced so that Claude knows how to use them.",{"type":42,"tag":68,"props":963,"children":965},{"id":964},"step-5-packaging-a-skill",[966],{"type":47,"value":967},"Step 5: Packaging a Skill",{"type":42,"tag":50,"props":969,"children":970},{},[971],{"type":47,"value":972},"Once the skill is ready, it should be packaged into a distributable zip file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements:",{"type":42,"tag":111,"props":974,"children":976},{"className":711,"code":975,"language":713,"meta":120,"style":120},"scripts\u002Fpackage_skill.py \u003Cpath\u002Fto\u002Fskill-folder>\n",[977],{"type":42,"tag":118,"props":978,"children":979},{"__ignoreMap":120},[980],{"type":42,"tag":719,"props":981,"children":982},{"class":721,"line":722},[983,988,992,997,1002],{"type":42,"tag":719,"props":984,"children":985},{"style":726},[986],{"type":47,"value":987},"scripts\u002Fpackage_skill.py",{"type":42,"tag":719,"props":989,"children":990},{"style":732},[991],{"type":47,"value":735},{"type":42,"tag":719,"props":993,"children":994},{"style":738},[995],{"type":47,"value":996},"path\u002Fto\u002Fskill-folde",{"type":42,"tag":719,"props":998,"children":999},{"style":744},[1000],{"type":47,"value":1001},"r",{"type":42,"tag":719,"props":1003,"children":1004},{"style":732},[1005],{"type":47,"value":776},{"type":42,"tag":50,"props":1007,"children":1008},{},[1009],{"type":47,"value":1010},"Optional output directory specification:",{"type":42,"tag":111,"props":1012,"children":1014},{"className":711,"code":1013,"language":713,"meta":120,"style":120},"scripts\u002Fpackage_skill.py \u003Cpath\u002Fto\u002Fskill-folder> .\u002Fdist\n",[1015],{"type":42,"tag":118,"props":1016,"children":1017},{"__ignoreMap":120},[1018],{"type":42,"tag":719,"props":1019,"children":1020},{"class":721,"line":722},[1021,1025,1029,1033,1037,1041],{"type":42,"tag":719,"props":1022,"children":1023},{"style":726},[1024],{"type":47,"value":987},{"type":42,"tag":719,"props":1026,"children":1027},{"style":732},[1028],{"type":47,"value":735},{"type":42,"tag":719,"props":1030,"children":1031},{"style":738},[1032],{"type":47,"value":996},{"type":42,"tag":719,"props":1034,"children":1035},{"style":744},[1036],{"type":47,"value":1001},{"type":42,"tag":719,"props":1038,"children":1039},{"style":732},[1040],{"type":47,"value":752},{"type":42,"tag":719,"props":1042,"children":1043},{"style":738},[1044],{"type":47,"value":1045}," .\u002Fdist\n",{"type":42,"tag":50,"props":1047,"children":1048},{},[1049],{"type":47,"value":1050},"The packaging script will:",{"type":42,"tag":75,"props":1052,"children":1053},{},[1054,1087],{"type":42,"tag":79,"props":1055,"children":1056},{},[1057,1062,1064],{"type":42,"tag":134,"props":1058,"children":1059},{},[1060],{"type":47,"value":1061},"Validate",{"type":47,"value":1063}," the skill automatically, checking:",{"type":42,"tag":184,"props":1065,"children":1066},{},[1067,1072,1077,1082],{"type":42,"tag":79,"props":1068,"children":1069},{},[1070],{"type":47,"value":1071},"YAML frontmatter format and required fields",{"type":42,"tag":79,"props":1073,"children":1074},{},[1075],{"type":47,"value":1076},"Skill naming conventions and directory structure",{"type":42,"tag":79,"props":1078,"children":1079},{},[1080],{"type":47,"value":1081},"Description completeness and quality",{"type":42,"tag":79,"props":1083,"children":1084},{},[1085],{"type":47,"value":1086},"File organization and resource references",{"type":42,"tag":79,"props":1088,"children":1089},{},[1090,1095,1097,1103],{"type":42,"tag":134,"props":1091,"children":1092},{},[1093],{"type":47,"value":1094},"Package",{"type":47,"value":1096}," the skill if validation passes, creating a zip file named after the skill (e.g., ",{"type":42,"tag":118,"props":1098,"children":1100},{"className":1099},[],[1101],{"type":47,"value":1102},"my-skill.zip",{"type":47,"value":1104},") that includes all files and maintains the proper directory structure for distribution.",{"type":42,"tag":50,"props":1106,"children":1107},{},[1108],{"type":47,"value":1109},"If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.",{"type":42,"tag":68,"props":1111,"children":1113},{"id":1112},"step-6-iterate",[1114],{"type":47,"value":1115},"Step 6: Iterate",{"type":42,"tag":50,"props":1117,"children":1118},{},[1119],{"type":47,"value":1120},"After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.",{"type":42,"tag":50,"props":1122,"children":1123},{},[1124],{"type":42,"tag":134,"props":1125,"children":1126},{},[1127],{"type":47,"value":1128},"Iteration workflow:",{"type":42,"tag":75,"props":1130,"children":1131},{},[1132,1137,1142,1147],{"type":42,"tag":79,"props":1133,"children":1134},{},[1135],{"type":47,"value":1136},"Use the skill on real tasks",{"type":42,"tag":79,"props":1138,"children":1139},{},[1140],{"type":47,"value":1141},"Notice struggles or inefficiencies",{"type":42,"tag":79,"props":1143,"children":1144},{},[1145],{"type":47,"value":1146},"Identify how SKILL.md or bundled resources should be updated",{"type":42,"tag":79,"props":1148,"children":1149},{},[1150],{"type":47,"value":1151},"Implement changes and test again",{"type":42,"tag":1153,"props":1154,"children":1155},"style",{},[1156],{"type":47,"value":1157},"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":1159,"total":1358},[1160,1184,1198,1217,1232,1252,1270,1288,1303,1319,1338,1348],{"slug":1161,"name":1161,"fn":1162,"description":1163,"org":1164,"tags":1165,"stars":1181,"repoUrl":1182,"updatedAt":1183},"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},[1166,1169,1172,1175,1178],{"name":1167,"slug":1168,"type":16},"Accessibility","accessibility",{"name":1170,"slug":1171,"type":16},"Android","android",{"name":1173,"slug":1174,"type":16},"Kotlin","kotlin",{"name":1176,"slug":1177,"type":16},"Mobile","mobile",{"name":1179,"slug":1180,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1188,"tags":1189,"stars":1181,"repoUrl":1182,"updatedAt":1197},"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},[1190,1191,1194],{"name":18,"slug":19,"type":16},{"name":1192,"slug":1193,"type":16},"Audio","audio",{"name":1195,"slug":1196,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":1199,"name":1199,"fn":1200,"description":1201,"org":1202,"tags":1203,"stars":1181,"repoUrl":1182,"updatedAt":1216},"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},[1204,1207,1210,1213],{"name":1205,"slug":1206,"type":16},"Design","design",{"name":1208,"slug":1209,"type":16},"Presentations","presentations",{"name":1211,"slug":1212,"type":16},"Themes","themes",{"name":1214,"slug":1215,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":1218,"name":1218,"fn":1219,"description":1220,"org":1221,"tags":1222,"stars":1181,"repoUrl":1182,"updatedAt":1231},"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},[1223,1224,1227,1230],{"name":1205,"slug":1206,"type":16},{"name":1225,"slug":1226,"type":16},"Design System","design-system",{"name":1228,"slug":1229,"type":16},"PowerPoint","powerpoint",{"name":1208,"slug":1209,"type":16},"2026-07-13T06:17:10.398389",{"slug":1233,"name":1233,"fn":1234,"description":1235,"org":1236,"tags":1237,"stars":1181,"repoUrl":1182,"updatedAt":1251},"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},[1238,1241,1244,1245,1248],{"name":1239,"slug":1240,"type":16},"Dart","dart",{"name":1242,"slug":1243,"type":16},"Flutter","flutter",{"name":1176,"slug":1177,"type":16},{"name":1246,"slug":1247,"type":16},"Performance","performance",{"name":1249,"slug":1250,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":1253,"name":1253,"fn":1254,"description":1255,"org":1256,"tags":1257,"stars":1181,"repoUrl":1182,"updatedAt":1269},"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},[1258,1261,1262,1263,1266],{"name":1259,"slug":1260,"type":16},"Animation","animation",{"name":1195,"slug":1196,"type":16},{"name":1205,"slug":1206,"type":16},{"name":1264,"slug":1265,"type":16},"Frontend","frontend",{"name":1267,"slug":1268,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":1271,"name":1271,"fn":1272,"description":1273,"org":1274,"tags":1275,"stars":1181,"repoUrl":1182,"updatedAt":1287},"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},[1276,1279,1280,1283,1286],{"name":1277,"slug":1278,"type":16},"Backend","backend",{"name":1264,"slug":1265,"type":16},{"name":1281,"slug":1282,"type":16},"Full-stack","full-stack",{"name":1284,"slug":1285,"type":16},"REST API","rest-api",{"name":1267,"slug":1268,"type":16},"2026-07-13T06:16:43.219005",{"slug":1289,"name":1289,"fn":1290,"description":1291,"org":1292,"tags":1293,"stars":1181,"repoUrl":1182,"updatedAt":1302},"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},[1294,1295,1296,1299],{"name":1259,"slug":1260,"type":16},{"name":1195,"slug":1196,"type":16},{"name":1297,"slug":1298,"type":16},"Images","images",{"name":1300,"slug":1301,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1304,"name":1304,"fn":1305,"description":1306,"org":1307,"tags":1308,"stars":1181,"repoUrl":1182,"updatedAt":1318},"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},[1309,1310,1313,1314,1317],{"name":1167,"slug":1168,"type":16},{"name":1311,"slug":1312,"type":16},"iOS","ios",{"name":1176,"slug":1177,"type":16},{"name":1315,"slug":1316,"type":16},"SwiftUI","swiftui",{"name":1179,"slug":1180,"type":16},"2026-07-13T06:16:55.686092",{"slug":1320,"name":1320,"fn":1321,"description":1322,"org":1323,"tags":1324,"stars":1181,"repoUrl":1182,"updatedAt":1337},"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},[1325,1328,1331,1334],{"name":1326,"slug":1327,"type":16},"Documents","documents",{"name":1329,"slug":1330,"type":16},"DOCX","docx",{"name":1332,"slug":1333,"type":16},"Office","office",{"name":1335,"slug":1336,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1339,"name":1339,"fn":1340,"description":1341,"org":1342,"tags":1343,"stars":1181,"repoUrl":1182,"updatedAt":1347},"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},[1344,1345,1346],{"name":1192,"slug":1193,"type":16},{"name":1195,"slug":1196,"type":16},{"name":1300,"slug":1301,"type":16},"2026-07-13T06:16:50.381758",{"slug":1349,"name":1349,"fn":1350,"description":1351,"org":1352,"tags":1353,"stars":1181,"repoUrl":1182,"updatedAt":1357},"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},[1354,1355,1356],{"name":1192,"slug":1193,"type":16},{"name":1195,"slug":1196,"type":16},{"name":1300,"slug":1301,"type":16},"2026-07-13T06:16:57.002997",37,{"items":1360,"total":1462},[1361,1376,1396,1407,1420,1432,1448],{"slug":1362,"name":1362,"fn":1363,"description":1364,"org":1365,"tags":1366,"stars":23,"repoUrl":24,"updatedAt":1375},"algorithmic-art","generate algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1367,1368,1369,1372],{"name":1195,"slug":1196,"type":16},{"name":1205,"slug":1206,"type":16},{"name":1370,"slug":1371,"type":16},"Generative Art","generative-art",{"name":1373,"slug":1374,"type":16},"Graphics","graphics","2026-07-16T06:02:02.834983",{"slug":1377,"name":1377,"fn":1378,"description":1379,"org":1380,"tags":1381,"stars":23,"repoUrl":24,"updatedAt":1395},"artifacts-builder","build complex React HTML artifacts","Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn\u002Fui). Use for complex artifacts requiring state management, routing, or shadcn\u002Fui components - not for simple single-file HTML\u002FJSX artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1382,1383,1386,1389,1392],{"name":1264,"slug":1265,"type":16},{"name":1384,"slug":1385,"type":16},"HTML","html",{"name":1387,"slug":1388,"type":16},"React","react",{"name":1390,"slug":1391,"type":16},"shadcn\u002Fui","shadcn-ui",{"name":1393,"slug":1394,"type":16},"Tailwind CSS","tailwind-css","2026-07-13T06:17:37.887194",{"slug":875,"name":875,"fn":1397,"description":1398,"org":1399,"tags":1400,"stars":23,"repoUrl":24,"updatedAt":1406},"apply brand guidelines to documents","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1401,1404,1405],{"name":1402,"slug":1403,"type":16},"Branding","branding",{"name":1205,"slug":1206,"type":16},{"name":1214,"slug":1215,"type":16},"2026-07-13T06:17:36.624966",{"slug":1408,"name":1408,"fn":1409,"description":1410,"org":1411,"tags":1412,"stars":23,"repoUrl":24,"updatedAt":1419},"canvas-design","create visual art and design documents","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1413,1414,1415,1416],{"name":1195,"slug":1196,"type":16},{"name":1205,"slug":1206,"type":16},{"name":1297,"slug":1298,"type":16},{"name":1417,"slug":1418,"type":16},"PDF","pdf","2026-07-16T06:01:59.313156",{"slug":1330,"name":1330,"fn":1421,"description":1422,"org":1423,"tags":1424,"stars":23,"repoUrl":24,"updatedAt":1431},"create and edit Word documents","Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1425,1426,1427,1428],{"name":1326,"slug":1327,"type":16},{"name":1329,"slug":1330,"type":16},{"name":1332,"slug":1333,"type":16},{"name":1429,"slug":1430,"type":16},"Word","word","2026-07-13T06:17:51.582447",{"slug":1433,"name":1433,"fn":1434,"description":1435,"org":1436,"tags":1437,"stars":23,"repoUrl":24,"updatedAt":1447},"internal-comms","draft internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1438,1441,1444],{"name":1439,"slug":1440,"type":16},"Communications","communications",{"name":1442,"slug":1443,"type":16},"Operations","operations",{"name":1445,"slug":1446,"type":16},"Writing","writing","2026-07-13T06:17:28.861835",{"slug":1449,"name":1449,"fn":1450,"description":1451,"org":1452,"tags":1453,"stars":23,"repoUrl":24,"updatedAt":1461},"mcp-builder","build MCP servers for external integrations","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1454,1455,1458],{"name":18,"slug":19,"type":16},{"name":1456,"slug":1457,"type":16},"API Development","api-development",{"name":1459,"slug":1460,"type":16},"MCP","mcp","2026-07-13T06:17:18.339572",15]