Skip to main content

skills-download

Downloads skills from a AgentKit skill space to the local machine. Invoke when the user wants to fetch, download, or retrieve skills from the platform.

跳到安装

来源信息

仓库
Jinhong270/AI-Agent
最近来源活动
2026年6月29日 12:28
检测到的 SKILL.md 语言
英语
星标
2
分支
0

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
skills-download
description
Downloads skills from a AgentKit skill space to the local machine. Invoke when the user wants to fetch, download, or retrieve skills from the platform.
license
Complete terms in LICENSE.txt
# AgentKit Skill Download This skill downloads skills from a specified AgentKit skill space to a local directory. It handles downloading the skill package from TOS and extracting it. ## Usage To download skills, run the following command: ```bash python3 scripts/skills_download.py <download_path> [--skills <skill_name1> <skill_name2> ...] ``` ### Arguments - `<download_path>`: The local directory path where the skills will be saved. - `--skills`: (Optional) A space-separated list of specific skill names to download. If omitted, all skills in the space will be downloaded. ## Requirements - `veadk` python package installed. - Environment variables: - `VOLCENGINE_ACCESS_KEY` - `VOLCENGINE_SECRET_KEY` - `SKILL_SPACE_ID` (required, comma-separated list of skill space IDs) - `AGENTKIT_TOOL_REGION` (optional, defaults to cn-beijing) ## Example Download all skills to `./my-skills`: ```bash python3 scripts/skills_download.py ./my-skills ``` Download only `skill-a` and `skill-b`: ```bash python3 scripts/skills_download.py ./my-skills --skills skill-a skill-b ```
在 GitHub 查看