skill-creator-enhanced

Create, update, debug, and package Claude skills with structured workflows.

1|Updated Feb 21, 2026
One-click install
npx skills add https://github.com/kssumin/claude-playground --skill skill-creator-enhanced-kssumin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator-enhanced
Source: https://github.com/kssumin/claude-playground/tree/main/.claude/skills/skill-creator-enhanced
Command: npx skills add https://github.com/kssumin/claude-playground --skill skill-creator-enhanced-kssumin

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

Helps users design and package modular Claude skills by providing a clear, repeatable framework for creating new skills, updating existing ones, and debugging issues. It covers skill structure, YAML frontmatter conventions, workflow patterns, and packaging.

Core Features & Use Cases

  • Guided Skill Structure: Demonstrates the 3-piece pattern (.claude/skills/{skill-name}/, references/, and commands/) and when to split content into frontmatter vs. references.
  • Frontmatter Conventions: Enforces kebab-case naming, required name and description fields, and safe content to enable reliable discovery.
  • Packaging & Workflows: Provides guidelines for branching, resource management, and packaging to produce portable skill bundles.

Quick Start

Run the starter template to create a new skill folder with SKILL.md, references, and scripts, then customize as needed.

Frequently Asked Questions about skill-creator-enhanced

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

FAQPage Schema
How do I create and package Claude skills with a reliable folder layout?

To create and package Claude skills, use a 3-piece workflow pattern consisting of a SKILL.md file, a references folder, and a commands directory to ensure reliable deployment and portable skill bundles.

What YAML frontmatter conventions are required for Claude skill discovery?

Claude skill discovery requires YAML frontmatter with a name field in kebab-case and a description field without angle brackets. Trigger keywords and references must also meet specific quality criteria for reliable validation.

Do I need the yaml dependency to validate skill frontmatter and folder structure?

Yes, the yaml dependency is required to validate frontmatter, check folder layouts, and ensure resource presence, enabling reliable skill creation and debugging without manual parsing errors.

When should I split skill content between SKILL.md and the references folder?

You should split content into references when it exceeds core trigger logic, keeping SKILL.md focused on frontmatter and commands while using the references folder for extended guides, templates, and supporting assets.

What is the best way to debug a Claude skill that fails frontmatter validation?

The best way to debug a failing Claude skill is to validate its frontmatter for kebab-case naming compliance, remove angle brackets from descriptions, and verify the folder layout meets the 3-piece workflow guidelines.

Can I use scripts and assets within the Claude skill packaging workflow?

Yes, you can include scripts and assets within your skill folder. The packaging guidelines support branching and resource management to produce portable bundles containing these components.