A centralized entry point for authenticating, routing, and templating Volcengine ARK model requests within AI agent workflows.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install volcengine-ai-entry-ark
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install volcengine-ai-entry-ark using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
This skill provides a robust gateway for developers integrating Volcengine ARK models into their ecosystem. It acts as a primary router, taking generic model requests and directing them to specialized task-specific skills. By standardizing the initial connection logic, it simplifies the complexity of managing multiple model endpoints and authentication scopes across Openclaw Skills projects.
Designed to reduce setup friction, the skill offers a minimal runnable starting point for chat, summarization, and coding tasks. It ensures that API keys and endpoint IDs are correctly handled before passing data to downstream processors, making it an indispensable tool for building scalable AI applications with Openclaw Skills.
To integrate this skill into your project, ensure you have your Volcengine credentials ready. You can test the connection within Openclaw Skills using the following template:
# Set your API key
export ARK_API_KEY="your_api_key_here"
# Execute a test request
curl https://ark.cn-beijing.volces.com/api/v3/chat/completions \
-H "Authorization: Bearer $ARK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "ep-xxxx",
"messages": [
{"role":"system","content":"You are a helpful assistant."},
{"role":"user","content":"Hello"}
],
"temperature": 0.2
}'
The skill manages specific metadata fields to ensure seamless interoperability with other Openclaw Skills components:
| Parameter | Description | Required |
|---|---|---|
| ARK_API_KEY | The authentication token for Volcengine ARK services. | Yes |
| endpoint_id | The unique identifier for the model endpoint (e.g., ep-xxxx). | Yes |
| task_type | The category of AI task (chat, summarization, etc.). | Yes |
| temperature | Controls the randomness of the model output. | No |
| max_tokens | Limits the length of the generated response. | No |
Loading
A robust AI skill for synthesizing natural speech from text using Volcengine audio services.

A specialized skill for managing Alibaba Cloud RDS Supabase instances and AI configurations through OpenAPI.

A professional-grade intelligence engine for automated multi-source OSINT investigations and structured reporting.

A secure, read-only interface for the Wise API that enables AI agents to query balances, exchange rates, and transaction history without write access.

A structured workflow for generating, refining, and iterating high-quality images using Volcengine AI services and deterministic parameter controls.

An intelligent routing tool that discovers Volcengine AI model capabilities and maps user requirements to the most effective endpoints.








































