agmesh 0.9.0 → 0.10.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.
- package/README.md +60 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,10 +1,65 @@
|
|
|
1
1
|
# agmesh
|
|
2
2
|
|
|
3
|
+
Agent collaboration, model routing, and CI review CLI.
|
|
4
|
+
|
|
5
|
+
`agmesh` is the public npm binary package that provides the `agmesh` command. It brings agent-team workflows, Task Contracts, subagent collaboration rules, model candidate chains, CI PR/MR review, and Goal Forge design review into local repositories.
|
|
6
|
+
|
|
7
|
+
## English Quick Start
|
|
8
|
+
|
|
9
|
+
### Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g agmesh
|
|
13
|
+
agmesh deploy .
|
|
14
|
+
agmesh status
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Temporary use:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npx agmesh deploy .
|
|
21
|
+
npx agmesh status
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Common commands
|
|
25
|
+
|
|
26
|
+
- `agmesh deploy .`: enable agmesh workflows and collaboration rules in the current git repository.
|
|
27
|
+
- `agmesh status`: inspect installation, project configuration, and Goal Forge runtime.
|
|
28
|
+
- `agmesh automation status .`: inspect coordination DB task queue and mailbox state.
|
|
29
|
+
- `agmesh automation doctor .`: diagnose automation configuration, CI visibility, and queue drift.
|
|
30
|
+
- `agmesh model init --model-profile pro --probe`: probe available models and write candidate chains.
|
|
31
|
+
- `agmesh goal-forge status .`: confirm the bundled Goal Forge runtime.
|
|
32
|
+
- `agmesh goal-forge init . "<goal>"`: create a design-review run for architecture, API, data model, or high-risk plans.
|
|
33
|
+
|
|
34
|
+
### Distribution model
|
|
35
|
+
|
|
36
|
+
The main package only contains a JS launcher. The real compiled binary comes from the optional dependency package for the current platform, so the command still works with `npm install --ignore-scripts` and does not depend on postinstall file copying.
|
|
37
|
+
|
|
38
|
+
- `@agmesh/darwin-arm64`
|
|
39
|
+
- `@agmesh/darwin-x64`
|
|
40
|
+
- `@agmesh/linux-x64`
|
|
41
|
+
- `@agmesh/linux-arm64`
|
|
42
|
+
- `@agmesh/linux-x64-musl`
|
|
43
|
+
- `@agmesh/win32-x64`
|
|
44
|
+
|
|
45
|
+
### Privacy and safety boundaries
|
|
46
|
+
|
|
47
|
+
- No tasks run during installation and no telemetry is sent during installation.
|
|
48
|
+
- Runtime diagnostics never collect source code, prompts, diffs, environment variables, secrets, tokens, remote URLs, or raw stdout/stderr.
|
|
49
|
+
- Anonymous diagnostics can be inspected with `agmesh telemetry status` and disabled with `agmesh telemetry revoke`.
|
|
50
|
+
- Publishing, signing, and maintainer-only operations are not executed from the npm package.
|
|
51
|
+
|
|
52
|
+
The source-development command is `agent-team`; normal users should prefer the `agmesh` npm binary package.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## 中文
|
|
57
|
+
|
|
3
58
|
Agent 协同、模型路由与 CI 审查框架。
|
|
4
59
|
|
|
5
60
|
`agmesh` 是公开 npm 二进制分发包,提供 `agmesh` 命令。它会把 agent-team workflow、Task Contract、子代理协作规则、模型候选链、CI PR/MR 审查和 Goal Forge 设计质证带到本地项目里。
|
|
6
61
|
|
|
7
|
-
|
|
62
|
+
### 安装
|
|
8
63
|
|
|
9
64
|
```bash
|
|
10
65
|
npm install -g agmesh
|
|
@@ -19,16 +74,17 @@ npx agmesh deploy .
|
|
|
19
74
|
npx agmesh status
|
|
20
75
|
```
|
|
21
76
|
|
|
22
|
-
|
|
77
|
+
### 常用命令
|
|
23
78
|
|
|
24
79
|
- `agmesh deploy .`:在当前 git 项目启用 agmesh workflow 和协作规则。
|
|
25
80
|
- `agmesh status`:查看当前安装、项目配置和 Goal Forge runtime。
|
|
26
81
|
- `agmesh automation status .`:查看 coordination DB 任务队列和 mailbox 状态。
|
|
27
82
|
- `agmesh automation doctor .`:诊断自动化配置、CI 可见性和队列漂移。
|
|
83
|
+
- `agmesh model init --model-profile pro --probe`:探测可用模型并写入候选链。
|
|
28
84
|
- `agmesh goal-forge status .`:确认内置 Goal Forge runtime。
|
|
29
85
|
- `agmesh goal-forge init . "<goal>"`:为架构、API、数据模型或高风险方案创建设计质证 run。
|
|
30
86
|
|
|
31
|
-
|
|
87
|
+
### 分发形态
|
|
32
88
|
|
|
33
89
|
主包只包含一个 JS launcher。真正的编译二进制由当前平台对应的 optional dependency 提供,因此 `npm install --ignore-scripts` 也可以使用,不依赖 postinstall 复制文件。
|
|
34
90
|
|
|
@@ -39,7 +95,7 @@ npx agmesh status
|
|
|
39
95
|
- `@agmesh/linux-x64-musl`
|
|
40
96
|
- `@agmesh/win32-x64`
|
|
41
97
|
|
|
42
|
-
|
|
98
|
+
### 隐私与安全边界
|
|
43
99
|
|
|
44
100
|
- 不会在安装阶段执行任务或发送遥测。
|
|
45
101
|
- 运行命令时不会采集源码、prompt、diff、环境变量、secret、token、remote URL 或原始 stdout/stderr。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agmesh",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
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.10.1",
|
|
15
|
+
"@agmesh/darwin-x64": "0.10.1",
|
|
16
|
+
"@agmesh/linux-x64": "0.10.1",
|
|
17
|
+
"@agmesh/linux-arm64": "0.10.1",
|
|
18
|
+
"@agmesh/linux-x64-musl": "0.10.1",
|
|
19
|
+
"@agmesh/win32-x64": "0.10.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|