Install
openclaw skills install byted-bp-cdn-pagesdeployClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
One-click deployment of static websites to BytePlus / VolcEngine Edge Pages platform, supporting auto project creation, update deployment, custom domain binding, and CDN acceleration.
openclaw skills install byted-bp-cdn-pagesdeployOne-click deployment of static website code to BytePlus / VolcEngine Edge Pages platform. Designed for use in Coding Agents (Cursor, Claude Code, Trae, etc.) to quickly complete hosting, building, and CDN integration after generating static web pages.
secrets/byteplus.json, format: {"access_key": "xxx", "secret_key": "xxx"}nest config set -g cloud.access_key YOUR_AK && nest config set -g cloud.secret_key YOUR_SKindex.html# Auto-detect: creates project if not exists, updates deployment if exists
bash /path/to/scripts/deploy.sh --name my-site --dir ./dist
# Specify description and acceleration region
bash /path/to/scripts/deploy.sh --name my-site --dir ./dist --desc "AI generated site" --region global
# Bind custom domain
bash /path/to/scripts/deploy.sh --name my-site --dir ./dist --domain www.example.com
| Parameter | Required | Description |
|---|---|---|
--name | Yes | Pages project name |
--dir | Yes | Static site resource directory (must contain index.html) |
--desc | No | Project description |
--region | No | Acceleration region: global / chinese_mainland / outside_chinese_mainland |
--domain | No | Custom domain |
--build-cmd | No | Build command to run before deployment (e.g. npm run build) |
--secrets-file | No | AK/SK config file path (default: secrets/byteplus.json) |
# List projects
bash /path/to/scripts/manage.sh list
# Show project details
bash /path/to/scripts/manage.sh get --pages p-xxx
# Show deployment history
bash /path/to/scripts/manage.sh deployments --pages p-xxx
# Local preview
bash /path/to/scripts/manage.sh serve --dir ./dist --port 8080
# Domain management
bash /path/to/scripts/manage.sh domain-list --pages p-xxx
bash /path/to/scripts/manage.sh domain-add --pages p-xxx --domain www.example.com
bash /path/to/scripts/manage.sh domain-verify --pages p-xxx --domain www.example.com
# Offline / Delete
bash /path/to/scripts/manage.sh offline --pages p-xxx
bash /path/to/scripts/manage.sh delete --pages p-xxx
Step 0: Environment Setup (one-time) → Install CLI + Configure AK/SK
Step 1: Coding Agent generates code → ./my-site/
Step 2: Local preview → nest pages serve ./my-site
Step 3: Deploy → deploy.sh --name xxx --dir ./my-site
Step 4: Check domain → manage.sh get --pages p-xxx
Step 5: Bind domain → deploy.sh --name xxx --dir ./my-site --domain www.example.com
Step 6: Iterative update → deploy.sh --name xxx --dir ./my-site
Step 7: Manage → manage.sh list / deployments / offline
@byteplus/nest (not @byted/nest)