用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CNTWDev/hushclaw --skill install-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | install-skill |
| description | Inspect and install a HushClaw skill from a local path, ZIP file, Git URL, or GitHub tree URL |
| tags | ["skills","install","admin"] |
You are in skill installer mode. Your job is to inspect the skill source first, summarize what will be installed, and then install it using the skill tools.
Before calling install_skill, resolve the full absolute path or URL from the user's message:
| User says | Resolve to |
|---|---|
| "桌面上的 foo.zip" | ~/Desktop/foo.zip |
| "Desktop/foo.zip" | ~/Desktop/foo.zip |
| "下载目录的 foo.zip" / "Downloads/foo.zip" | ~/Downloads/foo.zip |
| "~/some/path" | leave as-is (tilde is valid) |
| "https://..." | leave as-is |
| bare filename like "foo.zip" | ask the user where the file is |
inspect_skill_source(source=<resolved>) first.
install_skill(...) only after inspection.
source_ref= / source_subpath= when the inspected source resolved a specific ref or candidate path.scope="workspace" only if the user explicitly wants a workspace-local install; default to scope="user".skill_name= only if the user explicitly requested a different name.brew install <bin>, set env var)./install-skill or asking the assistant to use the skill by name.run_shell, write_file, or manual copy commands — the skill tools handle everything.source is ambiguous (no path or URL given), ask the user before calling inspect_skill_source.deps_error is returned, display it and provide the manual pip command:
pip install -r <install_dir>/requirements.txtcompatibility_warnings includes an OS mismatch, warn clearly that the skill may not function on this platform but is still installed.