monomind 1.16.8 → 1.16.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monomind",
3
- "version": "1.16.8",
3
+ "version": "1.16.9",
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",
@@ -1487,18 +1487,20 @@ mcp:
1487
1487
  path.join(__dirname, '..', '..', 'package.json'), // src/init/ in dev
1488
1488
  path.join(__dirname, '..', '..', '..', 'package.json'), // dist/src/init/ in prod
1489
1489
  ];
1490
- let cliVersion = '0.0.0';
1490
+ let cliVersion = null;
1491
1491
  for (const p of pkgCandidates) {
1492
1492
  if (fs.existsSync(p)) {
1493
1493
  const pkg = JSON.parse(fs.readFileSync(p, 'utf-8'));
1494
- if (typeof pkg.version === 'string') {
1494
+ if (typeof pkg.version === 'string' && pkg.version) {
1495
1495
  cliVersion = pkg.version;
1496
1496
  break;
1497
1497
  }
1498
1498
  }
1499
1499
  }
1500
- atomicWriteFile(versionPath, cliVersion);
1501
- result.created.files.push('.monomind/version');
1500
+ if (cliVersion) {
1501
+ atomicWriteFile(versionPath, cliVersion);
1502
+ result.created.files.push('.monomind/version');
1503
+ }
1502
1504
  }
1503
1505
  catch { /* non-fatal — sync check will degrade gracefully */ }
1504
1506
  // Write .monomind/.gitignore — commit config/knowledge/metrics, exclude sensitive data
@@ -1296,7 +1296,7 @@ const monographWikiTool = {
1296
1296
  // ── monograph_wiki_build ──────────────────────────────────────────────────────
1297
1297
  const monographWikiBuildTool = {
1298
1298
  name: 'monograph_wiki_build',
1299
- description: 'Generate LLM-powered wiki pages for code communities using the Anthropic API. Requires ANTHROPIC_API_KEY environment variable.',
1299
+ description: 'Generate wiki pages for code communities using Claude Code CLI (no API key needed reuses Claude Code auth).',
1300
1300
  inputSchema: {
1301
1301
  type: 'object',
1302
1302
  properties: {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.16.8",
3
+ "version": "1.16.9",
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,7 +87,7 @@
87
87
  "dependencies": {
88
88
  "ws": "^8.21.0",
89
89
  "@noble/ed25519": "^2.1.0",
90
- "@monoes/monograph": "^1.2.2",
90
+ "@monoes/monograph": "^1.2.3",
91
91
  "@monoes/monobrowse": "^1.0.1",
92
92
  "@monomind/security": "workspace:*"
93
93
  },