Awesome-omni-skill skill-creator

Create new Claude Code skills with proper structure. Use when building custom skills or automating workflows.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/skill-creator-shunsukehayashi" ~/.claude/skills/diegosouzapw-awesome-omni-skill-skill-creator-e7db7e && rm -rf "$T"
manifest: skills/tools/skill-creator-shunsukehayashi/SKILL.md
source content

Skill Creator

Version: 1.0.0 Purpose: Generate properly structured Claude Code skills


Workflow

Step 1: Gather Requirements

Ask user:

  1. What does this skill do?
  2. When should it activate (triggers)?
  3. What tools does it need?

Step 2: Create Structure

mkdir -p ~/.claude/skills/[skill-name]

Step 3: Generate SKILL.md

Template:

---
name: [kebab-case-name]
description: [What it does]. Use when [triggers].
allowed-tools: [tools]
---

# [Title]

## Workflow

### Step 1: [First step]
...

Step 4: Validate

cat ~/.claude/skills/[name]/SKILL.md

Rules

  • Name: kebab-case only
  • No reserved words: claude, anthropic, mcp
  • Description: action verb + trigger condition