Openclacky skill-add
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.
install
source · Clone the upstream repo
git clone https://github.com/clacky-ai/openclacky
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/clacky-ai/openclacky "$T" && mkdir -p ~/.claude/skills && cp -r "$T/lib/clacky/default_skills/skill-add" ~/.claude/skills/clacky-ai-openclacky-skill-add && rm -rf "$T"
manifest:
lib/clacky/default_skills/skill-add/SKILL.mdsource content
Skill Add — Zip Installer
Installs a skill from a zip URL or a local zip file path using the bundled
install_from_zip.rb script.
How to Install
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]
— a remote<zip_url_or_path>
URL or an absolute/relative local path to ahttps://
file.zip
— optional; the skill's directory name. If omitted, inferred from the filename (e.g.[slug]
→canvas-design-1.2.0.zip
)canvas-design
The script handles everything automatically:
- For URLs: downloads the zip (follows HTTP redirects)
- For local paths: reads the file directly (no download needed)
- Extracts and locates all
files insideSKILL.md - Copies skill directories to
~/.clacky/skills/ - Reports installed skills with their descriptions
Do NOT manually download or unzip — the script handles everything.
Examples
From a remote URL:
/skill-add https://store.clacky.ai/skills/canvas-design-1.2.0.zip
ruby "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.zip
ruby "SKILL_DIR/scripts/install_from_zip.rb" \ "/Users/alice/Downloads/my-skill-1.0.0.zip"
Notes
- Skills install to
by default~/.clacky/skills/ - Local paths may be absolute (
) or use/path/to/skill.zip
(~
)~/Downloads/skill.zip - If the user doesn't provide a URL or path, ask them for the zip source