skill-creator

Guide users through creating or updating Claude skills with SKILL.md frontmatter.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/reflecterlabs/skills_and_mcps --skill skill-creator-reflecterlabs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/reflecterlabs/skills_and_mcps/tree/main/skills/anthropic/skill-creator
Command: npx skills add https://github.com/reflecterlabs/skills_and_mcps --skill skill-creator-reflecterlabs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Guides users through creating effective skills and updating existing ones that extend Claude's capabilities with domain knowledge, workflows, and tool integrations.

Core Features & Use Cases

  • Structured skill templates: Enforce a consistent SKILL.md frontmatter and body to ensure discoverability and safe usage.
  • Reusable resource planning: Outline how to organize scripts, references, and assets to keep skills lean and scalable.
  • Progressive disclosure: Use a layered loading approach to minimize context; organize variants and domains with dedicated references.
  • Skill lifecycle: From initialization to packaging and iteration, with steps for validation and deployment.

Quick Start

Run the initialization script to scaffold a new skill: scripts/init_skill.py <skill-name> --path <output-directory>. Then edit SKILL.md, add any needed resources under scripts/, references/, and assets/. Finally, validate and package with scripts/package_skill.py <path-to-skill>.

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I create and package Claude skills with a structured framework?

To create Claude skills, use a structured framework that scaffolds a SKILL.md file, organizes resources like scripts and references, and enforces frontmatter requirements. This guides you from initialization through validation and final packaging.

What is progressive disclosure and how does it apply to skill creation?

Progressive disclosure in skill creation is a layered loading approach that minimizes context usage. It organizes variants and domains with dedicated references, keeping skills lean and scalable while extending Claude's capabilities.

What's the best way to organize scripts, references, and assets for a Claude skill?

The best way to organize skill resources is through reusable resource planning. You place scripts, references, and assets into dedicated directories, ensuring the skill remains lean, scalable, and properly bundled for deployment.

Do I need specific dependencies to scaffold and validate a SKILL.md file?

No specific dependencies are required to scaffold and validate a SKILL.md file. The skill creation framework provides initialization and packaging scripts that handle validation and enforce consistent frontmatter natively.

Can I update existing Claude skills or does the framework only support new skill initialization?

You can update existing Claude skills as well as initialize new ones. The framework supports the entire skill lifecycle, allowing you to iterate on multi-step workflows, add resources, and validate changes before repackaging.