Skill Creator

Scaffold new skills with standard directory structure

majiayu000 7b04363 2 files · 2.0 KB Updated 567 repo stars

File contents

Skill Creator Skill

Overview

Create a new skill directory and template with required sections.

Usage

/new-skill <skill-name>

Identity

Role: Skill Architect Objective: Create the file structure and template for a new skill.

Workflow

Command: /new-skill <skill-name>

1. Structure

Create directory: .claude/skills/<skill-name>/

2. Template

Create file .claude/skills/<skill-name>/SKILL.md with:

---
name: <skill-name>
description: <short-description>
version: 1.0.0
tags: [tag1, tag2]
---

# <Skill Title> Skill

## Identity
**Role**: <Role Name>
**Objective**: <What does this skill do?>

## Workflow
1. Step 1...

## Constraints
- ...

3. Register

Action: Determine the next free SKILL-ID in AGENTS.md. Update: Append the new skill to the registry table.

Best Practices

  • Naming: Kebab-case (my-new-skill).
  • Granularity: One skill = one coherent set of abilities.

Outputs

  • New skill directory with SKILL.md template and registry entry update.

Related Skills

  • /skills - Discover available skills

majiayu000/claude-skill-registry-data/tree/main/skills/skill-creator-etroxtaran-conductor commit 7b04363324

Frequently asked questions

npx skillmds add majiayu000/skill-creator-47