
Skills Download
- 249 installs
- skills.volces.com
Use skills-download for development tasks
About
skills-download: A skill for development. This provides functionality for development workflows.
- skills-download
Skills Download by the numbers
- 249 all-time installs (skills.sh)
- +15 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #1,539 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/skills.volces.com --skill skills-downloadAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 249 |
|---|---|
| Repository | skills.volces.com ↗ |
What it does
Use skills-download for development tasks
Files
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
veadkpython package installed.- Environment variables:
VOLCENGINE_ACCESS_KEYVOLCENGINE_SECRET_KEYSKILL_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-skillsDownload only skill-a and skill-b:
python3 scripts/skills_download.py ./my-skills --skills skill-a skill-bError Handling
- IF the script raises the error
VOLCENGINE_ACCESS_KEY and VOLCENGINE_SECRET_KEY are not set in environment variables., inform the user that they need to provide theVOLCENGINE_ACCESS_KEYandVOLCENGINE_SECRET_KEYenvironment variable. Write it to the environment variable file in the workspace. If the file already exists, append it to the end. Ensure the environment variable format is correct, make the environment variable effective, and retry the task that just failed. - IF the script raises the error
SKILL_SPACE_ID environment variable is not set, inform the user that they need to provide theSKILL_SPACE_IDenvironment variable. Write it to the environment variable file in the workspace. If the file already exists, append it to the end. Ensure the environment variable format is correct, make the environment variable effective