Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

volcenginevolcengine 搜索

Agent Skill

volcengine 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,224

周安装

301

GitHub Stars

公开资料未说明

下载量

2,408
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:volcengine(volcengine 搜索)
来源仓库:https://github.com/duanc-chao/volcengine
安装命令:
openclaw skills install volcengine
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install volcengine

简介

导航和部署 Volcengine 云基础设施、集成 AI 模型并为可扩展的自动化应用程序构建智能代理工作流程。

SKILL.md

Skill: Mastering the Volcengine Ecosystem

Objective

To effectively navigate, deploy, and integrate Volcengine's cloud infrastructure and AI capabilities, enabling the construction of scalable applications and the implementation of intelligent agent workflows.

Core Concept

Volcengine is a comprehensive cloud service provider that offers a robust suite of tools ranging from foundational Infrastructure as a Service (IaaS) to advanced AI Platform as a Service (PaaS). Its ecosystem is designed to support the entire lifecycle of modern application development, characterized by high-performance computing resources (ECS, VKE), specialized AI models (Doubao, Seed), and developer-centric frameworks (OpenClaw) that bridge the gap between raw infrastructure and intelligent automation.

Step-by-Step Guide

  1. Establish Infrastructure Foundations

The first step in leveraging Volcengine is setting up the underlying compute and network environment. This involves moving beyond manual console configuration to Infrastructure as Code (IaC) principles for reproducibility. - Compute & Networking: Utilize Elastic Compute Service (ECS) for virtual servers and Virtual Private Cloud (VPC) for network isolation. For containerized applications, the Volcengine Kubernetes Engine (VKE) provides a managed control plane that simplifies cluster operations. - Declarative Setup: Adopt tools like Terraform to define resources (VPCs, subnets, security groups) in configuration files. This ensures that environments can be version-controlled and replicated instantly, avoiding "configuration drift."

  1. Integrate AI & Model Services

Volcengine distinguishes itself with its "Model as a Service" offerings, allowing developers to access state-of-the-art Large Language Models (LLMs) and multimodal capabilities via API. - The Doubao & Seed Families: Access the Doubao series for natural language understanding and code generation, or the Seed series (e.g., Seedance) for high-fidelity image and video generation. - API Consumption: Authenticate using Access Keys and Secret Keys to call these models. The ecosystem supports high-concurrency requests, making it suitable for production-grade AI applications that require low latency and high throughput.

  1. Deploy Intelligent Agents with OpenClaw

A unique capability of the Volcengine ecosystem is the integration with OpenClaw (also known as ArkClaw), an open-source AI agent framework. This allows for the creation of "Skills" that automate complex workflows. - Framework Deployment: OpenClaw can be deployed via cloud images (for stability) or local scripts (for testing). It acts as a middleware that connects LLMs with actionable tools. - Skill Creation: Developers can build custom "Skills"—modular scripts that allow the AI to interact with external systems. For example, a volcengine-rds-mysql skill allows an agent to manage database instances using natural language, effectively turning a chatbot into a database administrator.

  1. Implement Multi-Agent Collaboration

Volcengine's infrastructure supports advanced architectural patterns like Multi-Agent Collaboration. By combining the compute power of VKE with the reasoning capabilities of Doubao, you can orchestrate teams of AI agents. - Orchestration: Use the platform to host agent swarms where specialized agents (e.g., a "Researcher" agent and a "Coder" agent) communicate via structured protocols to solve problems that are too complex for a single model instance.

  1. Manage Operations & Security

Effective use of the platform requires strict adherence to security and cost-management best practices. - Security Groups: Always restrict access to sensitive ports (like the OpenClaw management port 18789) to trusted IP addresses only. - Credential Management: Never hardcode API keys. Use environment variables or secret management services to inject credentials securely at runtime.

Visual Example: The "AI-Enhanced" Deployment Architecture

LayerComponentFunction
User InterfaceOpenClaw / ChatThe entry point where natural language commands are issued.
OrchestrationOpenClaw GatewayParses intent and routes requests to the appropriate "Skill."
IntelligenceDoubao/Seed ModelsProvides the reasoning engine and content generation capabilities.
InfrastructureVKE / ECS / RDSThe underlying compute resources and databases managed by the agents.

Python Code Snippet (SDK Integration)

This script demonstrates how to programmatically interact with Volcengine's Model-as-a-Service (MaaS) to generate content, a foundational step in building AI-driven skills.

from volcengine.maas.v2 import MaasService
from volcengine.maas import MaasException, ChatRole

def interact_with_volcengine(prompt):
    """
    Interacts with the Volcengine Doubao model to process a prompt.
    """
    # 1. Initialize the client with the Beijing region endpoint
    # Note: In production, use environment variables for keys
    maas = MaasService('maas-api.ml-platform-cn-beijing.volces.com', 'cn-beijing')
    maas.set_ak("YOUR_ACCESS_KEY")
    maas.set_sk("YOUR_SECRET_KEY")
    
    try:
        # 2. Construct the request payload
        req = {
            "model": "doubao-seed-code-latest", # Selecting the specific model variant
            "messages": [
                {
                    "role": ChatRole.USER,
                    "content": prompt
                }
            ]
        }
        
        # 3. Execute the API call
        resp = maas.chat(req)
        return resp.choices[0].message.content
        
    except MaasException as e:
        return f"Error communicating with Volcengine: {e}"

# Example Usage: Generating a database query script
result = interact_with_volcengine("Write a SQL query to find the top 5 users by login count.")
print(result)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.63%
按下载量换算2,303

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills