monomind 1.18.7 → 1.18.8

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.
@@ -1 +1 @@
1
- {"sessionId":"614df37a-72bc-4690-aea4-5f21bdfae38b","pid":66399,"procStart":"Mon Jul 6 12:28:58 2026","acquiredAt":1783371085759}
1
+ {"sessionId":"48034cbd-6bf8-4d28-b32f-663dc033fd6a","pid":42328,"procStart":"Mon Jul 6 21:18:11 2026","acquiredAt":1783373642173}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monomind",
3
- "version": "1.18.7",
3
+ "version": "1.18.8",
4
4
  "description": "Monomind - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -64,8 +64,8 @@
64
64
  "v1:security": "npm run security:audit && npm run security:test"
65
65
  },
66
66
  "dependencies": {
67
- "@monoes/monobrowse": "workspace:*",
68
- "@monoes/monograph": "workspace:*",
67
+ "@monoes/monobrowse": "^1.0.2",
68
+ "@monoes/monograph": "^1.3.0",
69
69
  "mammoth": "^1.12.0",
70
70
  "pdf-parse": "^2.4.5",
71
71
  "semver": "^7.6.0",
@@ -451,7 +451,13 @@ const monographVisualizeTool = {
451
451
  ? Math.min(Math.floor(rawMaxNodes), MAX_EXPORT_NODES)
452
452
  : 500;
453
453
  const nodes = db.prepare('SELECT * FROM nodes LIMIT ?').all(limit);
454
- const edges = db.prepare('SELECT * FROM edges LIMIT ?').all(limit * 3);
454
+ // Only include edges where both endpoints are in the visible node set
455
+ const edges = db.prepare(`
456
+ SELECT e.* FROM edges e
457
+ WHERE e.source_id IN (SELECT id FROM nodes LIMIT ?)
458
+ AND e.target_id IN (SELECT id FROM nodes LIMIT ?)
459
+ LIMIT ?
460
+ `).all(limit, limit, limit * 3);
455
461
  const fmt = input.format ?? 'html';
456
462
  if (fmt === 'json')
457
463
  return text(toJson(nodes, edges));
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.18.7",
3
+ "version": "1.18.8",
4
4
  "type": "module",
5
5
  "description": "Monomind CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
6
6
  "main": "dist/src/index.js",
@@ -87,8 +87,8 @@
87
87
  "vitest": "^4.1.4"
88
88
  },
89
89
  "dependencies": {
90
- "@monoes/monobrowse": "workspace:*",
91
- "@monoes/monograph": "workspace:*",
90
+ "@monoes/monobrowse": "^1.0.2",
91
+ "@monoes/monograph": "^1.3.0",
92
92
  "@noble/ed25519": "^2.1.0",
93
93
  "mammoth": "^1.12.0",
94
94
  "pdf-parse": "^2.4.5",
@@ -98,12 +98,12 @@
98
98
  },
99
99
  "optionalDependencies": {
100
100
  "@huggingface/transformers": "^3.8.1",
101
- "@monoes/memory": "workspace:*",
101
+ "@monoes/memory": "^1.0.5",
102
102
  "@monomind/guidance": "*",
103
103
  "@monomind/hooks": "*",
104
104
  "@monomind/mcp": "*",
105
105
  "@monomind/routing": "*",
106
- "@monomind/security": "workspace:*",
106
+ "@monomind/security": "*",
107
107
  "monofence-ai": "*",
108
108
  "sql.js": "^1.14.1"
109
109
  },