# Skill Creator

> Scaffold new skills with standard directory structure

- Skill: `majiayu000/skill-creator-47` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/skill-creator-47`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/skill-creator-47/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/skill-creator-47

---


# 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:
```markdown
---
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

