Install skills from a zip URL or local zip file path. Use this skill whenever the user wants to install a skill from a zip link or a local file, or uses commands like /skill-add with a URL or file path. Trigger on phrases like: install skill, install from zip, skill from zip, skill from url, add skill from zip, 安装skill, 从zip安装skill, 从本地安装skill.
68
81%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Installs a skill from a zip URL or a local zip file path using the bundled install_from_zip.rb script.
The script path is listed in the Supporting Files above (scripts/install_from_zip.rb) — use the full path directly, no find needed.
The script accepts either a remote URL or a local file path:
ruby "SKILL_DIR/scripts/install_from_zip.rb" <zip_url_or_path> [slug]<zip_url_or_path> — a remote https:// URL or an absolute/relative local path to a .zip file[slug] — optional; the skill's directory name. If omitted, inferred from the filename (e.g. canvas-design-1.2.0.zip → canvas-design)The script handles everything automatically:
SKILL.md files inside~/.clacky/skills/Do NOT manually download or unzip — the script handles everything.
From a remote URL:
/skill-add https://store.clacky.ai/skills/canvas-design-1.2.0.zipruby "SKILL_DIR/scripts/install_from_zip.rb" \
"https://store.clacky.ai/skills/canvas-design-1.2.0.zip" \
"canvas-design"From a local file:
/skill-add /Users/alice/Downloads/my-skill-1.0.0.zipruby "SKILL_DIR/scripts/install_from_zip.rb" \
"/Users/alice/Downloads/my-skill-1.0.0.zip"~/.clacky/skills/ by default/path/to/skill.zip) or use ~ (~/Downloads/skill.zip)4aea278
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.