skill-creator

Create and structure Agent Skills packages with SKILL.md frontmatter and validation.

Updated Mar 16, 2026
One-click install
npx skills add https://github.com/javiertelioz/my-personal-marketplace --skill skill-creator-javiertelioz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/javiertelioz/my-personal-marketplace/tree/main/plugins/skill-creator/skills/skill-creator
Command: npx skills add https://github.com/javiertelioz/my-personal-marketplace --skill skill-creator-javiertelioz

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve?

The Skill Creator helps teams design and structure Agent Skills-compatible packages that are discoverable, auditable, and easy to validate, reducing ambiguity and integration risk.

Core Features & Use Cases

  • Creates a spec-aligned skill directory with a concise SKILL.md
  • Moves heavy details into focused references (references/)
  • Suggests when to use scripts for deterministic tasks
  • Validates the finished skill with local checks and optional skills-ref validation
  • Scaffolds eval files to support output-quality and trigger-quality testing

Quick Start

Draft a new skill by choosing a kebab-case name, placing it under plugins/skill-creator/skills/<your-skill>/, and running the validation and eval scaffolding steps.

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 structure Agent Skills packages?

To create and structure Agent Skills packages, draft a kebab-case directory under plugins/skill-creator/skills/ and use the Skill Creator to bootstrap a minimal SKILL.md frontmatter. This scaffolding enforces progressive disclosure and routes heavy details to references.

How do I bootstrap a SKILL.md file with frontmatter for agent skills?

Bootstrapping a SKILL.md file with frontmatter requires generating a minimal spec-aligned header containing name and description. The Skill Creator automates this step to ensure the package is discoverable and auditable.

What is progressive disclosure in skill creation?

Progressive disclosure in skill creation is the practice of keeping the SKILL.md file concise while moving heavy details into focused references. This structure reduces ambiguity and integration risk by routing complex logic to separate files.

How do I validate an Agent Skill package locally?

You validate an Agent Skill package locally by running the built-in validation scaffolding provided by the Skill Creator. This process performs local checks and optional skills-ref validation to ensure the finished skill meets structural requirements.

Do I need to scaffold eval files when creating a new skill?

Scaffolding eval files is an optional but recommended step when creating a new skill. The Skill Creator generates these files to support output-quality and trigger-quality testing for your package.

When should I move skill details into references instead of SKILL.md?

You should move skill details into references instead of SKILL.md when the content is too heavy for the main file. This approach enforces progressive disclosure, keeping the primary trigger description concise and effective.