@xcanwin/manyoyo 7.1.3 → 7.1.6

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 CHANGED
@@ -61,7 +61,7 @@ AI Agent CLI 往往需要:
61
61
  ```bash
62
62
  npm install -g @xcanwin/manyoyo
63
63
  podman pull ubuntu:24.04 # 仅 Podman 需要
64
- manyoyo build --iv 1.9.1-common
64
+ manyoyo build --iv 1.9.2-common
65
65
  manyoyo init all
66
66
  manyoyo run -r claude
67
67
  manyoyo serve 127.0.0.1:3000 -U admin -P 123456 # Web UI 模式
@@ -148,13 +148,13 @@ manyoyo config command
148
148
 
149
149
  ```bash
150
150
  # common 版本
151
- manyoyo build --iv 1.9.1-common
151
+ manyoyo build --iv 1.9.2-common
152
152
 
153
153
  # full 版本
154
- manyoyo build --iv 1.9.1-full
154
+ manyoyo build --iv 1.9.2-full
155
155
 
156
156
  # 仅更新已有镜像内 Agent CLI 到 latest,不重建 Dockerfile
157
- manyoyo build --iv 1.9.1-full --update-agents --yes
157
+ manyoyo build --iv 1.9.2-full --update-agents --yes
158
158
 
159
159
  # 自定义工具集
160
160
  manyoyo build --iba TOOL=go,codex,java,gemini
package/bin/manyoyo.js CHANGED
@@ -33,7 +33,8 @@ const {
33
33
  } = require('../lib/serve-log');
34
34
  const { version: BIN_VERSION, imageVersion: IMAGE_VERSION_DEFAULT } = require('../package.json');
35
35
  const IMAGE_VERSION_BASE = String(IMAGE_VERSION_DEFAULT || '1.0.0').split('-')[0];
36
- const IMAGE_VERSION_HELP_EXAMPLE = IMAGE_VERSION_DEFAULT || `${IMAGE_VERSION_BASE}-common`;
36
+ const GLOBAL_CONFIG_IMAGE_VERSION = String(readManyoyoConfig().config.imageVersion || '').trim();
37
+ const IMAGE_VERSION_HELP_EXAMPLE = GLOBAL_CONFIG_IMAGE_VERSION || IMAGE_VERSION_DEFAULT || `${IMAGE_VERSION_BASE}-common`;
37
38
 
38
39
  // Helper function to format date like bash $(date +%m%d-%H%M)
39
40
  function formatDate() {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@xcanwin/manyoyo",
3
- "version": "7.1.3",
4
- "imageVersion": "1.9.1-common",
5
- "playwrightCliVersion": "0.1.18",
3
+ "version": "7.1.6",
4
+ "imageVersion": "1.9.2-common",
5
+ "playwrightCliVersion": "0.1.21",
6
6
  "description": "AI Agent CLI Security Sandbox for Docker and Podman",
7
7
  "keywords": [
8
8
  "manyoyo",
@@ -60,20 +60,20 @@
60
60
  "manyoyo.example.json"
61
61
  ],
62
62
  "dependencies": {
63
- "@playwright/mcp": "0.0.79",
63
+ "@playwright/mcp": "0.0.82",
64
64
  "commander": "^15.0.0",
65
65
  "json5": "^2.2.3",
66
- "playwright": "1.62.1",
66
+ "playwright": "1.63.0",
67
67
  "ws": "^8.21.3"
68
68
  },
69
69
  "devDependencies": {
70
- "jest": "^30.4.2",
70
+ "jest": "^30.5.2",
71
71
  "vitepress": "^1.6.4"
72
72
  },
73
73
  "overrides": {
74
74
  "glob": "^13.0.6",
75
75
  "minimatch": "^10.2.6",
76
- "postcss": "^8.5.26",
76
+ "postcss": "^8.5.28",
77
77
  "test-exclude": "^8.0.0",
78
78
  "vite": "^6.4.3"
79
79
  },