byted-milvus

byted-milvus is a skill for Claude Code from bytedance/agentkit-samples. It costs 60 tokens per session (1,050 once invoked), scanned A, original, Apache-2.0.

A management tool for Milvus vector databases on Volcano Engine. It handles both the cloud clusters and the collections and records stored in them.

In plain words
What is it for?
It is for creating, inspecting, scaling, exposing, or deleting Milvus clusters, and for managing collections, records, filters, and vector searches.
Why use it?
It brings cluster administration and vector-data operations into one command-line workflow instead of requiring separate tools.

Skill for Claude Code ✓ vendor

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit It is for creating, inspecting, scaling, exposing, or deleting Milvus clusters, and for managing collections, records, filters, and vector searches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bytedance/agentkit-samples/byted-milvus
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-milvus
Clone the repo
git clone --depth 1 https://github.com/bytedance/agentkit-samples

Made for: Claude Code.

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-milvus

README.md
[![agentmods](https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-milvus.svg)](https://agentmods.dev/skills/bytedance/agentkit-samples/byted-milvus)
Your own site
<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-milvus"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-milvus.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,050 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00060 $0.01050
Opus 5 $0.00030 $0.00525
Sonnet 5 $0.00012 $0.00210
Haiku 4.5 $0.00006 $0.00105

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

Security

Grade A, and why

byted-milvus 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 4d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/api.py, scripts/ark_shim.py, scripts/control_tools.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.

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.

skills/byted-milvus/SKILL.md · 72 lines

How it starts

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

Volcano Engine Milvus

Manage Milvus instances on Volcano Engine — cluster lifecycle and vector data operations.

Quick Start

Use the bundled CLIs (always run via the skill venv):

{baseDir}/venv/bin/python {baseDir}/scripts/control.py <command>
{baseDir}/venv/bin/python {baseDir}/scripts/data.py <command>

If {baseDir}/venv does not exist:

python3 -m venv {baseDir}/venv
{baseDir}/venv/bin/pip install -r {baseDir}/requirements.txt

See CONTROL_PLANE.md and DATA_PLANE.md for workflows and examples.

Low-level control-plane fallback (use only when goal-based commands do not cover the task): {baseDir}/venv/bin/python {baseDir}/scripts/control_tools.py <command>

Available operations

Control Plane (cluster management): Use goal-based workflows to provision, inspect, scale, delete, and expose Milvus instances. → See CONTROL_PLANE.md for goal-based commands and workflows. → See CONTROL_TOOLS.md for low-level control_tools.py fallback commands (use only when CONTROL_PLANE.md does not cover the task).

Data Plane (collections & data): Create/drop collections, insert/upsert/delete data, vector search, scalar query, and get-by-ID. → See DATA_PLANE.md for commands and use cases.

Out of scope

  • Deploying or operating Milvus outside Volcano Engine (self-hosted, other clouds).
  • Deep Milvus performance tuning or schema design beyond basic collection creation and queries.
  • Application-level embedding strategy decisions (chunking, RAG design) unless needed to run the provided data plane commands.

Rules

Common

  • Execution environment: Always use {baseDir}/venv/bin/python to run scripts.
  • Authentication: VOLCENGINE_ACCESS_KEY and VOLCENGINE_SECRET_KEY are required for all control-plane operations. Data-plane commands also require a reachable Milvus --endpoint plus any needed Milvus auth flags. See DATA_PLANE.md.
  • Script usage: Prioritize scripts/control.py and scripts/data.py. Use scripts/control_tools.py only as a last resort when goal-based commands do not cover the task. Do not write ad-hoc Python scripts or use the SDK directly unless existing CLIs cannot satisfy a specific requirement.
  • Language (strict): Always reply in the user's language. Use a deterministic heuristic:
    • If the user's message contains any Chinese characters, reply in Chinese.
    • Otherwise, reply in the user's language as inferred from their message.
    • Keep commands/flags/code in English; only the explanation and prompts should be localized.
    • If the user mixes languages and preference is unclear, ask which language they prefer.

Read the full file on GitHub · 72 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. 4d ago First seen · 72 lines · 0 tokens per session scan A c2d76cd8ce69

Subscribe to this mod's changes

byted-milvus is a skill published in the GitHub repository bytedance/agentkit-samples (449 stars, last pushed 3d ago), licensed Apache-2.0. It adds 60 tokens to every session and 1,050 once invoked, about $0.0003 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.