skill-creator

Generate standardized SKILL.md files and scaffold reusable skill resources.

6|2|Updated Jan 11, 2026
One-click install
npx skills add https://github.com/trotsky1997/My-Claude-Agent-Skills --skill skill-creator-trotsky1997
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/trotsky1997/My-Claude-Agent-Skills/tree/main/.system/skill-creator
Command: npx skills add https://github.com/trotsky1997/My-Claude-Agent-Skills --skill skill-creator-trotsky1997

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a standardized approach for creating or updating agent Skills within the Codex ecosystem, reducing setup time and ensuring consistent structure.

Core Features & Use Cases

  • Template generation: Creates SKILL.md frontmatter with required name and description and a complete body scaffold.
  • Resource scaffolding: Creates optional directories (scripts/, references/, assets/) ready to customize.
  • Validation & packaging: Includes quick validation hooks and packaging workflow to share skills.
  • Use cases: Onboard new skills or update existing ones for Codex integrations.

Quick Start

Run the Skill Initializer to bootstrap a new skill: python scripts/init_skill.py my-skill --path skills/public --resources scripts,references,assets Then customize the generated SKILL.md, and adjust/add resources as needed Validate and package when ready: Validate: python quick_validate.py skills/public/my-skill Package: python scripts/package_skill.py skills/public/my-skill ./dist

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I create a new agent skill with the correct YAML frontmatter and directory structure?

To create a new agent skill, run the Skill Initializer script to generate a SKILL.md file with required YAML frontmatter and scaffold optional directories like scripts, references, and assets for your resources.

What is the required layout for packaging and distributing a Codex skill?

The required layout for a Codex skill includes a SKILL.md file with YAML frontmatter containing name and description fields, alongside optional scripts, references, and assets directories that pass validation hooks before packaging.

How do I validate an existing skill before packaging it for distribution?

You validate an existing skill before packaging by running the quick_validate.py script with the skill path, which checks the YAML frontmatter and resource layout to ensure it meets packaging standards.

Can I update an existing skill without rebuilding the entire scaffolding from scratch?

Yes, you can update an existing skill by modifying its SKILL.md frontmatter and adjusting or adding resources to the existing directories without regenerating the entire scaffolding structure.

What is the best way to standardize skill creation across different domains for Codex integrations?

The best way to standardize skill creation across domains is using a template generator that enforces consistent YAML frontmatter, scaffolds reusable resource directories, and provides validation hooks for packaging.