monomind 2.6.0 → 2.6.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Open-source CLI extension for Claude Code. Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. MIT licensed, runs locally, no data leaves your machine.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -78,10 +78,14 @@
|
|
|
78
78
|
"axios": ">=1.16.0",
|
|
79
79
|
"qs": ">=6.15.2",
|
|
80
80
|
"esbuild": ">=0.28.1",
|
|
81
|
-
"protobufjs": ">=
|
|
81
|
+
"protobufjs": ">=8.6.6",
|
|
82
82
|
"@protobufjs/utf8": ">=1.1.1",
|
|
83
83
|
"@grpc/grpc-js": ">=1.14.4",
|
|
84
|
-
"onnxruntime-node": ">=1.27.0"
|
|
84
|
+
"onnxruntime-node": ">=1.27.0",
|
|
85
|
+
"fast-uri": ">=4.1.1",
|
|
86
|
+
"sharp": ">=0.35.0",
|
|
87
|
+
"adm-zip": ">=0.6.0",
|
|
88
|
+
"body-parser": ">=1.20.6"
|
|
85
89
|
},
|
|
86
90
|
"pnpm": {
|
|
87
91
|
"overrides": {
|
|
@@ -90,12 +94,12 @@
|
|
|
90
94
|
"axios": ">=1.16.0",
|
|
91
95
|
"qs": ">=6.15.2",
|
|
92
96
|
"esbuild": ">=0.28.1",
|
|
93
|
-
"protobufjs": ">=
|
|
97
|
+
"protobufjs": ">=8.6.6",
|
|
94
98
|
"@protobufjs/utf8": ">=1.1.1",
|
|
95
99
|
"@grpc/grpc-js": ">=1.14.4",
|
|
96
100
|
"vite": ">=8.0.16",
|
|
97
101
|
"postcss": ">=8.5.10",
|
|
98
|
-
"fast-uri": ">=
|
|
102
|
+
"fast-uri": ">=4.1.1",
|
|
99
103
|
"form-data": ">=4.0.6",
|
|
100
104
|
"ip-address": ">=10.1.1",
|
|
101
105
|
"js-yaml": ">=4.2.0",
|
|
@@ -104,7 +108,10 @@
|
|
|
104
108
|
"follow-redirects": ">=1.16.0",
|
|
105
109
|
"@anthropic-ai/claude-code": ">=2.1.163",
|
|
106
110
|
"handlebars": ">=4.7.9",
|
|
107
|
-
"onnxruntime-node": ">=1.27.0"
|
|
111
|
+
"onnxruntime-node": ">=1.27.0",
|
|
112
|
+
"sharp": ">=0.35.0",
|
|
113
|
+
"adm-zip": ">=0.6.0",
|
|
114
|
+
"body-parser": ">=1.20.6"
|
|
108
115
|
},
|
|
109
116
|
"peerDependencyRules": {
|
|
110
117
|
"allowedVersions": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI engine for Monomind \u2014 an open-source MCP server that extends Claude Code with a codebase knowledge graph (tree-sitter + SQLite), persistent memory, multi-agent task coordination, and session hooks. MIT licensed, fully local.",
|
|
6
6
|
"main": "dist/src/index.js",
|