agmesh 0.11.3 → 0.12.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 +8 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -10,11 +10,12 @@ Agent collaboration, model routing, and CI review CLI.
|
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
npm install -g agmesh
|
|
13
|
+
agmesh install
|
|
13
14
|
agmesh deploy .
|
|
14
15
|
agmesh status
|
|
15
16
|
```
|
|
16
17
|
|
|
17
|
-
Temporary use:
|
|
18
|
+
Temporary project-only use:
|
|
18
19
|
|
|
19
20
|
```bash
|
|
20
21
|
npx agmesh deploy .
|
|
@@ -44,7 +45,8 @@ The main package only contains a JS launcher. The real compiled binary comes fro
|
|
|
44
45
|
|
|
45
46
|
### Privacy and safety boundaries
|
|
46
47
|
|
|
47
|
-
-
|
|
48
|
+
- `npm install -g agmesh` only installs the command. Run `agmesh install` once to install Codex global precheck rules, skills, and the shell hook.
|
|
49
|
+
- No project tasks run during package installation and no telemetry is sent during npm install/postinstall.
|
|
48
50
|
- Runtime diagnostics never collect source code, prompts, diffs, environment variables, secrets, tokens, remote URLs, or raw stdout/stderr.
|
|
49
51
|
- Anonymous diagnostics can be inspected with `agmesh telemetry status` and disabled with `agmesh telemetry revoke`.
|
|
50
52
|
- Publishing, signing, and maintainer-only operations are not executed from the npm package.
|
|
@@ -63,11 +65,12 @@ Agent 协同、模型路由与 CI 审查框架。
|
|
|
63
65
|
|
|
64
66
|
```bash
|
|
65
67
|
npm install -g agmesh
|
|
68
|
+
agmesh install
|
|
66
69
|
agmesh deploy .
|
|
67
70
|
agmesh status
|
|
68
71
|
```
|
|
69
72
|
|
|
70
|
-
|
|
73
|
+
临时只接入当前项目可以直接用 npx:
|
|
71
74
|
|
|
72
75
|
```bash
|
|
73
76
|
npx agmesh deploy .
|
|
@@ -97,7 +100,8 @@ npx agmesh status
|
|
|
97
100
|
|
|
98
101
|
### 隐私与安全边界
|
|
99
102
|
|
|
100
|
-
-
|
|
103
|
+
- `npm install -g agmesh` 只安装命令;运行一次 `agmesh install` 才会安装 Codex 全局预检规则、skills 和 shell hook。
|
|
104
|
+
- npm install/postinstall 阶段不会运行项目任务,也不会发送遥测。
|
|
101
105
|
- 运行命令时不会采集源码、prompt、diff、环境变量、secret、token、remote URL 或原始 stdout/stderr。
|
|
102
106
|
- 匿名诊断遥测可通过 `agmesh telemetry status` 查看,通过 `agmesh telemetry revoke` 关闭。
|
|
103
107
|
- 发布、签名和维护者操作不在 npm 包内执行。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agmesh",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Agent collaboration, model routing, and CI review CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agmesh": "bin/agmesh.mjs"
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"README.md"
|
|
12
12
|
],
|
|
13
13
|
"optionalDependencies": {
|
|
14
|
-
"@agmesh/darwin-arm64": "0.
|
|
15
|
-
"@agmesh/darwin-x64": "0.
|
|
16
|
-
"@agmesh/linux-x64": "0.
|
|
17
|
-
"@agmesh/linux-arm64": "0.
|
|
18
|
-
"@agmesh/linux-x64-musl": "0.
|
|
19
|
-
"@agmesh/win32-x64": "0.
|
|
14
|
+
"@agmesh/darwin-arm64": "0.12.0",
|
|
15
|
+
"@agmesh/darwin-x64": "0.12.0",
|
|
16
|
+
"@agmesh/linux-x64": "0.12.0",
|
|
17
|
+
"@agmesh/linux-arm64": "0.12.0",
|
|
18
|
+
"@agmesh/linux-x64-musl": "0.12.0",
|
|
19
|
+
"@agmesh/win32-x64": "0.12.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|