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-volcengine-cloudmonitorgit 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-volcengine-cloudmonitor)<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-volcengine-cloudmonitor"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-volcengine-cloudmonitor.svg" alt="Measured on agentmods" height="20"></a>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.00029 | $0.01799 |
| Opus 5 | $0.00015 | $0.00899 |
| Sonnet 5 | $0.00006 | $0.00360 |
| Haiku 4.5 | $0.00003 | $0.00180 |
Grade A, and why
byted-volcengine-cloudmonitor scanned grade A with 1 finding 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 3d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl 'https://cloudmonitor-api.console.volcengine.com/external/api/documents?Action=ListMetricProducts&Version=2018-01-01' \ How it starts
The opening of the file, as written. The whole thing — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.
火山引擎云监控 Skill
这个 Skill 用于查询火山引擎云监控的监控时序数据。
何时使用此 Skill
当用户要求:
- 通过云监控查询产品监控数据的时候
主要功能
1. 监控时序数据查询
- 完全控制所有参数
- 灵活的时间范围查询
- 支持多种监控指标
- 默认查询最近 5 分钟数据
2. 配置与调用方式
- 支持环境变量配置
AK/SK - 支持
.env文件配置 - 支持命令行直接使用
- 支持 Python 代码调用
- 支持 JSON 格式输出
处理逻辑
监控时序数据查询处理流程:
- 根据客户提供的实例信息确定产品
- 识别产品类型(ECS、云服务器等)
- 通过产品确定 namespace
- 自动映射到对应的产品命名空间
- 通过监控指标确定 metric_name/sub_namespace
- 根据监控指标关键词自动确定
- 结合 dimension 查询监控时序数据
- 如果没有指定时间范围,则按照默认五分钟查询
前置要求
需要安装火山引擎 Python SDK:
pip install --upgrade "volcengine-python-sdk>=5.0.21"
配置方式
需要配置火山引擎的 Access Key 和 Secret Key。推荐使用以下三种方式之一:
方式 1:环境变量
export VOLCENGINE_AK="your-ak"
export VOLCENGINE_SK="your-sk"
方式 2:.env 文件
在 ~/.openclaw/workspace/.env 中配置:
VOLCENGINE_AK=your-ak
VOLCENGINE_SK=your-sk
监控参数说明
监控时序数据查询核心参数
- namespace: 产品命名空间(如 VCM_ECS)
- metric_name: 监控指标名称(如 DiskUsageUtilization)
- sub_namespace: 子命名空间(如 Instance)
- dimension_name: 维度名称(如 ResourceID)
- dimension_value: 维度值(如实例 ID)
- start_time: 开始时间戳(可选,默认 5 分钟前)
- end_time: 结束时间戳(可选,默认当前时间)
- duration: 查询时长(分钟,默认 5 分钟)
监控时序数据查询参数表
| 参数 | 简写 | 说明 | 必填 | 默认值 |
|---|---|---|---|---|
--namespace |
-n |
产品命名空间 | 是 | - |
--metric-name |
-m |
监控指标名称 | 是 | - |
--sub-namespace |
-s |
子命名空间 | 是 | - |
--dimension-name |
-d |
维度名称 | 是 | - |
--dimension-value |
-v |
维度值 | 是 | - |
--start-time |
- | 开始时间戳 | 否 | end_time - duration * 60 |
--end-time |
- | 结束时间戳 | 否 | 当前时间 |
--duration |
- | 查询时长(分钟) | 否 | 5 |
--ak |
- | Access Key | 否 | 从配置读取 |
--sk |
- | Secret Key | 否 | 从配置读取 |
--region |
- | 区域 | 否 | cn-beijing |
--json |
- | 以 JSON 格式输出 | 否 | False |
What ships with it
2 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.
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.
- 3d ago First seen · 211 lines · 29 tokens per session scan A c7e9bc3b3bd2
byted-volcengine-cloudmonitor is a skill published in the GitHub repository bytedance/agentkit-samples (449 stars, last pushed 3d ago), licensed Apache-2.0. It adds 29 tokens to every session and 1,799 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
aatmf-t10-confidentiality-breach
AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.
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.
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.