@xcanwin/manyoyo 4.1.0 → 4.1.4
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 +5 -5
- package/bin/manyoyo.js +353 -1013
- package/lib/agent-resume.js +72 -0
- package/lib/container-run.js +39 -0
- package/lib/image-build.js +323 -0
- package/lib/init-config.js +401 -0
- package/lib/web/server.js +169 -109
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
```bash
|
|
47
47
|
npm install -g @xcanwin/manyoyo # 安装
|
|
48
48
|
podman pull ubuntu:24.04 # 仅 Podman 需要
|
|
49
|
-
manyoyo --ib --iv 1.7.4
|
|
49
|
+
manyoyo --ib --iv 1.7.4-common # 构建镜像
|
|
50
50
|
manyoyo --init-config all # 从本机 Agent 配置迁移到 ~/.manyoyo
|
|
51
51
|
manyoyo -r claude # 使用 manyoyo.json 的 runs.claude 启动
|
|
52
52
|
```
|
|
@@ -96,11 +96,11 @@ npm install -g @xcanwin/manyoyo
|
|
|
96
96
|
## 构建镜像
|
|
97
97
|
|
|
98
98
|
```bash
|
|
99
|
-
#
|
|
100
|
-
manyoyo --ib --iv 1.7.4
|
|
99
|
+
# 构建 common 版本(推荐)
|
|
100
|
+
manyoyo --ib --iv 1.7.4-common
|
|
101
101
|
|
|
102
|
-
#
|
|
103
|
-
manyoyo --ib --
|
|
102
|
+
# 构建 full 版本
|
|
103
|
+
manyoyo --ib --iv 1.7.4-full
|
|
104
104
|
|
|
105
105
|
# 构建自定义版本
|
|
106
106
|
manyoyo --ib --iba TOOL=go,codex,java,gemini
|