Create a brand new Claude Code skill repository with templates, metadata, and executable install script.
/plugin marketplace add syfyufei/adrian-marketplace/plugin install skill-squared@LLM-Research-MarketplaceUse /skill-squared:create to scaffold a complete skill project from scratch.
skill_name (kebab-case)skill_descriptionauthor_nameauthor_emailgithub_usertarget_dir (defaults to current)version (default 0.1.0)^[a-z0-9]+(-[a-z0-9]+)*$@$TARGET/$skill_name:
.claude-plugin/
.claude/commands/
skills/
handlers/
templates/skill/
templates/command/
config/
docs/
../templates/skill/*.template using env substitution:
export SKILL_NAME=...
export SKILL_DESCRIPTION=...
export AUTHOR_NAME=...
export AUTHOR_EMAIL=...
export GITHUB_USER=...
export VERSION=...
export CREATED_DATE=$(date +%Y-%m-%d)
envsubst < ../templates/skill/plugin.json.template > "$SKILL_PATH/.claude-plugin/plugin.json"
# repeat for marketplace.json, skill.md, README.md, install.sh, CLAUDE.md
.gitignore and LICENSE contents (use MIT license text with current year + author).chmod +x "$SKILL_PATH/install.sh"../install.sh from inside the new skill.force.../templates/skill/ and suggest running /skill-squared:sync to refresh.