monomind 2.10.18 → 2.10.20

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -253,6 +253,8 @@ monomind doctor --fix
253
253
 
254
254
  > **Semantic routing (opt-in download):** embedding-based task routing needs a local model (~88 MB, `Snowflake/snowflake-arctic-embed-xs` via transformers.js). `monomind init` asks interactively whether to download it — the default is No, and non-interactive/CI installs never download it silently. Declining is fine: routing falls back to keyword mode. Fetch it any time with `monomind download-embeddings` (or `node scripts/download-embedding-model.mjs` on a source checkout).
255
255
 
256
+ > **Native module install blocked?** If `doctor` reports a missing `better-sqlite3` binding (`Could not locate the bindings file`, or npm logs an install script that was "blocked because it is not covered by allowScripts"), your npm's `allowScripts` policy blocked its native build — this isn't a Monomind bug. Run `npm install-scripts approve better-sqlite3 && npm rebuild better-sqlite3`, then re-run `monomind doctor --fix`.
257
+
256
258
  Open Claude Code. You now have 49 `/mastermind:*` workflows available:
257
259
 
258
260
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monomind",
3
- "version": "2.10.18",
3
+ "version": "2.10.20",
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,7 +21,7 @@
21
21
  "LICENSE"
22
22
  ],
23
23
  "dependencies": {
24
- "@monoes/monomindcli": "2.10.18"
24
+ "@monoes/monomindcli": "2.10.20"
25
25
  },
26
26
  "overrides": {
27
27
  "hono": ">=4.13.5",
@@ -52,7 +52,7 @@
52
52
  "typescript": "^7.0.2",
53
53
  "vite": ">=8.0.16",
54
54
  "vitest": "^4.1.11",
55
- "@monoes/monograph": "1.6.2"
55
+ "@monoes/monograph": "1.6.3"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=20.0.0"