monomind 2.10.9 → 2.10.13
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/README.md +2 -2
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -265,7 +265,7 @@ monomind org run sample-team # run your first AI org (init writes a runnabl
|
|
|
265
265
|
|
|
266
266
|
## 📚 Second Brain — Your Documents, Retrieved by Meaning
|
|
267
267
|
|
|
268
|
-
Drop documents (Markdown, TXT, PDF, DOCX) anywhere in your project and run `monomind init` — the Second Brain activates itself. No flags, no configuration, no accounts. Everything runs on your machine: a local embedding model (
|
|
268
|
+
Drop documents (Markdown, TXT, PDF, DOCX) anywhere in your project and run `monomind init` — the Second Brain activates itself. No flags, no configuration, no accounts. Everything runs on your machine: a local embedding model (`Alibaba-NLP/gte-modernbert-base`, 768-dim, via transformers.js) and a local SQLite vector store. **Your notes never leave your computer.**
|
|
269
269
|
|
|
270
270
|
From then on, every substantive prompt you type in Claude Code is automatically answered *with your own knowledge in context* — a hook retrieves the most relevant excerpts semantically (the always-on dashboard keeps the model warm, ~60ms per lookup) and injects them before Claude starts thinking. Ask "when do new parents get time off" and the parental-leave section of your handbook is already on the table, even though you never used the word "leave".
|
|
271
271
|
|
|
@@ -284,7 +284,7 @@ Retrieval quality is a tested invariant, not a hope: a golden-set eval (paraphra
|
|
|
284
284
|
|
|
285
285
|
> **Privacy note:** the embedding model (~90MB) is fetched once from HuggingFace's CDN when your first document is indexed, then cached locally forever. That download is the only outbound request the Second Brain ever makes — your documents and queries never leave your machine. Offline at first index? Search degrades gracefully to keyword matching and `monomind doctor` tells you how to warm up later.
|
|
286
286
|
|
|
287
|
-
> **Which model where?** Monomind uses
|
|
287
|
+
> **Which model where?** Monomind uses two local embedding models. `Snowflake/snowflake-arctic-embed-xs` (~88MB) serves semantic task routing only. Everything the memory bridge embeds — both the Second Brain document index and the persistent memory store, which share that one bridge — uses `Alibaba-NLP/gte-modernbert-base` (768-dim, ~90MB); there is no separate document model. See [Embeddings](./doc/commands/memory.md#hybrid-search-architecture--options) for the per-subsystem detail.
|
|
288
288
|
|
|
289
289
|
---
|
|
290
290
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.13",
|
|
4
4
|
"description": "Open-source CLI extension for Claude Code and Antigravity (agy). Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. Apache 2.0 licensed, runs locally, no data leaves your machine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,19 +21,20 @@
|
|
|
21
21
|
"LICENSE"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@monoes/monomindcli": "2.10.
|
|
24
|
+
"@monoes/monomindcli": "2.10.13"
|
|
25
25
|
},
|
|
26
26
|
"overrides": {
|
|
27
27
|
"hono": ">=4.12.34",
|
|
28
28
|
"ws": "$ws",
|
|
29
29
|
"axios": ">=1.16.0",
|
|
30
|
-
"qs": ">=6.
|
|
30
|
+
"qs": ">=6.16.0",
|
|
31
31
|
"esbuild": ">=0.28.1",
|
|
32
32
|
"protobufjs": ">=8.6.6",
|
|
33
33
|
"@protobufjs/utf8": ">=1.1.1",
|
|
34
34
|
"@grpc/grpc-js": ">=1.14.4",
|
|
35
35
|
"onnxruntime-node": ">=1.27.0",
|
|
36
|
-
"fast-uri": ">=4.1.
|
|
36
|
+
"fast-uri": ">=4.1.3",
|
|
37
|
+
"@xmldom/xmldom": ">=0.8.15",
|
|
37
38
|
"sharp": ">=0.35.0",
|
|
38
39
|
"adm-zip": ">=0.6.0",
|
|
39
40
|
"body-parser": ">=1.20.6",
|
|
@@ -112,9 +113,10 @@
|
|
|
112
113
|
"test:coverage": "vitest run --coverage",
|
|
113
114
|
"lint": "biome check",
|
|
114
115
|
"lint:fix": "biome check --write",
|
|
116
|
+
"lint:skills": "node scripts/lint-skills.mjs",
|
|
115
117
|
"format": "biome format --write",
|
|
116
|
-
"security:audit": "
|
|
117
|
-
"security:fix": "
|
|
118
|
+
"security:audit": "pnpm audit --audit-level high",
|
|
119
|
+
"security:fix": "pnpm audit --fix",
|
|
118
120
|
"security:test": "npm run test:security",
|
|
119
121
|
"v1:domains": "npm run build:domains",
|
|
120
122
|
"v1:swarm": "npm run start:swarm",
|