@monoes/monomindcli 2.11.3 → 2.11.4
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/src/commands/hooks-routing-commands.d.ts.map +1 -1
- package/dist/src/commands/hooks-routing-commands.js +19 -8
- package/dist/src/commands/hooks-routing-commands.js.map +1 -1
- package/dist/src/mcp-tools/hooks-routing.d.ts.map +1 -1
- package/dist/src/mcp-tools/hooks-routing.js +55 -4
- package/dist/src/mcp-tools/hooks-routing.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monoes/monomindcli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI engine for Monomind — 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. Apache 2.0 licensed, fully local.",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -121,16 +121,13 @@
|
|
|
121
121
|
"sql.js": "^1.14.1",
|
|
122
122
|
"@monoes/hooks": "1.0.6",
|
|
123
123
|
"@monoes/mcp": "1.0.4",
|
|
124
|
-
"@monoes/
|
|
125
|
-
"@monoes/
|
|
124
|
+
"@monoes/routing": "1.0.4",
|
|
125
|
+
"@monoes/memory": "1.0.17"
|
|
126
126
|
},
|
|
127
127
|
"publishConfig": {
|
|
128
128
|
"access": "public",
|
|
129
129
|
"tag": "latest"
|
|
130
130
|
},
|
|
131
|
-
"overrides": {
|
|
132
|
-
"onnxruntime-node": ">=1.27.0"
|
|
133
|
-
},
|
|
134
131
|
"scripts": {
|
|
135
132
|
"prebuild": "node ../../../scripts/build-fs.mjs clean dist tsconfig.tsbuildinfo",
|
|
136
133
|
"build": "tsc && node ../../../scripts/build-fs.mjs copy-into dist/src/browser/dashboard src/browser/dashboard/ui.html && node ../../../scripts/build-fs.mjs copy-into dist/src/ui src/ui/dashboard.html src/ui/markdown.js src/ui/server.mjs src/ui/collector.mjs src/ui/orgs.html src/ui/orgs-files.js src/ui/sse-manager.mjs src/ui/routes-monograph.mjs src/ui/routes-org.mjs src/ui/routes-monoes.mjs src/ui/mastermind-diagram-fallback.html && node ../../../scripts/build-fs.mjs clean dist/src/ui/data && node ../../../scripts/build-fs.mjs copy-dir src/ui/data dist/src/ui/data && node ../../../scripts/build-fs.mjs clean dist/src/orgrt/role-skills && node ../../../scripts/build-fs.mjs copy-dir src/orgrt/role-skills dist/src/orgrt/role-skills",
|