skill-creator

Create modular Claude Skills with SKILL.md frontmatter and structured resources.

Updated May 14, 2026
One-click install
npx skills add https://github.com/chroniicallydiistracted/LorcanaChamp --skill skill-creator-chroniicallydiistracted
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/chroniicallydiistracted/LorcanaChamp/tree/main/references/lorcana-simulator/.agents/skills/skill-creator
Command: npx skills add https://github.com/chroniicallydiistracted/LorcanaChamp --skill skill-creator-chroniicallydiistracted

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill turns skill-building into a repeatable process so you can create modular Claude Skills with correct structure, discoverable metadata, and reusable resources.

Core Features & Use Cases

  • Skill blueprint guidance: Provides clear instructions for writing SKILL.md frontmatter (name/description) and the body workflow.
  • Resource organization patterns: Helps structure optional scripts/, references/, and assets/ for progressive disclosure.
  • Packaging readiness: Covers validation and packaging expectations so the resulting skill is distributable and maintainable.
  • Use Case: When you need to add a new domain workflow (e.g., “analyze meeting notes and produce an action plan”), follow this Skill to design the SKILL.md and decide what belongs in scripts vs references.

Quick Start

Create a new skill folder, write SKILL.md with valid YAML frontmatter (name and description), then package it into a distributable .skill after updating resources.

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I structure a SKILL.md file for Claude skills?

To structure a SKILL.md file for Claude skills, write valid YAML frontmatter containing the skill name and description, then add the operational workflow instructions in the body. This ensures correct metadata discovery and execution.

What is progressive disclosure in skill packaging?

Progressive disclosure in skill packaging organizes resources into scripts, references, and assets folders for on-demand loading. This approach optimizes context usage by loading specialized domain knowledge only when triggered.

How to create a modular workflow integration for Claude?

You create a modular workflow integration for Claude by designing a skill folder with a root SKILL.md file and optional resource directories. This structures specialized workflows and tool integrations for distributable use.

When do I need to use YAML frontmatter for skill creation?

You need YAML frontmatter for skill creation when building modular Claude Skill units. It defines the required name and description metadata so the skill can be discovered and loaded on-demand.

Does skill packaging require scripts and references folders?

Skill packaging does not require scripts and references folders. These directories are optional organizational patterns used for progressive disclosure, meaning you only include them if your workflow needs operational scripts or domain knowledge.

What is the best way to organize domain knowledge packs for Claude?

The best way to organize domain knowledge packs is to apply progressive disclosure best practices by separating operational instructions in SKILL.md and supporting data in references or assets. This maintains efficient context usage.