byted-volcengine-cloudmonitor

byted-volcengine-cloudmonitor is a skill for Claude Code, Codex from bytedance/agentkit-samples. It costs 29 tokens per session (1,799 once invoked), scanned A, original, Apache-2.0.

A monitoring query tool for Volcengine cloud resources. It retrieves time-based measurements such as CPU, disk usage, or other product metrics for a resource over a chosen period.

In plain words
What is it for?
It helps fetch monitoring time series for cloud instances and other supported products using resource details, metric names, dimensions, and time ranges.
Why use it?
It avoids manually finding the right product, metric, namespace, and resource identifier for each monitoring query. When no period is given, it queries the recent default window described by the tool.

Skill for Claude CodeCodex ✓ vendor

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit It helps fetch monitoring time series for cloud instances and other supported products using resource details, metric names, dimensions, and time ranges.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bytedance/agentkit-samples/byted-volcengine-cloudmonitor
About the project

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.

bytedance/agentkit-samples · 449 stars · on GitHub

Install

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.

Any agent
npx skills add bytedance/agentkit-samples --skill byted-volcengine-cloudmonitor
Clone the repo
git clone --depth 1 https://github.com/bytedance/agentkit-samples

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for byted-volcengine-cloudmonitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-volcengine-cloudmonitor.svg)](https://agentmods.dev/skills/bytedance/agentkit-samples/byted-volcengine-cloudmonitor)
Your own site
<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>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,799 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash c7e9bc3b3bd2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/get_metric_data.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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' \
skills/byted-volcengine-cloudmonitor/SKILL.md · 211 lines

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 格式输出

处理逻辑

监控时序数据查询处理流程:

  1. 根据客户提供的实例信息确定产品
    • 识别产品类型(ECS、云服务器等)
  2. 通过产品确定 namespace
    • 自动映射到对应的产品命名空间
  3. 通过监控指标确定 metric_name/sub_namespace
    • 根据监控指标关键词自动确定
  4. 结合 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

Read the full file on GitHub · 211 lines

Files

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.

Changes

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.

  1. 3d ago First seen · 211 lines · 29 tokens per session scan A c7e9bc3b3bd2

Subscribe to this mod's changes

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.