create-openclaw-bot 5.7.10 → 5.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +159 -315
- package/README.vi.md +164 -315
- package/dist/cli.js +111 -2809
- package/dist/legacy-cli.js +2812 -0
- package/dist/server/local-server.js +2372 -0
- package/dist/setup/data/header.js +80 -80
- package/dist/setup/shared/bot-config-gen.js +469 -462
- package/dist/setup/shared/common-gen.js +313 -315
- package/dist/setup/shared/docker-gen.js +574 -500
- package/dist/setup/shared/install-gen.js +566 -566
- package/dist/setup/shared/workspace-gen.js +2 -1
- package/dist/setup.js +396 -204
- package/dist/web/app.js +1106 -0
- package/dist/web/bvvbank.jpg +0 -0
- package/dist/web/index.html +14 -0
- package/dist/web/momo.jpg +0 -0
- package/dist/web/openclaw-logo.png +0 -0
- package/dist/web/openclaw-logo.svg +1 -0
- package/dist/web/styles.css +607 -0
- package/package.json +3 -2
|
@@ -251,8 +251,9 @@ const CDP_URL = 'http://127.0.0.1:9222';
|
|
|
251
251
|
const { isVi = true, variant = 'wizard', workspaceRoot = '' } = options;
|
|
252
252
|
const wsRoot = workspaceRoot.replace(/\/+$/, '');
|
|
253
253
|
const btPath = wsRoot ? `${wsRoot}/browser-tool.js` : 'browser-tool.js';
|
|
254
|
+
const modeHeading = variant === 'cli-server' ? '# Headless Server Mode\n\n' : '';
|
|
254
255
|
|
|
255
|
-
return
|
|
256
|
+
return `${modeHeading}# Navigation
|
|
256
257
|
node ${btPath} status
|
|
257
258
|
node ${btPath} open "https://google.com"
|
|
258
259
|
node ${btPath} get_url
|