Back to Registry
View Author Profile
Official Verified
Volcano Engine
Skill by andapeng
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/andapeng/volcano-engineOr
name: volcengine description: Configure and use Volcano Engine (Volcengine) models including Doubao (Seed 2.0), GLM, DeepSeek, and Qwen. Use when: (1) Setting up Volcengine API access in OpenClaw, (2) Choosing between LLM and VLM (multimodal) models, (3) Configuring model aliases for easy access, (4) Troubleshooting authentication or connection issues with Volcengine providers.
Volcengine Skill
Configure and use Volcano Engine (Volcengine) models with OpenClaw. This skill covers both general-purpose models and specialized coding models through Volcengine's OpenAI-compatible API endpoints.
Quick Start
1. Get API Key
- Sign up at Volcano Engine Console
- Navigate to Access Key Management
- Create a new API key with appropriate permissions
- Copy the API key (format:
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx,无需添加sk-前缀)
2. Configure OpenClaw
Interactive setup (recommended)
openclaw onboard --auth-choice volcengine-api-key
Follow the prompts to enter your API key.
Manual config (openclaw.json)
Add to your openclaw.json:
{
"models": {
"mode": "merge",
"providers": {
"volcengine": {
"baseUrl": "https://ark.cn-beijing.volces.com/api/v3",
"api": "openai-completions",
"apiKey": "your-api-key-here",
"models": [
{
"id": "doubao-seed-2-0-pro-260215",
"name": "Doubao Seed 2.0 Pro",
"reasoning": false,
"input": ["text", "image", "video"],
"cost": { "input": 0, "output": 0 },
"contextWindow": 262144,
"maxTokens": 131072
},
{
"id": "doubao-seed-2-0-lite-260215",
"name": "Doubao Seed 2.0 Lite",
"reasoning": false,
"input": ["text", "image", "video"],
"cost": { "input": 0, "output": 0 },
"contextWindow": 262144,
"maxTokens": 131072
},
{
"id": "glm-4-7-251222",
"name": "GLM 4.7",
"reasoning": false,
"input": ["text", "image"],
"cost": { "input": 0, "output": 0 },
"contextWindow": 204800,
"maxTokens": 131072
},
{
"id": "doubao-seed-2-0-mini-260215",
"name": "Doubao Seed 2.0 Mini",
"reasoning": false,
"input": ["text", "image", "video"],
"cost": { "input": 0, "output": 0 },
"contextWindow": 262144,
"maxTokens": 131072
},
{
"id": "deepseek-v3-2-251201",
"name": "DeepSeek V3.2",
"reasoning": false,
"input": ["text"],
"cost": { "input": 0, "output": 0 },
"contextWindow": 131072,
"maxTokens": 32768
}
]
}
}
}
}
3. Set Model Aliases (Optional)
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-andapeng-volcano-engine": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.