skill-creator

Create and validate Manus skill packages with templates, scripts, and reference documentation.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill skill-creator-anderhonorato
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/AnderHonorato/Mem-rias-IA---Infinity/tree/main/Manus/Skills/skill-creator
Command: npx skills add https://github.com/AnderHonorato/Mem-rias-IA---Infinity --skill skill-creator-anderhonorato

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pyyaml, and includes scripts (resource) and references (resource) components.

What problem does it solve? Building a well-structured skill for Manus requires knowing the SKILL.md format, frontmatter rules, progressive disclosure patterns, and validation requirements. This Skill guides the entire creation and update workflow so new skills are consistent, concise, and correctly packaged. ## Core Features & Use Cases - Skill Initialization: Run init_skill.py to scaffold a new skill directory with a SKILL.md template and example scripts, references, and templates folders. - Design Guidance: Apply proven patterns for workflows, output formats, and progressive disclosure from bundled reference documents. - Validation and Delivery: Run quick_validate.py to check frontmatter, naming conventions, and description rules before delivering the skill. - Use Case: When asked to build a new capability for Manus, such as a BigQuery query helper, follow the six-step process to gather requirements, scaffold the skill, write instructions, validate, and deliver a packaged .skill file. ## Quick Start Create a new skill called data-analyzer by following the skill-creator workflow, starting with the init script and ending with validation.

Frequently Asked Questions about skill-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new skill for Manus?

Run init_skill.py with a hyphen-case skill name to scaffold the directory, then edit the generated SKILL.md frontmatter and body, add any scripts or references, and validate with quick_validate.py before delivery.

What should a SKILL.md description include?

The description must state what the skill does and when to use it, since it is the primary trigger mechanism. Keep it under 1024 characters, avoid angle brackets, and include specific scenarios, file types, or tasks that activate the skill.

When should I split skill content into reference files?

Split content when SKILL.md approaches 500 lines or when the skill covers multiple domains, frameworks, or variants. Keep the core workflow in SKILL.md and link directly to reference files, describing clearly when each should be read.

Why does skill validation fail on the name field?

Validation fails if the name is not hyphen-case, starts or ends with a hyphen, contains consecutive hyphens, or exceeds 64 characters. The name must also match the skill directory name exactly.

What resources can a skill bundle besides SKILL.md?

A skill can include scripts for executable automation, references for documentation loaded on demand, and templates for output assets like boilerplate or fonts. Unused example directories from initialization should be deleted.