volcengine-skills CLAUDE.md

volcengine-skills CLAUDE.md is an instructions file for coding agents from volcengine/volcengine-skills. It costs 923 tokens per session, scanned A, original, MIT.

Repository instructions for maintaining Volcengine skills, plugins, hooks, generated files, and product-specific code.

In plain words
What is it for?
Use them when adding or changing Volcengine skills, synchronising plugins, declaring command or environment requirements, or handling exact API values.
Why use it?
They help contributors put changes in the correct source directory and keep generated plugins, metadata, and validation rules consistent.

Instructions file

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.

agentmods
npx agentmods add instructions/volcengine/volcengine-skills/claude-md
Clone the repo
git clone --depth 1 https://github.com/volcengine/volcengine-skills

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 volcengine-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/volcengine/volcengine-skills/claude-md.svg)](https://agentmods.dev/instructions/volcengine/volcengine-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/volcengine/volcengine-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/volcengine/volcengine-skills/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 923 This file is loaded in full into every session.
When invoked 923 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00923 $0.00923
Opus 5 $0.00462 $0.00462
Sonnet 5 $0.00185 $0.00185
Haiku 4.5 $0.00092 $0.00092

Measured today against content hash a644c0dddbfa, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

volcengine-skills CLAUDE.md 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 today.

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.

CLAUDE.md · 50 lines

How it starts

The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.

volcengine-skills

本仓库是 Volcengine Team 维护的 skill marketplace,为 AI coding agent 提供火山引擎场景能力。

仓库结构

  • skills/:只保留 core/ 分类。
  • skills/core/:只允许 volcengine-clivolcengine-troubleshootingvolcengine-knowledge-searchvolcengine-find-skills
  • plugins/volcengine-core/:默认核心 plugin,包含 hooks 和上述四个 core skill 的生成副本。
  • plugins/volcengine-<domain>/:按产品域拆分的可选 plugin,也是其 skill 的唯一源码位置。
  • scripts/sync_plugins.py:从 finder catalog 复制 core skill,并生成 plugin manifest 与 marketplace。
  • scripts/validate_codex_plugin_layout.py:校验目录、清单、同步状态和默认安装约束。
  • hooks/:跨 skill 复用的 telemetry hook。

核心 skill 只修改 skills/core/,不要直接修改 plugins/volcengine-core/skills/。可选 skill 则直接修改所属 plugins/volcengine-<domain>/skills/

什么时候使用

  • 操作火山引擎 ECS / VPC / VKE / CLB / RDS / Redis / TOS / DNS / CDN 等资源。
  • 使用 ve、tosutil、veFaaS 或 Volcengine SDK。
  • 处理火山引擎部署、监控、运维、合规、Landing Zone 等场景。
  • 用户消息包含「火山」「火山引擎」或 volcengine
  • 用户需要查找或安装尚未加载的 Volcengine skill。

修改约束

  • 所有 skill 必须以 volcengine- 为前缀;读 env / 调 bin 必须在 metadata.openclaw.requires 声明。
  • 用户补充某个 API 的精确 payload、Action、Version 或服务名时,脚本、skill 正文、reference 和测试示例必须同步使用该精确值。
  • 跨 skill 经验放在“决策发生的 skill”里;工具型 skill 只保留自身能力、参数约束和安全边界。
  • 不要把一次验证里的具体地域、规格、镜像、镜像源候选、清理顺序或临时资源形状写成默认流程,除非它是强依赖约束。
  • 排障 skill 按症状、证据类型和判断分支组织;仅在存在真实依赖时规定顺序。
  • 不得提交账号信息、AK/SK、本地绝对目录、真实资源 ID 或 TRN。
  • 资源 ID 脱敏时保留固定前缀,例如 vpc-<id>clb-<id>;账号或数字 ID 使用 <account-id> 等语义占位符。

新增或移动 skill

  1. 核心 skill 放在 skills/core/volcengine-<name>/;可选 skill 放在 plugins/volcengine-<domain>/skills/volcengine-<name>/
  2. 更新 skills/core/volcengine-find-skills/references/catalog.json 中的 plugin 和 skill 映射。
  3. 同步更新 README.mdREADME_en.md.cursor/rules/volcengine-skills.mdcGEMINI.md 的 skill 清单。
  4. 运行 python3 scripts/sync_plugins.py 复制 core skill 并生成 manifest。
  5. 运行 python3 scripts/validate_codex_plugin_layout.py,确保 core 目录、marketplace 策略和 core 副本一致。
  6. 运行 python3 -m unittest discover -s tests -v,验证同步器的路径与写入边界。

不要手工维护 plugins/volcengine-core/skills/、plugin manifest 或 marketplace 条目;它们由 catalog 和同步脚本生成。可选 plugin 的 skills/ 是源码,必须直接维护。

Read the full file on GitHub · 50 lines

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. today Changed · +1 lines a644c0dddbfa
  2. 3d ago First seen · 49 lines · 923 tokens per session scan A ec3a6763ca9d

Subscribe to this mod's changes

volcengine-skills CLAUDE.md is an instructions file published in the GitHub repository volcengine/volcengine-skills (18 stars, last pushed 2d ago), licensed MIT. It adds 923 tokens to every session, about $0.0046 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-01.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens