@elizaos/plugin-code 2.0.0-alpha.4 → 2.0.0-alpha.6
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/package.json +29 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-code",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.6",
|
|
4
4
|
"description": "Coder tools plugin for ElizaOS (filesystem + shell + git)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -66,5 +66,33 @@
|
|
|
66
66
|
"platformDetails": {
|
|
67
67
|
"node": "Default export (Node.js)"
|
|
68
68
|
}
|
|
69
|
+
},
|
|
70
|
+
"agentConfig": {
|
|
71
|
+
"pluginParameters": {
|
|
72
|
+
"CODER_ENABLED": {
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"description": "Enable or disable this feature",
|
|
75
|
+
"required": false,
|
|
76
|
+
"sensitive": false
|
|
77
|
+
},
|
|
78
|
+
"CODER_ALLOWED_DIRECTORY": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"description": "Allowed directory for file operations",
|
|
81
|
+
"required": false,
|
|
82
|
+
"sensitive": false
|
|
83
|
+
},
|
|
84
|
+
"CODER_TIMEOUT": {
|
|
85
|
+
"type": "number",
|
|
86
|
+
"description": "Coder timeout",
|
|
87
|
+
"required": false,
|
|
88
|
+
"sensitive": false
|
|
89
|
+
},
|
|
90
|
+
"CODER_FORBIDDEN_COMMANDS": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"description": "Comma-separated list of forbidden commands",
|
|
93
|
+
"required": false,
|
|
94
|
+
"sensitive": false
|
|
95
|
+
}
|
|
96
|
+
}
|
|
69
97
|
}
|
|
70
98
|
}
|