{skill-name}

Identify Skill units by locating SKILL.md frontmatter and extracting name and description.

Updated Mar 19, 2026
One-click install
npx skills add https://github.com/WayneWalterBerry/MMO --skill skill-name-waynewalterberry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: {skill-name}
Source: https://github.com/WayneWalterBerry/MMO/tree/main/.squad
Command: npx skills add https://github.com/WayneWalterBerry/MMO --skill skill-name-waynewalterberry

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Skill unit metadata standard ensures that any directory containing a YAML frontmatter SKILL.md can be discovered, loaded, and activated with a clearly defined name and description, enabling consistent tooling and discovery across a repository.

Core Features & Use Cases

  • Supports a YAML frontmatter with required fields name and description.
  • The Markdown body after the frontmatter provides operational instructions loaded into context on activation.
  • Optional directories (scripts/, references/, assets/) can be included and consumed on-demand by the skill.

Quick Start

Create a Skill unit by adding a SKILL.md at the root of the directory, including a valid name and description in the frontmatter and a Markdown body for runtime instructions.

Frequently Asked Questions about {skill-name}

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

FAQPage Schema
How do I make a directory discoverable as a Skill unit using YAML frontmatter?

To make a directory discoverable as a Skill unit, add a SKILL.md file at the root with YAML frontmatter defining at least the name and description fields. This metadata standard ensures the unit can be automatically located and loaded for deployment.

What is the required structure for a SKILL.md file to ensure proper runtime loading?

A valid SKILL.md structure requires YAML frontmatter with name and description fields, followed by a Markdown body. The body provides operational instructions that are loaded into context when the skill unit is activated at runtime.

Can I include optional resource directories in my Skill unit for on-demand consumption?

Yes, you can include optional scripts, references, and assets directories within a Skill unit. These resources are consumed on-demand alongside the required SKILL.md file to support the operational instructions defined in the Markdown body.

Does SKILL.md frontmatter discovery work with case-insensitive file naming?

Yes, the discovery process for SKILL.md frontmatter is case-insensitive regarding the filename. This means the tool will locate and extract the name and description metadata regardless of the specific casing used in the file name.

What is the best way to standardize self-contained skill discovery across a repository?

The best way to standardize skill discovery is using the Skill unit metadata standard. By ensuring every directory contains a SKILL.md with YAML frontmatter defining name and description, you enable consistent tooling and discovery across a repository.