Back to Skills
GeneralFreev2.0.0
npx skills add lovstudio/skill-creator-skill

lovstudio:skill-creator

Version

Scaffold new skills for the lovstudio ecosystem. Each skill is an independent GitHub repo at lovstudio/{name}-skill, registered in the central index at lovstudio/skills.

Part of lovstudio skills β€” by lovstudio.ai

Install

git clone https://github.com/lovstudio/skill-creator-skill ~/.claude/skills/lovstudio-skill-creator

What It Does

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  You: "ε°θ£…ζˆ wcx skill"                                    β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                             β”‚
                             β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  init_skill.py wcx                                          β”‚
β”‚                                                             β”‚
β”‚  ~/lovstudio/coding/skills/wcx-skill/                       β”‚
β”‚  β”œβ”€β”€ SKILL.md      ← AI reads this                          β”‚
β”‚  β”œβ”€β”€ README.md     ← Humans read this on GitHub             β”‚
β”‚  β”œβ”€β”€ .gitignore                                             β”‚
β”‚  └── scripts/      ← Python CLI scripts                     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                             β”‚
                             β–Ό
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Implement β†’ gh repo create lovstudio/wcx-skill --push      β”‚
β”‚           β†’ PR into index/skills.yaml + index/README.md     β”‚
β”‚           β†’ symlink to ~/.claude/skills/lovstudio-wcx       β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Quick Start

# Scaffold
python3 ~/.claude/skills/lovstudio-skill-creator/scripts/init_skill.py wcx

# β†’ ~/lovstudio/coding/skills/wcx-skill/
#     β”œβ”€β”€ SKILL.md       (TODO placeholders)
#     β”œβ”€β”€ README.md      (version badge + install stub)
#     β”œβ”€β”€ .gitignore
#     └── scripts/

Then:

  1. Implement scripts/ and fill the TODOs in SKILL.md / README.md
  2. cd ~/lovstudio/coding/skills/wcx-skill && git init && git add -A && git commit -m "feat: initial release"
  3. gh repo create lovstudio/wcx-skill --public --source=. --push
  4. Add an entry to ~/lovstudio/coding/skills/index/skills.yaml + a row to its README.md, then PR
  5. Symlink into ~/.claude/skills/lovstudio-wcx for local use

Architecture

The lovstudio skill ecosystem (2026-04-16 refactor):

LayerLocationPurpose
Central indexlovstudio/skills repo & ~/lovstudio/coding/skills/index/skills.yaml + human README; consumed by agentskills.io & lovstudio.ai/agent
Per-skill repolovstudio/{name}-skill & ~/lovstudio/coding/skills/{name}-skill/All skill code + SKILL.md + README.md + CHANGELOG.md
Local Claude Code~/.claude/skills/lovstudio-{name}/Symlink chain into the per-skill repo

paid: true/false lives only in index/skills.yaml β€” never in SKILL.md.

Differences from Official skill-creator

OfficialLovstudio
README.mdExplicitly forbiddenRequired β€” repos are on GitHub
Frontmattername + description+ license, compatibility, metadata.version, tags
NamingAnylovstudio:{name} (frontmatter) / {name}-skill/ (directory & repo)
ScriptsAny formatStandalone Python CLI with argparse
Distribution.skill packagegit clone each skill repo into ~/.claude/skills/lovstudio-{name}
InteractiveOptionalAskUserQuestion mandatory for generation/conversion skills
Central catalogβ€”skills.yaml + README.md in lovstudio/skills

License

MIT

skill-creatorscaffoldgeneratorlovstudio