monomind 1.15.2 → 1.15.4

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.15.2",
3
+ "version": "1.15.4",
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",
@@ -794,8 +794,10 @@ const defendCommand = {
794
794
  output.writeln(output.bold('🛡️ MonoFence - AI Manipulation Defense System'));
795
795
  output.writeln(output.dim('─'.repeat(55)));
796
796
  // Dynamic import of aidefence (allows package to be optional)
797
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
797
798
  let createMonoDefence;
798
799
  try {
800
+ // @ts-expect-error — optional peer dep resolved at runtime
799
801
  const aidefence = await import('monofence-ai');
800
802
  createMonoDefence = aidefence.createMonoDefence;
801
803
  }
@@ -657,6 +657,7 @@ export class MCPServerManager extends EventEmitter {
657
657
  }
658
658
  // Dynamically import the MCP server package
659
659
  // FIX for issue #942: Use proper package import instead of broken relative path
660
+ // @ts-expect-error — @monomind/mcp is an optional peer resolved at runtime
660
661
  const { createMCPServer } = await import('@monomind/mcp');
661
662
  const logger = {
662
663
  debug: (msg, data) => this.emit('log', { level: 'debug', msg, data }),
@@ -393,6 +393,7 @@ const monofenceIsSafeTool = {
393
393
  }
394
394
  try {
395
395
  await getMonoFence(); // triggers auto-install if package is missing
396
+ // @ts-expect-error — optional peer dep resolved at runtime
396
397
  const { isSafe } = await import('monofence-ai');
397
398
  const safe = isSafe(input);
398
399
  return {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.15.2",
3
+ "version": "1.15.4",
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",