skill-creator

Generate SKILL.md templates and resource folders for Codex skills.

6|2|Updated Nov 16, 2025
One-click install
npx skills add https://github.com/EricOo0/stock-trading-platform --skill skill-creator-ericoo0
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-creator
Source: https://github.com/EricOo0/stock-trading-platform/tree/main/.codex/skills/.system/skill-creator
Command: npx skills add https://github.com/EricOo0/stock-trading-platform --skill skill-creator-ericoo0

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides a structured scaffold for building Codex skills by generating a SKILL.md frontmatter template, optional resource folders (scripts, references, assets), and starter guidance. It helps teams standardize skill creation and onboarding for new capabilities.

Core Features & Use Cases

  • Generates a ready SKILL.md frontmatter with name and description and a clear, collapsible body skeleton.
  • Creates optional resource directories (scripts/, references/, assets/) with placeholder content to accelerate packaging and iteration.
  • Includes automated tooling (init_skill.py, package_skill.py, quick_validate.py) to bootstrap, verify, and distribute skills consistently.

Quick Start

Use the Skill Creator to scaffold a new Codex skill, then package it for distribution:

  • Run scripts/init_skill.py <skill-name> --path <output-dir> [--resources scripts,references,assets] [--examples]
  • If desired, run scripts/quick_validate.py <skill-dir> to verify structure
  • Run scripts/package_skill.py <skill-dir> to generate a .skill package

Frequently Asked Questions about skill-creator

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

FAQPage Schema
How do I scaffold a new Codex skill from a template?

To scaffold a new Codex skill, run the init_skill.py script with your desired skill name and output path to generate a SKILL.md frontmatter template and optional resource folders like scripts, references, and assets.

What is the best way to standardize Codex skill creation across a team?

Standardizing Codex skill creation involves using a scaffold generator to produce consistent SKILL.md frontmatter and directory structures, ensuring portability and uniform onboarding for new capabilities across the team.

How do I package a Codex skill for distribution?

To package a Codex skill for distribution, run the package_skill.py script on your skill directory to generate a .skill package after validating its structure with quick_validate.py.

Do I need external dependencies to create and validate Codex skills?

You do not need external dependencies to create and validate Codex skills; the init_skill.py, package_skill.py, and quick_validate.py scripts run using standard Python libraries.

Can I generate optional resource directories when bootstrapping a Codex skill?

Yes, you can generate optional resource directories by passing the --resources flag with scripts, references, or assets arguments to the init_skill.py script during skill scaffolding.