multi-agents-cli 1.0.73 → 1.0.74
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
|
@@ -1339,10 +1339,10 @@ ${excludedUrls}
|
|
|
1339
1339
|
private: true,
|
|
1340
1340
|
scripts: {
|
|
1341
1341
|
init: 'multi-agents init',
|
|
1342
|
-
agent:
|
|
1343
|
-
restart:
|
|
1344
|
-
reset:
|
|
1345
|
-
complete:
|
|
1342
|
+
agent: `node ${ROOT}/.workflow/agent.js`,
|
|
1343
|
+
restart: `node ${ROOT}/.workflow/restart.js`,
|
|
1344
|
+
reset: `node ${ROOT}/.workflow/reset.js`,
|
|
1345
|
+
complete: `node ${ROOT}/.workflow/complete.js`,
|
|
1346
1346
|
},
|
|
1347
1347
|
};
|
|
1348
1348
|
fs.writeFileSync(
|
package/package.json
CHANGED