skills/create-skill/SKILL.md
Scaffolds a new skill in the ai-dev-tools marketplace repository: creates the skill directory and SKILL.md boilerplate directly inside the chosen plugin. Use when the user asks to add a new skill, create a skill, or scaffold a skill in the marketplace.
npx skillsauth add lichens-innovation/skills create-skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scaffold a new skill directly inside the right plugin. The root skills/ folder is auto-generated by CI — do not create files there manually.
Find repo root
Run: git rev-parse --show-toplevel
Store result as <repo-root>.
Gather info via script
Run: node <skill-dir>/scripts/gather-skill-info.cjs
The script prompts the user in the terminal and returns one JSON line:
{ name, description, triggers, plugin }
Create skill directory and SKILL.md
Create <repo-root>/plugins/<plugin>/skills/<name>/SKILL.md with a minimal skeleton — do not impose a structure:
---
name: <name>
description: "<description>. Use when <triggers>."
---
# <Title Case of name>
Add instructions here. Structure freely: step-by-step workflow, reference tables, decision trees — whatever fits the skill.
Optional subdirectories (create only if needed):
- `scripts/` — executable helpers (Node.js, Python, shell)
- `references/` — supporting docs or templates
- `assets/` — static files (images, data)
Validate
skills-ref validate <repo-root>/plugins/<plugin>/skills/<name>
Fix any frontmatter or structure errors before proceeding.
Report to user
plugins/<plugin>/skills/<name>/SKILL.md createdskills/ folder will be updated automatically when changes are merged to main via the sync-skills GitHub Actionplugins/<plugin>/skills/<name>/SKILL.md with instructionsscripts/ or references/ dirs if the skill needs helper filesnpx skills init <name> (Vercel skills CLI)tools
Reference for managing Claude Code plugins and marketplaces: install, update, remove plugins; add, update, remove marketplaces. Use when the user asks how to install a plugin, remove a marketplace, update plugins, or manage their Claude Code plugin setup.
tools
Scaffolds a new subagent in the ai-dev-tools marketplace repository: creates the agent directory, AGENTS.md file, and symlinks it into the chosen plugin. Use when the user asks to add a subagent, create an agent, or scaffold a subagent in the marketplace.
tools
Scaffolds a new plugin in the ai-dev-tools marketplace repository: creates the plugin directory, plugin.json manifest, skills/ folder, and registers it in marketplace.json. Use when the user asks to add a new plugin, create a plugin, or register a plugin in the marketplace.
tools
Scaffolds a new Claude Code plugin marketplace: creates the directory structure, marketplace.json manifest, README, and CLAUDE.md context file. Guides the user through local testing, private repository setup, and auto-update configuration. Use when the user asks to create a marketplace, scaffold a marketplace, or set up a plugin marketplace.