Agent Skills
› Hmbown/CodeWhale
› skill-installer
skill-installer
GitHub用于管理Codewhale技能的生命周期,包括安装、更新、信任、移除及脚手架生成。支持从GitHub或本地目录导入,提供命令列表并处理权限与安全审查逻辑。
Trigger Scenarios
用户请求安装社区技能
用户需要更新已安装的技能
用户询问可用技能列表
用户希望信任某项技能的脚本执行权限
Install
npx skills add Hmbown/CodeWhale --skill skill-installer -g -y
SKILL.md
Frontmatter
{
"name": "skill-installer",
"description": "Install, update, trust, or inspect Codewhale skills from GitHub or local skill folders. Use when the user asks for available skills or wants a community skill installed."
}
Skill Installer
Use this skill when the user wants to find, install, update, trust, or remove a Codewhale skill.
Commands
- List installed skills:
/skills - Activate a skill:
/skill <name> - Scaffold a new skill:
/skill new - Install from GitHub:
/skill install github:<owner>/<repo> - Update installed skills:
/skill update - Remove a skill:
/skill uninstall <name> - Trust a skill for script/tool use:
/skill trust <name>
Workflow
- Identify the source:
- Existing local folder with
SKILL.md - GitHub repo or registry entry
- User request for a new skill scaffold
- Existing local folder with
- Prefer Codewhale's native
/skillcommands over ad hoc copying. - For GitHub/community skills, inspect the
SKILL.mdbefore recommending trust. Treat scripts and companion files as untrusted until reviewed. - After installing, tell the user to restart the session if the skill does not appear immediately in the available-skills list.
- If a skill conflicts by name with a workspace skill, explain that workspace
skill directories take precedence over global
~/.codewhale/skills, with~/.deepseek/skillsretained as a legacy fallback.
Do not execute community skill scripts unless the user explicitly asks and the skill has been reviewed or trusted.
Version History
-
0fe366b
Current 2026-08-16 09:04
将平台标识从DeepSeek迁移至Codewhale,更新相关CLI命令与配置路径,保留旧版路径作为遗留兼容回退。
- b0e4926 2026-07-24 17:43


