bytedance/agentkit-samples is a collection of examples and tutorials for Volcengine AgentKit, an AI-agent development platform for building, deploying, and operating agent applications. Developers use the samples to learn agent creation, multi-agent collaboration, memory, retrieval, MCP integrations, media generation, customer service, and other workflows. The catalogue skills provide agent workflows based on these examples.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add bytedance/agentkit-samples --skill byted-volc-cdn-managegit clone --depth 1 https://github.com/bytedance/agentkit-samplesWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bytedance/agentkit-samples/byted-volc-cdn-manage)<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-volc-cdn-manage"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-volc-cdn-manage/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-volc-cdn-manage"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-volc-cdn-manage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00044 | $0.02468 |
| Opus 5 | $0.00022 | $0.01234 |
| Sonnet 5 | $0.00009 | $0.00494 |
| Haiku 4.5 | $0.00004 | $0.00247 |
Grade A, and why
byted-volc-cdn-manage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 366 lines — stays where its author put it; the contents beside it link to each section on GitHub.
火山引擎 CLI CDN 管理助手
本 Skill 帮助您通过火山引擎 CLI 管理 CDN 加速域名,包括新增域名、刷新和预热。
📋 功能说明
本 Skill 提供以下功能:
1. 新增域名
- 交互式配置
- 支持多种业务类型(web/download/video)
- 自动应用推荐配置
- 支持中国内地和全球加速
2. 刷新预热
- 刷新任务:清除 CDN 节点上的缓存内容(支持文件刷新和目录刷新)
- 预热任务:主动将源站内容预热到 CDN 节点
📋 智能流程(新增域名)
本 Skill 会自动执行以下流程:
第一阶段:环境检查
- 检查 CLI 是否已安装
- 如果未安装:引导您安装并配置火山引擎 CLI
- 如果已安装:检查 CLI 版本(需 >= 1.0.39)
第二阶段:需求收集
- 检查必填项:加速域名、区域、源站信息、业务类型
- 使用默认值:
- 区域默认:
chinese_mainland(中国内地) - 项目默认:
default
- 区域默认:
- 推荐配置:根据业务类型自动应用推荐配置规则:
- web(网页加速):缓存规则、智能压缩、页面优化
- download(下载加速):缓存规则、分片回源、缓存键、302跟随
- video(视频点播):缓存规则、分片回源、缓存键、302跟随、视频拖拽
- 询问用户:必填项找不到默认值时,引导用户输入
第三阶段:添加域名
- 收集完整信息后,执行
ve cdn AddCdnDomain命令 - 展示执行结果和后续步骤
📋 刷新预热流程
提交预热任务:
- 选择预热操作
- 输入要预热的 URL 列表
- 确认并提交任务
提交刷新任务:
- 选择刷新操作
- 选择刷新类型(文件/目录)
- 输入要刷新的 URL 列表
- 确认并提交任务
🚀 快速开始
前置条件
- 火山引擎 CLI 版本 >= 1.0.39(此版本及以上才支持 CDN 服务)
- 已配置好 AK/SK 和 Region
验证环境
# 检查 CLI 版本
ve version
# 查看当前配置
ve configure list
添加域名
方式一:使用交互式脚本(推荐)
bash scripts/add-cdn-domain.sh
方式二:使用快速脚本(命令行参数)
# 格式: bash scripts/add-domain-quick.sh <域名> <源站> [源站2] [源站3] [权重1] [权重2] [权重3] [业务类型] [服务区域]
# 业务类型: web / download / video
# 服务区域: chinese_mainland (默认) / global
# 示例:添加网页加速域名(中国内地)
bash scripts/add-domain-quick.sh www.example.com 1.1.1.1 "" "" 100 "" "" web chinese_mainland
# 示例:添加网页加速域名(全球)
bash scripts/add-domain-quick.sh www.example.com 1.1.1.1 "" "" 100 "" "" web global
# 示例:添加视频点播域名
bash scripts/add-domain-quick.sh video.example.com 1.1.1.1 "" "" 100 "" "" video
方式三:直接使用命令(基础版)
BODY='{
"Domain": "www.example.com",
"Origin": [
{
"OriginAction": {
"OriginLines": [
{
"Address": "1.1.1.1",
"InstanceType": "ip",
"OriginType": "primary"
}
]
}
}
],
"Project": "default",
"ServiceRegion": "chinese_mainland",
"ServiceType": "download"
}'
ve cdn AddCdnDomain --body "$BODY"
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/examples/example-1-ip-source.sh 715 B runs code
- bin/ve 10350 KB
- references/examples.md 11 KB
- references/faq.md 2.3 KB
- references/install-guide.md 1.9 KB
- references/parameters.md 14 KB
- scripts/add-cdn-domain.sh 15 KB runs code
- scripts/add-domain-quick.sh 3.2 KB runs code
- scripts/cdn-refresh-preload.sh 3.9 KB runs code
- scripts/recommend-config.sh 6.3 KB runs code
- scripts/submit-preload.sh 866 B runs code
- scripts/submit-refresh.sh 1.3 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 366 lines · 44 tokens per session scan A 9634cffe05ca
byted-volc-cdn-manage is a skill published in the GitHub repository bytedance/agentkit-samples (453 stars, last pushed 2d ago), licensed Apache-2.0. It adds 44 tokens to every session and 2,468 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
ensembl-database
Query Ensembl genome database REST API for 250+ species. Gene lookups, sequence retrieval, variant analysis, comparative genomics, orthologs, VEP predictions, for genomic research.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.
aatmf-t10-confidentiality-breach
AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.
sidewinder-rattlesnake
Adversary-emulation profile for SideWinder (G0121 / Rattlesnake / T-APT-04 / Razor Tiger), India's suspected state-sponsored cyber-espionage actor.
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
sn-image-imitate
An image tool that creates new content while following the visual style and layout of a single reference image.