skills-download

📁 bytedance/agentkit-samples 📅 Today
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/bytedance/agentkit-samples --skill skills-download

Agent 安装分布

amp 1
cline 1
opencode 1
cursor 1
continue 1
kimi-cli 1

Skill 文档

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:

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:

python3 scripts/skills_download.py ./my-skills

Download only skill-a and skill-b:

python3 scripts/skills_download.py ./my-skills --skills skill-a skill-b