monomind 2.7.13 → 2.7.14
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/LICENSE +0 -0
- package/README.md +12 -6
- package/package.json +21 -79
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -294,7 +294,7 @@ flowchart LR
|
|
|
294
294
|
DB -->|next session| CE
|
|
295
295
|
```
|
|
296
296
|
|
|
297
|
-
**
|
|
297
|
+
**8 on-demand workers** run at session start (staleness-gated, refreshed when older than 6 hours): `health` · `ddd` · `security` · `cache` · `progress` · `map` · `audit` · `consolidate`.
|
|
298
298
|
|
|
299
299
|
---
|
|
300
300
|
|
|
@@ -357,10 +357,16 @@ Everything runs from inside Claude Code via slash commands. Here's the highlight
|
|
|
357
357
|
|
|
358
358
|
| Package | npm | Purpose |
|
|
359
359
|
|---|---|---|
|
|
360
|
-
| `monomind` | [](https://www.npmjs.com/package/monomind) | Umbrella — **install this one** |
|
|
361
|
-
| `@monoes/monomindcli` | [](https://www.npmjs.com/package/@monoes/monomindcli) | CLI engine (32 commands) |
|
|
360
|
+
| `monomind` | [](https://www.npmjs.com/package/monomind) | Umbrella shim — **install this one** |
|
|
361
|
+
| `@monoes/monomindcli` | [](https://www.npmjs.com/package/@monoes/monomindcli) | CLI engine (32 commands, MCP server) |
|
|
362
|
+
| `@monoes/monograph` | [](https://www.npmjs.com/package/@monoes/monograph) | Code knowledge graph (tree-sitter + SQLite) |
|
|
363
|
+
| `@monoes/memory` | [](https://www.npmjs.com/package/@monoes/memory) | Persistent memory backends (SQLite + vectors) |
|
|
364
|
+
| `@monoes/hooks` | [](https://www.npmjs.com/package/@monoes/hooks) | Hook registry + 8 on-demand workers |
|
|
365
|
+
| `@monoes/mcp` | [](https://www.npmjs.com/package/@monoes/mcp) | MCP server framework (stdio/HTTP/WebSocket) |
|
|
366
|
+
| `@monoes/routing` | [](https://www.npmjs.com/package/@monoes/routing) | Semantic task-to-agent routing |
|
|
367
|
+
| `@monoes/monobrowse` | [](https://www.npmjs.com/package/@monoes/monobrowse) | Browser automation via CDP |
|
|
368
|
+
| `@monoes/monodesign` | [](https://www.npmjs.com/package/@monoes/monodesign) | Frontend design intelligence |
|
|
362
369
|
| `monofence-ai` | [](https://www.npmjs.com/package/monofence-ai) | AI manipulation defence |
|
|
363
|
-
| `@monoes/monograph` | [](https://www.npmjs.com/package/@monoes/monograph) | Code knowledge graph |
|
|
364
370
|
|
|
365
371
|
---
|
|
366
372
|
|
|
@@ -398,8 +404,8 @@ graph TD
|
|
|
398
404
|
## Resources
|
|
399
405
|
|
|
400
406
|
- 📖 [Full Documentation](https://monoes.github.io/monomind/)
|
|
401
|
-
- 🖥️ [CLI Command Reference](https://github.com/monoes/monomind/blob/main/
|
|
402
|
-
- 🏢 [Org Runtime v2 Architecture](https://github.com/monoes/monomind/blob/main/
|
|
407
|
+
- 🖥️ [CLI Command Reference](https://github.com/monoes/monomind/blob/main/doc/commands/cli-reference.md)
|
|
408
|
+
- 🏢 [Org Runtime v2 Architecture](https://github.com/monoes/monomind/blob/main/doc/concepts/org-runtime.md)
|
|
403
409
|
- 🏢 [Autonomous Orgs](https://monoes.github.io/monomind/#orgs)
|
|
404
410
|
- ⚡ [Mastermind Reference](https://monoes.github.io/monomind/#mastermind)
|
|
405
411
|
- 📋 [All Slash Commands](https://monoes.github.io/monomind/#slash)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.14",
|
|
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
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,25 +20,8 @@
|
|
|
20
20
|
"README.md",
|
|
21
21
|
"LICENSE"
|
|
22
22
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"postinstall": "find node_modules -name '._*' -delete 2>/dev/null || true",
|
|
25
|
-
"dev": "tsx watch src/index.ts",
|
|
26
|
-
"build": "tsc",
|
|
27
|
-
"build:ts": "cd packages/@monomind/cli && npm run build || true",
|
|
28
|
-
"check:versions": "node scripts/check-publish-versions.mjs",
|
|
29
|
-
"prepublishOnly": "node scripts/check-publish-versions.mjs && cd packages/@monomind/cli && npm run build",
|
|
30
|
-
"test": "vitest",
|
|
31
|
-
"test:ui": "vitest --ui",
|
|
32
|
-
"test:security": "vitest run tests/security/",
|
|
33
|
-
"security:audit": "npm audit --audit-level high",
|
|
34
|
-
"security:fix": "npm audit fix",
|
|
35
|
-
"security:test": "npm run test:security",
|
|
36
|
-
"v1:domains": "npm run build:domains",
|
|
37
|
-
"v1:swarm": "npm run start:swarm",
|
|
38
|
-
"v1:security": "npm run security:audit && npm run security:test"
|
|
39
|
-
},
|
|
40
23
|
"dependencies": {
|
|
41
|
-
"@monoes/monomindcli": "2.7.
|
|
24
|
+
"@monoes/monomindcli": "2.7.14"
|
|
42
25
|
},
|
|
43
26
|
"overrides": {
|
|
44
27
|
"hono": ">=4.12.21",
|
|
@@ -55,70 +38,13 @@
|
|
|
55
38
|
"adm-zip": ">=0.6.0",
|
|
56
39
|
"body-parser": ">=1.20.6"
|
|
57
40
|
},
|
|
58
|
-
"pnpm": {
|
|
59
|
-
"overrides": {
|
|
60
|
-
"hono": ">=4.12.21",
|
|
61
|
-
"ws": ">=8.20.1",
|
|
62
|
-
"axios": ">=1.16.0",
|
|
63
|
-
"qs": ">=6.15.2",
|
|
64
|
-
"esbuild": ">=0.28.1",
|
|
65
|
-
"protobufjs": ">=8.6.6",
|
|
66
|
-
"@protobufjs/utf8": ">=1.1.1",
|
|
67
|
-
"@grpc/grpc-js": ">=1.14.4",
|
|
68
|
-
"vite": ">=8.0.16",
|
|
69
|
-
"postcss": ">=8.5.18",
|
|
70
|
-
"fast-uri": ">=4.1.1",
|
|
71
|
-
"form-data": ">=4.0.6",
|
|
72
|
-
"ip-address": ">=10.1.1",
|
|
73
|
-
"js-yaml": ">=4.2.0",
|
|
74
|
-
"undici": ">=7.28.0",
|
|
75
|
-
"http-proxy-middleware": ">=3.0.7",
|
|
76
|
-
"follow-redirects": ">=1.16.0",
|
|
77
|
-
"@anthropic-ai/claude-code": ">=2.1.163",
|
|
78
|
-
"handlebars": ">=4.7.9",
|
|
79
|
-
"onnxruntime-node": ">=1.27.0",
|
|
80
|
-
"sharp": ">=0.35.0",
|
|
81
|
-
"adm-zip": ">=0.6.0",
|
|
82
|
-
"body-parser": ">=1.20.6"
|
|
83
|
-
},
|
|
84
|
-
"peerDependencyRules": {
|
|
85
|
-
"allowedVersions": {
|
|
86
|
-
"tree-sitter": "0.22.4",
|
|
87
|
-
"marked": "16",
|
|
88
|
-
"@vitest/coverage-v8": "4.1.4",
|
|
89
|
-
"vitest": "4.1.4",
|
|
90
|
-
"vite": "8"
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"onlyBuiltDependencies": [
|
|
94
|
-
"better-sqlite3",
|
|
95
|
-
"node-tree-sitter",
|
|
96
|
-
"tree-sitter",
|
|
97
|
-
"tree-sitter-c",
|
|
98
|
-
"tree-sitter-c-sharp",
|
|
99
|
-
"tree-sitter-cli",
|
|
100
|
-
"tree-sitter-cpp",
|
|
101
|
-
"tree-sitter-dart",
|
|
102
|
-
"tree-sitter-go",
|
|
103
|
-
"tree-sitter-java",
|
|
104
|
-
"tree-sitter-javascript",
|
|
105
|
-
"tree-sitter-kotlin",
|
|
106
|
-
"tree-sitter-php",
|
|
107
|
-
"tree-sitter-python",
|
|
108
|
-
"tree-sitter-ruby",
|
|
109
|
-
"tree-sitter-rust",
|
|
110
|
-
"tree-sitter-scala",
|
|
111
|
-
"tree-sitter-swift",
|
|
112
|
-
"tree-sitter-typescript",
|
|
113
|
-
"tree-sitter-vue"
|
|
114
|
-
]
|
|
115
|
-
},
|
|
116
41
|
"devDependencies": {
|
|
117
42
|
"@types/node": "^20.0.0",
|
|
118
43
|
"tsx": "^4.21.0",
|
|
119
44
|
"typescript": "^7.0.2",
|
|
120
45
|
"vite": ">=8.0.16",
|
|
121
|
-
"vitest": "^4.1.4"
|
|
46
|
+
"vitest": "^4.1.4",
|
|
47
|
+
"@monoes/monograph": "1.5.5"
|
|
122
48
|
},
|
|
123
49
|
"engines": {
|
|
124
50
|
"node": ">=20.0.0"
|
|
@@ -158,5 +84,21 @@
|
|
|
158
84
|
"publishConfig": {
|
|
159
85
|
"access": "public",
|
|
160
86
|
"tag": "latest"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"postinstall": "node -e \"if(process.platform!=='win32'){try{require('child_process').execSync('find node_modules -name ._* -delete 2>/dev/null',{stdio:'ignore'})}catch{}}\"",
|
|
90
|
+
"dev": "tsx watch src/index.ts",
|
|
91
|
+
"build": "tsc",
|
|
92
|
+
"build:ts": "cd packages/@monomind/cli && npm run build || true",
|
|
93
|
+
"check:versions": "node scripts/check-publish-versions.mjs",
|
|
94
|
+
"test": "vitest",
|
|
95
|
+
"test:ui": "vitest --ui",
|
|
96
|
+
"test:security": "vitest run tests/security/",
|
|
97
|
+
"security:audit": "npm audit --audit-level high",
|
|
98
|
+
"security:fix": "npm audit fix",
|
|
99
|
+
"security:test": "npm run test:security",
|
|
100
|
+
"v1:domains": "npm run build:domains",
|
|
101
|
+
"v1:swarm": "npm run start:swarm",
|
|
102
|
+
"v1:security": "npm run security:audit && npm run security:test"
|
|
161
103
|
}
|
|
162
|
-
}
|
|
104
|
+
}
|