multi-agents-cli 1.0.81 → 1.0.83
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/core/workflow/agent.js +4 -4
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -1346,10 +1346,10 @@ ${excludedUrls}
|
|
|
1346
1346
|
private: true,
|
|
1347
1347
|
scripts: {
|
|
1348
1348
|
init: 'multi-agents init',
|
|
1349
|
-
agent: `node ${ROOT}/.workflow/run.js`,
|
|
1350
|
-
restart: `node ${ROOT}/.workflow/restart.js`,
|
|
1351
|
-
reset: `node ${ROOT}/.workflow/reset.js`,
|
|
1352
|
-
complete: `node ${ROOT}/.workflow/complete.js`,
|
|
1349
|
+
agent: `node "${ROOT}/.workflow/run.js"`,
|
|
1350
|
+
restart: `node "${ROOT}/.workflow/restart.js"`,
|
|
1351
|
+
reset: `node "${ROOT}/.workflow/reset.js"`,
|
|
1352
|
+
complete: `node "${ROOT}/.workflow/complete.js"`,
|
|
1353
1353
|
},
|
|
1354
1354
|
};
|
|
1355
1355
|
fs.writeFileSync(
|
package/package.json
CHANGED