install-skill
Search and install skills from skills.sh and GitHub repos. Use when users ask to find skills, install skills, download skills, add skills from GitHub, search for skills, browse skills, get a skill, or want new capabilities. Trigger phrases include "install skill", "find skill", "search skills", "add skill", "download skill", "get skill from github", "skills.sh", "browse skills", "what skills are available", "I need a skill for".
DeepseekModel
官方收录技能
质量 优秀 · 90
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=moazbuilds-claudeclaw-skills-install-skill-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name install-skill description Search and install skills from skills.sh and GitHub repos. Use when users ask to find skills, install skills, download skills, add skills from GitHub, search for skills, browse skills, get a skill, or want new capabilities. Trigger phrases include "install skill", "find skill", "search skills", "add skill", "download skill", "get skill from github", "skills.sh", "browse skills", "what skills are available", "I need a skill for". Install Skill Search for skills on skills.sh and install them into the project's skills/ directory. Always project level. Scripts Two scripts are provided in this skill's directory: Search: search.mjs node ${SKILL_DIR} /search.mjs "<query>" Returns JSON array of matching skills: [ { "source" : "owner/repo" , "id" : "skill-name" , "name" : "skill-name" , "installs" : 1234 } ] Install: install.mjs node ${SKILL_DIR} /install.mjs <owner/repo> <skill-name> <project-skills-dir> Downloads all skill files from the GitHub repo into <project-skills-dir>/<skill-name>/ . Returns: { "ok" : true , "skill" : "name" , "source" : "owner/repo" , "path" : "/full/path" , "files" : [ "SKILL.md" , ... ] } Workflow If the user gives a specific repo and skill name, skip to step 3. Search : Run search.mjs with the user's query. Show the top results as a numbered list with name, repo, and install count. Ask which one they want. Install : Run install.mjs with the chosen repo, skill name, and the project's skills/ directory path. Confirm : Show what was installed — skill name, source, files downloaded, and path. Replace ${SKILL_DIR} with the actual path to this skill's directory when running the scripts.
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |