@elizaos/plugin-commands 2.0.0-alpha.5 → 2.0.0-alpha.7
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/cjs/index.cjs +77 -37
- package/dist/cjs/index.cjs.map +10 -10
- package/dist/index.js +78 -38
- package/dist/index.js.map +10 -10
- package/package.json +96 -96
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
2
|
+
"name": "@elizaos/plugin-commands",
|
|
3
|
+
"version": "2.0.0-alpha.7",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/cjs/index.cjs",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"description": "Chat command system for Eliza agents (/help, /status, /reset, etc.)",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/elizaos/eliza.git"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": "./package.json",
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"require": "./dist/cjs/index.cjs",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@elizaos/core": "2.0.0-alpha.3"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/bun": "^1.2.22",
|
|
31
|
+
"@types/node": "^24.5.2",
|
|
32
|
+
"typescript": "^5.9.2",
|
|
33
|
+
"@biomejs/biome": "^2.3.11"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "bun run build.ts",
|
|
37
|
+
"dev": "bun --hot build.ts",
|
|
38
|
+
"test": "npx -y vitest@4.0.18 run --passWithNoTests",
|
|
39
|
+
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
|
|
40
|
+
"format": "bunx @biomejs/biome@2.4.2 format --write .",
|
|
41
|
+
"format:check": "bunx @biomejs/biome@2.4.2 format .",
|
|
42
|
+
"lint": "bunx @biomejs/biome@2.4.2 check --write --unsafe .",
|
|
43
|
+
"lint:check": "bunx @biomejs/biome@2.4.2 check .",
|
|
44
|
+
"typecheck": "tsc --noEmit"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"agentConfig": {
|
|
50
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
51
|
+
"pluginParameters": {
|
|
52
|
+
"COMMANDS_ENABLED": {
|
|
53
|
+
"type": "boolean",
|
|
54
|
+
"description": "Enable command system",
|
|
55
|
+
"required": false,
|
|
56
|
+
"default": "true",
|
|
57
|
+
"sensitive": false
|
|
58
|
+
},
|
|
59
|
+
"COMMANDS_CONFIG_ENABLED": {
|
|
60
|
+
"type": "boolean",
|
|
61
|
+
"description": "Enable /config command",
|
|
62
|
+
"required": false,
|
|
63
|
+
"default": "false",
|
|
64
|
+
"sensitive": false
|
|
65
|
+
},
|
|
66
|
+
"COMMANDS_DEBUG_ENABLED": {
|
|
67
|
+
"type": "boolean",
|
|
68
|
+
"description": "Enable /debug command",
|
|
69
|
+
"required": false,
|
|
70
|
+
"default": "false",
|
|
71
|
+
"sensitive": false
|
|
72
|
+
},
|
|
73
|
+
"COMMANDS_BASH_ENABLED": {
|
|
74
|
+
"type": "boolean",
|
|
75
|
+
"description": "Enable /bash command (elevated)",
|
|
76
|
+
"required": false,
|
|
77
|
+
"default": "false",
|
|
78
|
+
"sensitive": false
|
|
79
|
+
},
|
|
80
|
+
"COMMANDS_RESTART_ENABLED": {
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"description": "Enable /restart command",
|
|
83
|
+
"required": false,
|
|
84
|
+
"default": "true",
|
|
85
|
+
"sensitive": false
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"milady": {
|
|
90
|
+
"platforms": [
|
|
91
|
+
"node"
|
|
92
|
+
],
|
|
93
|
+
"runtime": "node",
|
|
94
|
+
"platformDetails": {
|
|
95
|
+
"node": "Default export (Node.js)"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
98
|
}
|