@daomar/agentfleet 2.0.1 → 2.0.2
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 +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/locales/en-US.json +1 -1
- package/dist/locales/zh-CN.json +1 -1
- package/dist/services/shortcut.js +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ No servers, no databases, no control plane — just distributed coordination thr
|
|
|
36
36
|
npx -y @daomar/agentfleet run
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
On first run, AgentFleet automatically creates `agentfleet`
|
|
39
|
+
On first run, AgentFleet automatically creates an `agentfleet` shortcut command in your npm global directory, so you can use it directly without restarting the terminal. If you've already installed globally via `npm install -g @daomar/agentfleet`, shortcut creation is skipped.
|
|
40
40
|
|
|
41
41
|
Or install globally:
|
|
42
42
|
|
package/README.zh-CN.md
CHANGED
|
@@ -36,7 +36,7 @@ AgentFleet 让您可以将编码任务同时分发到所有机器上。从任意
|
|
|
36
36
|
npx -y @daomar/agentfleet run
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
首次运行时,AgentFleet 会自动在 npm 全局目录中创建 `agentfleet`
|
|
39
|
+
首次运行时,AgentFleet 会自动在 npm 全局目录中创建 `agentfleet` 快捷命令,因此您可以直接使用该命令,无需重启终端即可生效。如果您已通过 `npm install -g @daomar/agentfleet` 全局安装,将跳过快捷方式创建。
|
|
40
40
|
|
|
41
41
|
或全局安装:
|
|
42
42
|
|
package/dist/locales/en-US.json
CHANGED
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
|
|
153
153
|
"result.written": "Results written to: {path}",
|
|
154
154
|
|
|
155
|
-
"shortcut.available": "`agentfleet`
|
|
155
|
+
"shortcut.available": "`agentfleet` command is now available (shortcut to `npx -y @daomar/agentfleet`)",
|
|
156
156
|
"shortcut.failed": "Shortcut registration failed: {error}",
|
|
157
157
|
|
|
158
158
|
"detector.multiple_accounts": "Multiple OneDrive accounts detected. Using the first one:",
|
package/dist/locales/zh-CN.json
CHANGED
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
|
|
153
153
|
"result.written": "结果已写入: {path}",
|
|
154
154
|
|
|
155
|
-
"shortcut.available": "`agentfleet`
|
|
155
|
+
"shortcut.available": "`agentfleet` 命令现已可用(快捷方式指向 `npx -y @daomar/agentfleet`)",
|
|
156
156
|
"shortcut.failed": "快捷方式注册失败: {error}",
|
|
157
157
|
|
|
158
158
|
"detector.multiple_accounts": "检测到多个 OneDrive 账户,使用第一个:",
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daomar/agentfleet",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Distributed agent orchestration, without a control plane.",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"agentfleet": "dist/cli.js"
|
|
8
|
-
"dma": "dist/cli.js"
|
|
7
|
+
"agentfleet": "dist/cli.js"
|
|
9
8
|
},
|
|
10
9
|
"scripts": {
|
|
11
10
|
"copy-locales": "node -e \"const fs=require('fs'),p=require('path');const s=p.join('src','locales'),d=p.join('dist','locales');fs.mkdirSync(d,{recursive:true});fs.readdirSync(s).filter(f=>f.endsWith('.json')).forEach(f=>fs.copyFileSync(p.join(s,f),p.join(d,f)))\"",
|