Install
openclaw skills install volcengine-vefaasDeploy and manage serverless applications on Volcengine veFaaS. Use when the user wants to deploy web apps, manage functions (pull code, upload and deploy), configure environment variables, or work with veFaaS services.
openclaw skills install volcengine-vefaasvefaas is the command-line tool for Volcengine Function Service (veFaaS). It enables serverless application deployment, function management, and configuration through a streamlined workflow.
npm i -g https://vefaas-cli.tos-cn-beijing.volces.com/volcengine-vefaas-latest.tgz
Verify installation:
vefaas --version
The typical deployment pattern:
node --version (requires >= 18, recommended 20+)
nvm use 20) or fnm (fnm use 20), or manually install a newer versionvefaas --version to verify installationvefaas login --check to verify login status
vefaas login --sso (opens browser, auto-completes when user authorizes - no manual input needed)vefaas deploy --newApp <name> --gatewayName $(vefaas run listgateways --first) --yesvefaas domains to view URLs| Purpose | Command |
|---|---|
| Check auth | vefaas login --check |
| Login (SSO) | vefaas login --sso (non-interactive: opens browser, auto-completes when authorized, recommended) |
| Login (AK/SK) | vefaas login --accessKey <AK> --secretKey <SK> |
| Init from template | vefaas init --template <name> |
| Deploy new app | vefaas deploy --newApp <name> --gatewayName $(vefaas run listgateways --first) --yes |
| Deploy existing | vefaas deploy --app <name> --yes |
| List gateways | vefaas run listgateways --first |
| View URLs | vefaas domains |
| Set env var | vefaas env set KEY VALUE |
| View config | vefaas config list |
| Pull code | vefaas pull --func <name> |
| Inspect project | vefaas inspect |
| Option | Description |
|---|---|
-d, --debug | Enable debug mode for troubleshooting |
--yes | Non-interactive mode (required for CI/AI coding) |
--region | Region override (e.g., cn-beijing) |
Step-by-step guides for common scenarios:
Detailed documentation on specific topics:
--yes for non-interactive mode in CI/CD and AI coding scenarios$(vefaas run listgateways --first) to get an available gateway.vefaas/config.json after linking--debug or -d to troubleshoot issues