@daomar/agentfleet 2.0.0 → 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 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` and `dma` shortcut commands in your npm global directory, so you can use either command directly without restarting the terminal. If you've already installed globally via `npm install -g @daomar/agentfleet`, shortcut creation is skipped.
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` `dma` 快捷命令,因此您可以直接使用任一命令,无需重启终端即可生效。如果您已通过 `npm install -g @daomar/agentfleet` 全局安装,将跳过快捷方式创建。
39
+ 首次运行时,AgentFleet 会自动在 npm 全局目录中创建 `agentfleet` 快捷命令,因此您可以直接使用该命令,无需重启终端即可生效。如果您已通过 `npm install -g @daomar/agentfleet` 全局安装,将跳过快捷方式创建。
40
40
 
41
41
  或全局安装:
42
42
 
@@ -152,7 +152,7 @@
152
152
 
153
153
  "result.written": "Results written to: {path}",
154
154
 
155
- "shortcut.available": "`agentfleet` and `dma` commands are now available (shortcuts to `npx -y @daomar/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:",
@@ -152,7 +152,7 @@
152
152
 
153
153
  "result.written": "结果已写入: {path}",
154
154
 
155
- "shortcut.available": "`agentfleet` 和 `dma` 命令现已可用(快捷方式指向 `npx -y @daomar/agentfleet`)",
155
+ "shortcut.available": "`agentfleet` 命令现已可用(快捷方式指向 `npx -y @daomar/agentfleet`)",
156
156
  "shortcut.failed": "快捷方式注册失败: {error}",
157
157
 
158
158
  "detector.multiple_accounts": "检测到多个 OneDrive 账户,使用第一个:",
@@ -155,5 +155,5 @@ class ShortcutService {
155
155
  }
156
156
  }
157
157
  exports.ShortcutService = ShortcutService;
158
- ShortcutService.BINARIES = ['agentfleet', 'dma'];
158
+ ShortcutService.BINARIES = ['agentfleet'];
159
159
  //# sourceMappingURL=shortcut.js.map
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@daomar/agentfleet",
3
- "version": "2.0.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)))\"",