@yyy9527/openclaw-manager 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -23,19 +23,19 @@
23
23
  cp config/openclaw.env.example config/openclaw.env
24
24
  cp .env.example .env
25
25
  npm run setup
26
- npm run install
26
+ npm run deploy
27
27
  npm run status
28
28
  npm run help
29
29
  ```
30
30
 
31
- > 首次执行 `npm run install` 需要拉取官方镜像,可能耗时较长(取决于网络)。
31
+ > 首次执行 `npm run deploy` 需要拉取官方镜像,可能耗时较长(取决于网络)。
32
32
  > clawhub 在 macOS 安装后,只有把 skills 安装到 `OPENCLAW_HOME_ROOT` 可见目录并挂载到容器,才能持久化并在容器内生效。
33
33
 
34
34
  ## 3. 常用命令
35
35
 
36
36
  - `npm run help`:查看友好的 CLI 帮助
37
37
  - `npm run setup`:初始化环境(幂等)
38
- - `npm run install`:按配置启动全部实例
38
+ - `npm run deploy`:按配置启动全部实例
39
39
  - `npm run start` / `npm run stop` / `npm run restart`
40
40
  - `npm run status`:查看实例状态
41
41
  - `npm run list:claw`:列出当前配置的 claw 名称
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yyy9527/openclaw-manager",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "OpenClaw multi-instance manager for macOS with docker, TUI, and collaboration workflow.",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -21,7 +21,7 @@
21
21
  "ctl": "bash ./scripts/openclaw_ctl.sh",
22
22
  "help": "bash ./scripts/openclaw_ctl.sh --help",
23
23
  "setup": "bash ./scripts/setup_env.sh",
24
- "install": "bash ./scripts/install_openclaw.sh",
24
+ "deploy": "bash ./scripts/install_openclaw.sh",
25
25
  "start": "bash ./scripts/openclaw_ctl.sh start",
26
26
  "stop": "bash ./scripts/openclaw_ctl.sh stop",
27
27
  "restart": "bash ./scripts/openclaw_ctl.sh restart",