opclawtm 1.4.0 → 1.4.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/dist/cli/index.js +3 -3
- package/package.json +2 -5
package/dist/cli/index.js
CHANGED
|
@@ -41,9 +41,9 @@ const commander_1 = require("commander");
|
|
|
41
41
|
const program = new commander_1.Command();
|
|
42
42
|
exports.program = program;
|
|
43
43
|
program
|
|
44
|
-
.name('
|
|
45
|
-
.description('Multi-Agent Collaboration Framework - CLI Management Tool (v1.4.
|
|
46
|
-
.version('1.4.
|
|
44
|
+
.name('opclawtm-cli')
|
|
45
|
+
.description('Multi-Agent Collaboration Framework - CLI Management Tool (v1.4.1)')
|
|
46
|
+
.version('1.4.1');
|
|
47
47
|
// ============================================
|
|
48
48
|
// TUI Interactive Interface
|
|
49
49
|
// ============================================
|
package/package.json
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opclawtm",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Multi-Agent Collaboration Framework - CLI Management Tool (Full Version: Agent Management + Task Flow + Feishu Integration)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"opclawtm": "./dist/bin/team-manager.js"
|
|
9
|
-
"openclaw-team-manager": "./dist/bin/team-manager.js",
|
|
10
|
-
"openclaw-team-setup": "./dist/bin/team-setup.js",
|
|
11
|
-
"openclaw-team-uninstall": "./dist/bin/team-uninstall.js"
|
|
8
|
+
"opclawtm-cli": "./dist/bin/team-manager.js"
|
|
12
9
|
},
|
|
13
10
|
"scripts": {
|
|
14
11
|
"build": "tsc",
|