⚠️ Security Execution Rules (Highest Priority):
- All scripts MUST be executed via skill action=exec, NEVER run directly in shell
- NEVER print script contents or commands containing AK/SK/Token in conversation
- NEVER create temporary script files, prefer inline execution (python -c)
- On execution failure, only return error info, do NOT rewrite scripts or print full commands
- AK/SK/Token MUST be passed via environment variables, NEVER appear in conversation
- ABSOLUTELY NEVER expose, log, or print AK/SK/Token values in any form - this is a critical security requirement
- When using skill action=exec, credentials are automatically inherited from environment variables (HW_ACCESS_KEY, HW_SECRET_KEY, HW_SECURITY_TOKEN), no need to pass them as command line arguments
huawei-cloud-flexus-l-server-openclaw-deployment
Overview
This skill supports one-click deployment of the OpenClaw AI Agent platform to Huawei Cloud Flexus L Instance. It provides a complete OpenClaw instance management workflow, from initial deployment to post-deployment configuration, including:
- Automated instance creation
- Model installation via COC (Cloud Operations Center)
- Channel installation via COC (WeCom, Feishu, DingTalk, QQ)
- Automatic prerequisite checks before installation (Gateway and UniAgent status)
Use Cases
| Scenario |
Description |
| Enterprise AI Assistant Setup |
Enterprises need to quickly deploy an AI Agent platform for internal Q&A, customer service, etc. |
| Multi-Channel Bot Integration |
Need to integrate multiple messaging channels (WeCom, Feishu, DingTalk) into a unified AI assistant |
| Quick LLM Integration |
Existing OpenClaw instance needs to quickly switch or add different LLMs (DeepSeek, Qwen, etc.) |
| Automated Operations Deployment |
Need to automatically batch deploy OpenClaw instances to multiple regions via scripts |
Typical Use Cases
User may say:
- "I want to install OpenClaw on a Flexus L instance"
- "I want to configure DeepSeek model on my deployed OpenClaw"
- "Help me deploy OpenClaw with Feishu channel configured"
Prerequisites
Account Requirements
- Huawei Cloud AK/SK credentials with the following permissions:
- Create Flexus L Instances
- Access COC (Cloud Operations Center) services
Credential Acquisition Methods:
This skill supports obtaining Huawei Cloud credentials through the following methods (in order of priority from high to low):
Credential Types:
- Long-term AK/SK: Permanent credentials, no security_token required
- Temporary AK/SK: Temporary credentials with limited validity period, security_token required
Environment Variables (Default) (highest priority)
HW_ACCESS_KEY: Huawei Cloud Access Key AK
HW_SECRET_KEY: Huawei Cloud Access Key SK
HW_SECURITY_TOKEN: Security token (optional, only required for temporary credentials)
User-specified Configuration File or Other Environment Variables (used when default environment variables are not available)
- Configuration file path or other environment variables specified by user during interaction
Interactive Input (when neither of the above methods is provided)
- The program will prompt the user to enter AK/SK and other credential information
Important Notes:
- Long-term AK/SK: Permanent credentials that never expire, no security_token needed
- Temporary AK/SK: Obtained through IAM interface with limited validity period, must provide security_token
Architecture Diagram
This skill is built on multiple Huawei Cloud services, involving the following cloud services and components:
User/Agent ──────▶│ Flexus L Instance │──────▶│ OpenClaw App │──────▶│ Model Config │ ──────▶│ Channel Config │
(Skill caller) (Target Host) (AI Agent Platform) (API_BASE/KEY) (WeCom/Feishu/DingTalk/QQ)
Component Description:
- User/Agent: Skill caller that triggers OpenClaw deployment operations via natural language or API
- Flexus L Instance: Huawei Cloud Elastic Cloud Server, serving as the target host for OpenClaw deployment
- OpenClaw App: AI Agent collaboration platform running on the Flexus L instance
- Model Config: Configuration for external LLM services (API_BASE, API_KEY, MODEL_IDS, PROVIDER)
- Channel Config: Messaging channel configuration (WeCom, Feishu, DingTalk, QQ)
How to Use This Skill
Command Execution and Instructions
1. Deploy OpenClaw Instance (Create Huawei Cloud Flexus L Instance and deploy OpenClaw AI Agent platform) - Two Command Modes:
Command 1: Interactive Mode (The program will prompt for required parameters step by step)
python scripts/caller.py deploy
Command 2: Non-Interactive Mode
# Using long-term AK/SK (no security-token needed)
python scripts/caller.py deploy --name openclaw-{timestamp} --region cn-north-4 --ak <AK> --sk <SK> --non-interactive
# Using temporary AK/SK (security-token required)
python scripts/caller.py deploy --name openclaw-{timestamp} --region cn-north-4 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Parameter Description:
| Parameter |
Description |
Required (Non-interactive) |
Default (Interactive) |
Example |
| --name |
OpenClaw instance name |
No |
openclaw-{timestamp} |
--name openclaw-1780689482000 |
| --region |
Target region ID where L instance (OpenClaw deployed server) is located |
No |
cn-north-4 |
--region cn-north-4 |
| --ak |
Huawei Cloud Access Key AK (supports both long-term and temporary) |
Yes |
Prompted |
--ak AXXX... |
| --sk |
Huawei Cloud Access Key SK (supports both long-term and temporary) |
Yes |
Prompted |
--sk SXXX... |
| --security-token |
Security token for temporary credentials (optional, only required for temporary AK/SK) |
No |
Prompted |
--security-token XXXX... |
| --non-interactive |
Enable non-interactive mode |
No |
false |
--non-interactive |
Note: OpenClaw only supports deployment in the following regions before June 2026 (before deploying to other regions, you can remind users to check the official website for the latest supported regions): China North-Beijing-4 (cn-north-4), China East-Shanghai-1 (cn-east-3), China South-Guangzhou (cn-south-1), China Southwest-Guiyang-1 (cn-southwest-2)
Command Examples:
# Example 1: Deploy with default configuration (interactive, will prompt for required parameters)
python scripts/caller.py deploy
# Example 2: Non-interactive mode deployment (suitable for automation scripts, creates directly without user confirmation)
python scripts/caller.py deploy --name openclaw-1780689482000 --region cn-north-4 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Default Configuration for Huawei Cloud Flexus L Instance when Deploying OpenClaw Instance
| Configuration Item |
Default Value |
Description |
| Image |
OpenClaw 2026.1.30 |
OpenClaw application image version |
| Plan Spec |
hf.small.1.linux or ahf.small.1.linux |
hf.small.1.linux for Beijing/Shanghai/Guangzhou, ahf.small.1.linux for Guiyang |
| Charging Mode |
Monthly subscription |
prePaid mode |
| EVS Disk |
50GB |
System disk size |
| CBR Backup |
50GB |
Cloud backup capacity |
| HSS Host Security |
Enabled |
Host security service |
Execution Result and Status Code Description:
- On success, returns order ID and instance ID (resource ID, used for subsequent model and channel installation)
- Instance creation takes approximately 2 minutes, progress can be viewed in Huawei Cloud console. During instance creation, the installation of models and channels will not be affected, and subsequent commands can be executed directly.
Status Code Description: Status codes "200", "201", "202" all indicate successful instance creation.
2. Configure (Install) Large Model Parameters on L Instance with OpenClaw Installed - Two Command Modes (Requires deploying OpenClaw instance first)
Command 1: Interactive Mode (The program will prompt for resource ID, region, model and other parameters step by step)
python scripts/caller.py maas
Command 2: Non-Interactive Mode
# Using long-term AK/SK (no security-token needed)
python scripts/caller.py maas --resource-id <Instance Resource ID> --region-id cn-north-4 --model-params '<Model configuration parameters>' --ak <AK> --sk <SK> --non-interactive
# Using temporary AK/SK (security-token required)
python scripts/caller.py maas --resource-id <Instance Resource ID> --region-id cn-north-4 --model-params '<Model configuration parameters>' --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Parameter Description:
| Parameter |
Description |
Required (Non-interactive) |
Default (Interactive) |
Example |
| --resource-id |
L instance resource ID (instance ID returned after deploying OpenClaw instance) |
Yes |
Prompted |
--resource-id 0e1234567890abcdef |
| --region-id |
Region ID where L instance is located, consistent with the region selected when deploying the instance |
Yes |
Prompted |
--region-id cn-north-4 |
| --model-params |
Model configuration parameters (JSON format), note: parameters must use valid JSON format, keys and values must be wrapped in double quotes |
Yes |
Prompted |
--model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2"]}' |
| --ak |
Huawei Cloud Access Key AK (supports both long-term and temporary) |
Yes |
Prompted |
--ak AXXX... |
| --sk |
Huawei Cloud Access Key SK (supports both long-term and temporary) |
Yes |
Prompted |
--sk SXXX... |
| --security-token |
Security token for temporary credentials (optional, only required for temporary AK/SK) |
No |
Prompted |
--security-token XXXX... |
| --timeout |
Script execution timeout (seconds) |
No |
600 |
--timeout 900 |
| --non-interactive |
Enable non-interactive mode |
No |
false |
--non-interactive |
model-params Field Description:
| Field |
Description |
Required |
| provider |
Model provider name (e.g., "huawei") or API address (e.g., "https://api.openai.com/v1") |
Yes |
| api_key |
Model API key |
Yes |
| model_ids |
Array of model IDs to install (non-empty), e.g., ["gpt-4", "gpt-3.5-turbo"] |
Yes |
Command Examples:
# Example 1: Install Huawei Cloud MaaS platform models with long-term AK/SK
python scripts/caller.py maas \
--resource-id 0e1234567890abcdef \
--region-id cn-north-4 \
--model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2","qwen3-235b-a22b"]}' \
--ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
# Example 2: Install Huawei Cloud MaaS platform models with temporary AK/SK
python scripts/caller.py maas \
--resource-id 0e1234567890abcdef \
--region-id cn-north-4 \
--model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2","qwen3-235b-a22b"]}' \
--ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
# Example 3: Install custom OpenAI compatible models with long-term AK/SK
python scripts/caller.py maas \
--resource-id 0e1234567890abcdef \
--region-id cn-north-4 \
--model-params '{"provider":"https://api.openai.com/v1","api_key":"your_openai_key","model_ids":["gpt-4"]}' \
--ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Status Code Description: Status codes "200", "201", "202" all indicate successful model installation.
3. channel - Configure (Install) Channels on L Instance with OpenClaw Installed - Two Command Modes (Requires deploying OpenClaw instance first)
Command 1: Interactive Mode
python scripts/caller.py channel
Command 2: Non-Interactive Mode
# Using long-term AK/SK (no security-token needed)
python scripts/caller.py channel --resource-id <Instance Resource ID> --region-id cn-north-4 --channel-list '<JSON array>' --ak <AK> --sk <SK> --non-interactive
# Using temporary AK/SK (security-token required)
python scripts/caller.py channel --resource-id <Instance Resource ID> --region-id cn-north-4 --channel-list '<JSON array>' --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Parameter Description:
| Parameter |
Description |
Required (Non-interactive) |
Default (Interactive) |
Example |
| --resource-id |
L instance resource ID (instance ID returned after deploying OpenClaw instance) |
Yes |
Prompted |
--resource-id 0e1234567890abcdef |
| --region-id |
Region ID where instance is located, consistent with the region selected when deploying the instance |
Yes |
Prompted |
--region-id cn-north-4 |
| --channel-list |
Channel configuration (JSON array format) |
Yes |
Prompted |
'[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' |
| --ak |
Huawei Cloud Access Key AK (supports both long-term and temporary) |
Yes |
Prompted |
--ak AXXX... |
| --sk |
Huawei Cloud Access Key SK (supports both long-term and temporary) |
Yes |
Prompted |
--sk SXXX... |
| --security-token |
Security token for temporary credentials (optional, only required for temporary AK/SK) |
No |
Prompted |
--security-token XXXX... |
| --timeout |
Script execution timeout (seconds) |
No |
600 |
--timeout 900 |
| --non-interactive |
Enable non-interactive mode |
No |
false |
--non-interactive |
channel JSON Object Field Description:
| Field |
Description |
Required |
| channel |
Channel type: wecom (WeCom), feishu (Feishu), dingtalk (DingTalk), qqbot (QQ) |
Yes |
| id |
Bot ID/APP ID/Client ID |
Yes |
| secret |
Bot secret/APP secret/Client secret |
Yes |
Command Examples:
# Example 1: Install multiple channels (WeCom + Feishu) using long-term AK/SK
python scripts/caller.py channel \
--resource-id 0e1234567890abcdef \
--region-id cn-north-4 \
--channel-list '[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' \
--ak <AK> --sk <SK> --non-interactive
# Example 2: Install multiple channels (WeCom + Feishu) using temporary AK/SK
python scripts/caller.py channel \
--resource-id 0e1234567890abcdef \
--region-id cn-north-4 \
--channel-list '[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' \
--ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
Status Code Description: Status codes "200", "201", "202" all indicate successful channel installation.
Web UI Access
Web UI access needs to be manually enabled in Huawei Cloud console, operation steps:
- Log in to Huawei Cloud Flexus Application Server L Instance Console
- Find your OpenClaw instance in the instance list
- Click the instance name to enter the details page
- In the left menu of the details page, find and click "Application Details" option, then enter the "Basic Configuration" tab
- In the "Basic Configuration" tab, find the "Access OpenClaw Web Interface" option at the top left, click the "Enable" button. You will then get the URL address to access the OpenClaw Web interface.
Code Structure, File Responsibilities and Key Functions
This skill uses a modular architecture for easier maintenance:
scripts/
├── caller.py # Main entry - command line argument parsing, parameter parsing, command routing
├── lib.py # Core library - L instance creation, COC script management
├── utils.py # Utility functions - input prompts, credential configuration, region information
├── deploy.py # Deployment module - `do_deploy_openclaw()` function for OpenClaw instance creation
├── models.py # Model module - remote COC large model installation (with prerequisite checks), related functions `do_install_maas()`, `_check_prerequisites()`
├── channels.py # Channel module - remote COC channel installation (with prerequisite checks), related functions `do_install_channel()`, `_check_prerequisites()`
├── gateway.py # Gateway module - gateway status query (only for prerequisite checks), related functions `do_check_gateway()`
└── uniagent.py # UniAgent module - UniAgent status query (only for prerequisite checks), `do_check_uniagent()`
Parameter Confirmation
Deployment Parameters
- --name: OpenClaw instance name, optional parameter, default is
openclaw-{timestamp}
- --region: Target region ID, optional parameter, default is
cn-north-4
- --ak: Huawei Cloud temporary Access Key AK, required parameter
- --sk: Huawei Cloud temporary Access Key SK, required parameter
- --security-token: Security token for temporary credentials (required), required parameter
- --non-interactive: Enable non-interactive mode, optional parameter
Model Configuration Parameters
- --resource-id: L instance resource ID (instance ID returned after deploying OpenClaw instance), required parameter
- --region-id: Region ID where L instance is located, consistent with the region selected when deploying the instance, required parameter
- --model-params: Model configuration parameters (JSON format), required parameter
provider: Model provider name (e.g., "huawei") or API address (e.g., "https://api.openai.com/v1")
api_key: Model API key
model_ids: Array of model IDs to install (non-empty)
- --ak: Huawei Cloud temporary Access Key AK, required parameter
- --sk: Huawei Cloud temporary Access Key SK, required parameter
- --security-token: Security token for temporary credentials (required), required parameter
- --timeout: Script execution timeout (seconds), optional parameter, default 600 seconds
Channel Configuration Parameters
- --resource-id: L instance resource ID (instance ID returned after deploying OpenClaw instance), required parameter
- --region-id: Region ID where L instance is located, consistent with the region selected when deploying the instance, required parameter
- --channel-list: Channel configuration (JSON array format), optional parameter
channel: Channel type: wecom (WeCom), feishu (Feishu), dingtalk (DingTalk), qqbot (QQ), required
id: Bot ID, required
secret: Bot secret, required
- --ak: Huawei Cloud temporary Access Key AK, required parameter
- --sk: Huawei Cloud temporary Access Key SK, required parameter
- --security-token: Security token for temporary credentials (required), required parameter
- --timeout: Script execution timeout (seconds), optional parameter, default 600 seconds
Environment Variable Support
All parameters can also be provided through environment variables:
HW_ACCESS_KEY: Huawei Cloud AK (corresponds to --ak parameter)
HW_SECRET_KEY: Huawei Cloud SK (corresponds to --sk parameter)
HW_SECURITY_TOKEN: Temporary credential security token (corresponds to --security-token parameter)
HW_PROJECT_ID: Huawei Cloud Project ID (optional)
Common Issues Quick Solutions
| Issue |
Solution |
| Instance creation failed |
Check AK/SK permissions, ensure permission to create Flexus L instances |
| Model installation failed |
Check if UniAgent status is ONLINE, if API Key is correct, if model-params parameter strictly uses JSON format |
| Channel installation failed |
Check if bot parameters are correct, if bot is created on platform, if channel-list parameter strictly uses JSON array format |
1---2name: huawei-cloud-flexus-l-server-openclaw-deployment3description: Create Huawei Cloud Flexus L Instance (Lightweight Server), deploy OpenClaw application platform on it, and support installation and configuration of models and channels for deployed OpenClaw instances. Web UI access needs to be manually enabled in Huawei Cloud console. Trigger words: "Deploy OpenClaw", "Deploy Flexus L Instance", "Deploy Huawei Cloud Lightweight Server", "Model setting", "Channel Setting", "部署OpenClaw", "部署Flexus L实例", "部署华为云轻量服务器", "设置模型", "设置通道"4---5
6⚠️ Security Execution Rules (Highest Priority):
7 1. All scripts MUST be executed via skill action=exec, NEVER run directly in shell
8 2. NEVER print script contents or commands containing AK/SK/Token in conversation
9 3. NEVER create temporary script files, prefer inline execution (python -c)
10 4. On execution failure, only return error info, do NOT rewrite scripts or print full commands
11 5. AK/SK/Token MUST be passed via environment variables, NEVER appear in conversation
12 6. ABSOLUTELY NEVER expose, log, or print AK/SK/Token values in any form - this is a critical security requirement
13 7. When using skill action=exec, credentials are automatically inherited from environment variables (HW_ACCESS_KEY, HW_SECRET_KEY, HW_SECURITY_TOKEN), no need to pass them as command line arguments
14
15# huawei-cloud-flexus-l-server-openclaw-deployment
16## Overview
17
18This skill supports one-click deployment of the OpenClaw AI Agent platform to Huawei Cloud Flexus L Instance. It provides a complete OpenClaw instance management workflow, from initial deployment to post-deployment configuration, including:
19- Automated instance creation
20- Model installation via COC (Cloud Operations Center)
21- Channel installation via COC (WeCom, Feishu, DingTalk, QQ)
22- Automatic prerequisite checks before installation (Gateway and UniAgent status)
23
24### Use Cases
25
26| Scenario | Description |
27|----------|-------------|
28| **Enterprise AI Assistant Setup** | Enterprises need to quickly deploy an AI Agent platform for internal Q&A, customer service, etc. |
29| **Multi-Channel Bot Integration** | Need to integrate multiple messaging channels (WeCom, Feishu, DingTalk) into a unified AI assistant |
30| **Quick LLM Integration** | Existing OpenClaw instance needs to quickly switch or add different LLMs (DeepSeek, Qwen, etc.) |
31| **Automated Operations Deployment** | Need to automatically batch deploy OpenClaw instances to multiple regions via scripts |
32
33### Typical Use Cases
34
35User may say:
361. **"I want to install OpenClaw on a Flexus L instance"**
372. **"I want to configure DeepSeek model on my deployed OpenClaw"**
383. **"Help me deploy OpenClaw with Feishu channel configured"**
39
40## Prerequisites
41
42### Account Requirements
43
44- Huawei Cloud AK/SK credentials with the following permissions:
45 - Create Flexus L Instances
46 - Access COC (Cloud Operations Center) services
47
48**Credential Acquisition Methods:**
49
50This skill supports obtaining Huawei Cloud credentials through the following methods (in order of priority from high to low):
51
52**Credential Types:**
53- **Long-term AK/SK**: Permanent credentials, no security_token required
54- **Temporary AK/SK**: Temporary credentials with limited validity period, security_token required
55
561. **Environment Variables (Default)** (highest priority)
57 - `HW_ACCESS_KEY`: Huawei Cloud Access Key AK
58 - `HW_SECRET_KEY`: Huawei Cloud Access Key SK
59 - `HW_SECURITY_TOKEN`: Security token (optional, only required for temporary credentials)
60
612. **User-specified Configuration File or Other Environment Variables** (used when default environment variables are not available)
62 - Configuration file path or other environment variables specified by user during interaction
63
643. **Interactive Input** (when neither of the above methods is provided)
65 - The program will prompt the user to enter AK/SK and other credential information
66
67
68
69**Important Notes:**
70- Long-term AK/SK: Permanent credentials that never expire, no security_token needed
71- Temporary AK/SK: Obtained through IAM interface with limited validity period, must provide security_token
72
73### Architecture Diagram
74
75This skill is built on multiple Huawei Cloud services, involving the following cloud services and components:
76
77```
78User/Agent ──────▶│ Flexus L Instance │──────▶│ OpenClaw App │──────▶│ Model Config │ ──────▶│ Channel Config │
79(Skill caller) (Target Host) (AI Agent Platform) (API_BASE/KEY) (WeCom/Feishu/DingTalk/QQ)
80```
81
82**Component Description**:
83- **User/Agent**: Skill caller that triggers OpenClaw deployment operations via natural language or API
84- **Flexus L Instance**: Huawei Cloud Elastic Cloud Server, serving as the target host for OpenClaw deployment
85- **OpenClaw App**: AI Agent collaboration platform running on the Flexus L instance
86- **Model Config**: Configuration for external LLM services (API_BASE, API_KEY, MODEL_IDS, PROVIDER)
87- **Channel Config**: Messaging channel configuration (WeCom, Feishu, DingTalk, QQ)
88
89---
90
91## How to Use This Skill
92
93### Command Execution and Instructions
94
95#### 1. Deploy OpenClaw Instance (Create Huawei Cloud Flexus L Instance and deploy OpenClaw AI Agent platform) - Two Command Modes:
96
97**Command 1: Interactive Mode** (The program will prompt for required parameters step by step)
98```bash
99python scripts/caller.py deploy
100```
101
102**Command 2: Non-Interactive Mode**
103```bash
104# Using long-term AK/SK (no security-token needed)
105python scripts/caller.py deploy --name openclaw-{timestamp} --region cn-north-4 --ak <AK> --sk <SK> --non-interactive
106
107# Using temporary AK/SK (security-token required)
108python scripts/caller.py deploy --name openclaw-{timestamp} --region cn-north-4 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
109```
110
111**Parameter Description**:
112| Parameter | Description | Required (Non-interactive) | Default (Interactive) | Example |
113|-----------|-------------|----------------------------|-----------------------|---------|
114| --name | OpenClaw instance name | No | openclaw-{timestamp} | `--name openclaw-1780689482000` |
115| --region | Target region ID where L instance (OpenClaw deployed server) is located | No | cn-north-4 | `--region cn-north-4` |
116| --ak | Huawei Cloud Access Key AK (supports both long-term and temporary) | Yes | Prompted | `--ak AXXX...` |
117| --sk | Huawei Cloud Access Key SK (supports both long-term and temporary) | Yes | Prompted | `--sk SXXX...` |
118| --security-token | Security token for temporary credentials (optional, only required for temporary AK/SK) | No | Prompted | `--security-token XXXX...` |
119| --non-interactive | Enable non-interactive mode | No | false | `--non-interactive` |
120
121Note: OpenClaw only supports deployment in the following regions before June 2026 (before deploying to other regions, you can remind users to check the official website for the latest supported regions): China North-Beijing-4 (cn-north-4), China East-Shanghai-1 (cn-east-3), China South-Guangzhou (cn-south-1), China Southwest-Guiyang-1 (cn-southwest-2)
122
123**Command Examples**:
124```bash
125# Example 1: Deploy with default configuration (interactive, will prompt for required parameters)
126python scripts/caller.py deploy
127
128# Example 2: Non-interactive mode deployment (suitable for automation scripts, creates directly without user confirmation)
129python scripts/caller.py deploy --name openclaw-1780689482000 --region cn-north-4 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
130```
131
132**Default Configuration for Huawei Cloud Flexus L Instance when Deploying OpenClaw Instance**
133| Configuration Item | Default Value | Description |
134|--------------------|---------------|-------------|
135| **Image** | OpenClaw 2026.1.30 | OpenClaw application image version |
136| **Plan Spec** | hf.small.1.linux or ahf.small.1.linux | hf.small.1.linux for Beijing/Shanghai/Guangzhou, ahf.small.1.linux for Guiyang |
137| **Charging Mode** | Monthly subscription | prePaid mode |
138| **EVS Disk** | 50GB | System disk size |
139| **CBR Backup** | 50GB | Cloud backup capacity |
140| **HSS Host Security** | Enabled | Host security service |
141
142**Execution Result and Status Code Description**:
143- On success, returns order ID and instance ID (resource ID, used for subsequent model and channel installation)
144- Instance creation takes approximately 2 minutes, progress can be viewed in Huawei Cloud console. During instance creation, the installation of models and channels will not be affected, and subsequent commands can be executed directly.
145*Status Code Description*: Status codes "200", "201", "202" all indicate successful instance creation.
146---
147
148
149#### 2. Configure (Install) Large Model Parameters on L Instance with OpenClaw Installed - Two Command Modes (Requires deploying OpenClaw instance first)
150
151**Command 1: Interactive Mode** (The program will prompt for resource ID, region, model and other parameters step by step)
152```bash
153python scripts/caller.py maas
154```
155**Command 2: Non-Interactive Mode**
156```bash
157# Using long-term AK/SK (no security-token needed)
158python scripts/caller.py maas --resource-id <Instance Resource ID> --region-id cn-north-4 --model-params '<Model configuration parameters>' --ak <AK> --sk <SK> --non-interactive
159
160# Using temporary AK/SK (security-token required)
161python scripts/caller.py maas --resource-id <Instance Resource ID> --region-id cn-north-4 --model-params '<Model configuration parameters>' --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
162```
163**Parameter Description**:
164| Parameter | Description | Required (Non-interactive) | Default (Interactive) | Example |
165|-----------|-------------|----------------------------|-----------------------|---------|
166| --resource-id | L instance resource ID (instance ID returned after deploying OpenClaw instance) | Yes | Prompted | `--resource-id 0e1234567890abcdef` |
167| --region-id | Region ID where L instance is located, consistent with the region selected when deploying the instance | Yes | Prompted | `--region-id cn-north-4` |
168| --model-params | Model configuration parameters (JSON format), note: parameters must use valid JSON format, keys and values must be wrapped in double quotes | Yes | Prompted | --model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2"]}' |
169| --ak | Huawei Cloud Access Key AK (supports both long-term and temporary) | Yes | Prompted | `--ak AXXX...` |
170| --sk | Huawei Cloud Access Key SK (supports both long-term and temporary) | Yes | Prompted | `--sk SXXX...` |
171| --security-token | Security token for temporary credentials (optional, only required for temporary AK/SK) | No | Prompted | `--security-token XXXX...` |
172| --timeout | Script execution timeout (seconds) | No | 600 | `--timeout 900` |
173| --non-interactive | Enable non-interactive mode | No | false | `--non-interactive` |
174
175**model-params Field Description**:
176| Field | Description | Required |
177|-------|-------------|----------|
178| provider | Model provider name (e.g., "huawei") or API address (e.g., "https://api.openai.com/v1") | Yes |
179| api_key | Model API key | Yes |
180| model_ids | Array of model IDs to install (non-empty), e.g., ["gpt-4", "gpt-3.5-turbo"] | Yes |
181
182**Command Examples**:
183
184```bash
185# Example 1: Install Huawei Cloud MaaS platform models with long-term AK/SK
186python scripts/caller.py maas \
187 --resource-id 0e1234567890abcdef \
188 --region-id cn-north-4 \
189 --model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2","qwen3-235b-a22b"]}' \
190 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
191
192# Example 2: Install Huawei Cloud MaaS platform models with temporary AK/SK
193python scripts/caller.py maas \
194 --resource-id 0e1234567890abcdef \
195 --region-id cn-north-4 \
196 --model-params '{"provider":"huawei","api_key":"your_maas_api_key","model_ids":["deepseek-v3.2","qwen3-235b-a22b"]}' \
197 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
198
199# Example 3: Install custom OpenAI compatible models with long-term AK/SK
200python scripts/caller.py maas \
201 --resource-id 0e1234567890abcdef \
202 --region-id cn-north-4 \
203 --model-params '{"provider":"https://api.openai.com/v1","api_key":"your_openai_key","model_ids":["gpt-4"]}' \
204 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
205```
206
207**Status Code Description**: Status codes "200", "201", "202" all indicate successful model installation.
208
209#### 3. channel - Configure (Install) Channels on L Instance with OpenClaw Installed - Two Command Modes (Requires deploying OpenClaw instance first)
210
211**Command 1: Interactive Mode**
212```bash
213python scripts/caller.py channel
214```
215
216**Command 2: Non-Interactive Mode**
217```bash
218# Using long-term AK/SK (no security-token needed)
219python scripts/caller.py channel --resource-id <Instance Resource ID> --region-id cn-north-4 --channel-list '<JSON array>' --ak <AK> --sk <SK> --non-interactive
220
221# Using temporary AK/SK (security-token required)
222python scripts/caller.py channel --resource-id <Instance Resource ID> --region-id cn-north-4 --channel-list '<JSON array>' --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
223```
224
225**Parameter Description**:
226| Parameter | Description | Required (Non-interactive) | Default (Interactive) | Example |
227|-----------|-------------|----------------------------|-----------------------|---------|
228| --resource-id | L instance resource ID (instance ID returned after deploying OpenClaw instance) | Yes | Prompted | `--resource-id 0e1234567890abcdef` |
229| --region-id | Region ID where instance is located, consistent with the region selected when deploying the instance | Yes | Prompted | `--region-id cn-north-4` |
230| --channel-list | Channel configuration (JSON array format) | Yes | Prompted | '[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' |
231| --ak | Huawei Cloud Access Key AK (supports both long-term and temporary) | Yes | Prompted | `--ak AXXX...` |
232| --sk | Huawei Cloud Access Key SK (supports both long-term and temporary) | Yes | Prompted | `--sk SXXX...` |
233| --security-token | Security token for temporary credentials (optional, only required for temporary AK/SK) | No | Prompted | `--security-token XXXX...` |
234| --timeout | Script execution timeout (seconds) | No | 600 | `--timeout 900` |
235| --non-interactive | Enable non-interactive mode | No | false | `--non-interactive` |
236
237**channel JSON Object Field Description**:
238| Field | Description | Required |
239|-------|-------------|----------|
240| channel | Channel type: `wecom` (WeCom), `feishu` (Feishu), `dingtalk` (DingTalk), `qqbot` (QQ) | Yes |
241| id | Bot ID/APP ID/Client ID | Yes |
242| secret | Bot secret/APP secret/Client secret | Yes |
243
244
245
246**Command Examples**:
247```bash
248# Example 1: Install multiple channels (WeCom + Feishu) using long-term AK/SK
249python scripts/caller.py channel \
250 --resource-id 0e1234567890abcdef \
251 --region-id cn-north-4 \
252 --channel-list '[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' \
253 --ak <AK> --sk <SK> --non-interactive
254
255# Example 2: Install multiple channels (WeCom + Feishu) using temporary AK/SK
256python scripts/caller.py channel \
257 --resource-id 0e1234567890abcdef \
258 --region-id cn-north-4 \
259 --channel-list '[{"channel":"wecom","id":"xxx","secret":"xxx"},{"channel":"feishu","id":"yyy","secret":"yyy"}]' \
260 --ak <Temporary AK> --sk <Temporary SK> --security-token <Security Token> --non-interactive
261```
262**Status Code Description**: Status codes "200", "201", "202" all indicate successful channel installation.
263
264### Web UI Access
265Web UI access needs to be manually enabled in Huawei Cloud console, operation steps:
2661. Log in to Huawei Cloud Flexus Application Server L Instance Console
267 - 🔗 Console URL: https://console.huaweicloud.com/smb/?/resource/list
2682. Find your OpenClaw instance in the instance list
2693. Click the instance name to enter the details page
2704. In the left menu of the details page, find and click "Application Details" option, then enter the "Basic Configuration" tab
2715. In the "Basic Configuration" tab, find the "Access OpenClaw Web Interface" option at the top left, click the "Enable" button. You will then get the URL address to access the OpenClaw Web interface.
272
273
274
275## Code Structure, File Responsibilities and Key Functions
276
277This skill uses a modular architecture for easier maintenance:
278
279```
280scripts/
281├── caller.py # Main entry - command line argument parsing, parameter parsing, command routing
282├── lib.py # Core library - L instance creation, COC script management
283├── utils.py # Utility functions - input prompts, credential configuration, region information
284├── deploy.py # Deployment module - `do_deploy_openclaw()` function for OpenClaw instance creation
285├── models.py # Model module - remote COC large model installation (with prerequisite checks), related functions `do_install_maas()`, `_check_prerequisites()`
286├── channels.py # Channel module - remote COC channel installation (with prerequisite checks), related functions `do_install_channel()`, `_check_prerequisites()`
287├── gateway.py # Gateway module - gateway status query (only for prerequisite checks), related functions `do_check_gateway()`
288└── uniagent.py # UniAgent module - UniAgent status query (only for prerequisite checks), `do_check_uniagent()`
289```
290
291
292## Parameter Confirmation
293
294### Deployment Parameters
295- **--name**: OpenClaw instance name, optional parameter, default is `openclaw-{timestamp}`
296- **--region**: Target region ID, optional parameter, default is `cn-north-4`
297- **--ak**: Huawei Cloud temporary Access Key AK, required parameter
298- **--sk**: Huawei Cloud temporary Access Key SK, required parameter
299- **--security-token**: Security token for temporary credentials (**required**), required parameter
300- **--non-interactive**: Enable non-interactive mode, optional parameter
301
302### Model Configuration Parameters
303- **--resource-id**: L instance resource ID (instance ID returned after deploying OpenClaw instance), required parameter
304- **--region-id**: Region ID where L instance is located, consistent with the region selected when deploying the instance, required parameter
305- **--model-params**: Model configuration parameters (JSON format), required parameter
306 - `provider`: Model provider name (e.g., "huawei") or API address (e.g., "https://api.openai.com/v1")
307 - `api_key`: Model API key
308 - `model_ids`: Array of model IDs to install (non-empty)
309- **--ak**: Huawei Cloud temporary Access Key AK, required parameter
310- **--sk**: Huawei Cloud temporary Access Key SK, required parameter
311- **--security-token**: Security token for temporary credentials (**required**), required parameter
312- **--timeout**: Script execution timeout (seconds), optional parameter, default 600 seconds
313
314### Channel Configuration Parameters
315- **--resource-id**: L instance resource ID (instance ID returned after deploying OpenClaw instance), required parameter
316- **--region-id**: Region ID where L instance is located, consistent with the region selected when deploying the instance, required parameter
317- **--channel-list**: Channel configuration (JSON array format), optional parameter
318 - `channel`: Channel type: `wecom` (WeCom), `feishu` (Feishu), `dingtalk` (DingTalk), `qqbot` (QQ), required
319 - `id`: Bot ID, required
320 - `secret`: Bot secret, required
321- **--ak**: Huawei Cloud temporary Access Key AK, required parameter
322- **--sk**: Huawei Cloud temporary Access Key SK, required parameter
323- **--security-token**: Security token for temporary credentials (**required**), required parameter
324- **--timeout**: Script execution timeout (seconds), optional parameter, default 600 seconds
325
326### Environment Variable Support
327All parameters can also be provided through environment variables:
328- `HW_ACCESS_KEY`: Huawei Cloud AK (corresponds to --ak parameter)
329- `HW_SECRET_KEY`: Huawei Cloud SK (corresponds to --sk parameter)
330- `HW_SECURITY_TOKEN`: Temporary credential security token (corresponds to --security-token parameter)
331- `HW_PROJECT_ID`: Huawei Cloud Project ID (optional)
332
333
334## Common Issues Quick Solutions
335
336| Issue | Solution |
337|-------|----------|
338| Instance creation failed | Check AK/SK permissions, ensure permission to create Flexus L instances |
339| Model installation failed | Check if UniAgent status is ONLINE, if API Key is correct, if model-params parameter strictly uses JSON format |
340| Channel installation failed | Check if bot parameters are correct, if bot is created on platform, if channel-list parameter strictly uses JSON array format |