monomind 1.15.5 → 1.15.6

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.5",
3
+ "version": "1.15.6",
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",
@@ -43,7 +43,7 @@ import { monographTools } from './mcp-tools/monograph-tools.js';
43
43
  import { coverageRouterTools } from './monovector/coverage-tools.js';
44
44
  // A2A Agent Card protocol (source: https://a2a-protocol.org)
45
45
  import { a2aTools } from './mcp-tools/a2a-tools.js';
46
- // Quality (agentic-qe) and Coherence (prime-radiant) core tools
46
+ // Quality and Coherence core tools
47
47
  import { qualityTools } from './mcp-tools/quality-tools.js';
48
48
  import { coherenceTools } from './mcp-tools/coherence-tools.js';
49
49
  /**
@@ -103,9 +103,9 @@ registerTools([
103
103
  ...coverageRouterTools,
104
104
  // A2A Agent Card protocol (source: https://a2a-protocol.org)
105
105
  ...a2aTools,
106
- // Quality tools (migrated from agentic-qe plugin)
106
+ // Quality tools
107
107
  ...qualityTools,
108
- // Coherence tools (migrated from prime-radiant plugin)
108
+ // Coherence tools
109
109
  ...coherenceTools,
110
110
  ]);
111
111
  /**
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Coherence Tools — migrated from packages/plugins/prime-radiant
2
+ * Coherence Tools — built-in coherence MCP tools
3
3
  *
4
- * Wraps all 6 prime-radiant tools as CLI MCPTool entries with renamed names
4
+ * Wraps all 6 tools for coherence check, spectral, causal, consensus, topology, memory gate
5
5
  * (coherence_*). Their inputSchemas are already plain JSON Schema.
6
6
  */
7
7
  import type { MCPTool } from './types.js';
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Coherence Tools — migrated from packages/plugins/prime-radiant
2
+ * Coherence Tools — built-in coherence MCP tools
3
3
  *
4
- * Wraps all 6 prime-radiant tools as CLI MCPTool entries with renamed names
4
+ * Wraps all 6 tools for coherence check, spectral, causal, consensus, topology, memory gate
5
5
  * (coherence_*). Their inputSchemas are already plain JSON Schema.
6
6
  */
7
7
  import { coherenceCheckTool } from './coherence/coherence-check.js';
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Quality Tools — migrated from packages/plugins/agentic-qe
2
+ * Quality Tools — built-in quality MCP tools
3
3
  *
4
- * Wraps all 16 agentic-qe tools as CLI MCPTool entries with renamed names
4
+ * Wraps all 16 tools for test generation, coverage, defect intelligence, security, chaos
5
5
  * (quality_*) and plain JSON Schema inputSchemas.
6
6
  */
7
7
  import type { MCPTool } from './types.js';
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Quality Tools — migrated from packages/plugins/agentic-qe
2
+ * Quality Tools — built-in quality MCP tools
3
3
  *
4
- * Wraps all 16 agentic-qe tools as CLI MCPTool entries with renamed names
4
+ * Wraps all 16 tools for test generation, coverage, defect intelligence, security, chaos
5
5
  * (quality_*) and plain JSON Schema inputSchemas.
6
6
  */
7
7
  import { handler as generateTestsHandler } from './quality/test-generation/generate-tests.js';
@@ -20,7 +20,7 @@ import { handler as securityScanHandler } from './quality/security-compliance/se
20
20
  import { handler as auditComplianceHandler } from './quality/security-compliance/audit-compliance.js';
21
21
  import { handler as detectSecretsHandler } from './quality/security-compliance/detect-secrets.js';
22
22
  import { handler as chaosInjectHandler } from './quality/chaos-resilience/chaos-inject.js';
23
- // monolean: minimal context shim — agentic-qe handlers call context.get() which
23
+ // monolean: minimal context shim — quality handlers call context.get() which
24
24
  // is optional; returning undefined is safe for all current handlers.
25
25
  const noopContext = { get: (_key) => undefined };
26
26
  function wrap(handler) {
@@ -243,10 +243,10 @@ export class PluginDiscoveryService {
243
243
  totalPlugins: plugins.length,
244
244
  totalDownloads: plugins.reduce((sum, p) => sum + p.downloads, 0),
245
245
  totalAuthors: 1,
246
- featured: ['@monomind/plugin-agentic-qe', '@monomind/plugin-prime-radiant', '@monomind/security', '@monomind/claims', '@monomind/teammate-plugin'],
247
- trending: ['@monomind/plugin-agentic-qe', '@monomind/plugin-prime-radiant'],
248
- newest: ['@monomind/plugin-agentic-qe', '@monomind/plugin-prime-radiant'],
249
- official: ['@monomind/plugin-agentic-qe', '@monomind/plugin-prime-radiant', '@monomind/security', '@monomind/claims'],
246
+ featured: ['@monomind/security', '@monomind/claims', '@monomind/teammate-plugin'],
247
+ trending: ['@monomind/teammate-plugin'],
248
+ newest: ['@monomind/teammate-plugin'],
249
+ official: ['@monomind/security', '@monomind/claims'],
250
250
  compatibilityMatrix: [
251
251
  { pluginId: '@monomind/security', pluginVersion: '3.0.0', monomindVersions: ['3.x'], tested: true },
252
252
  ],
@@ -486,124 +486,6 @@ export class PluginDiscoveryService {
486
486
  verified: true,
487
487
  trustLevel: 'official',
488
488
  },
489
- // Agentic QE - AI-powered quality engineering
490
- {
491
- id: '@monomind/plugin-agentic-qe',
492
- name: '@monomind/plugin-agentic-qe',
493
- displayName: 'Agentic Quality Engineering',
494
- description: 'AI-powered quality engineering with 58 agents that write tests, find bugs, predict defects, scan security, and perform chaos engineering safely.',
495
- version: '3.0.0-alpha.3',
496
- cid: 'bafybeiagenticqeplugin2024',
497
- size: 285000,
498
- checksum: 'sha256:agenticqe2024xyz',
499
- author: officialAuthor,
500
- license: 'MIT',
501
- categories: ['ai-ml', 'devops', 'security'],
502
- tags: ['testing', 'qe', 'tdd', 'security', 'chaos-engineering', 'coverage', 'defect-prediction', 'agents'],
503
- keywords: ['quality', 'testing', 'agents', 'tdd', 'security'],
504
- downloads: 1200,
505
- rating: 4.8,
506
- ratingCount: 24,
507
- lastUpdated: baseTime,
508
- createdAt: '2026-01-20T00:00:00Z',
509
- minMonomindVersion: '3.0.0',
510
- dependencies: [
511
- { name: '@monomind/core', version: '^3.0.0' },
512
- ],
513
- type: 'integration',
514
- hooks: [
515
- 'aqe:generate-tests',
516
- 'aqe:analyze-coverage',
517
- 'aqe:security-scan',
518
- 'aqe:predict-defects',
519
- 'aqe:chaos-inject',
520
- ],
521
- commands: [
522
- 'aqe generate-tests',
523
- 'aqe tdd-cycle',
524
- 'aqe security-scan',
525
- 'aqe predict-defects',
526
- 'aqe chaos-inject',
527
- 'aqe quality-gate',
528
- 'aqe visual-regression',
529
- ],
530
- permissions: ['filesystem', 'network', 'memory'],
531
- exports: [
532
- 'TestGenerator',
533
- 'CoverageAnalyzer',
534
- 'SecurityScanner',
535
- 'DefectPredictor',
536
- 'ChaosInjector',
537
- 'QualityGate',
538
- ],
539
- verified: true,
540
- trustLevel: 'official',
541
- securityAudit: {
542
- auditor: 'monomind-security-team',
543
- auditDate: '2026-01-20T00:00:00Z',
544
- auditVersion: '3.0.0-alpha.3',
545
- passed: true,
546
- issues: [],
547
- },
548
- },
549
- // Prime Radiant - Mathematical coherence and consensus verification
550
- {
551
- id: '@monomind/plugin-prime-radiant',
552
- name: '@monomind/plugin-prime-radiant',
553
- displayName: 'Prime Radiant',
554
- description: 'Mathematical AI that catches contradictions, verifies consensus, prevents hallucinations, and analyzes swarm stability using sheaf cohomology and spectral graph theory.',
555
- version: '0.1.5',
556
- cid: 'bafybeiprimeradiantplugin2024',
557
- size: 195000,
558
- checksum: 'sha256:primeradiant2024xyz',
559
- author: officialAuthor,
560
- license: 'MIT',
561
- categories: ['ai-ml', 'agents'],
562
- tags: ['coherence', 'consensus', 'mathematics', 'validation', 'hallucination-prevention', 'spectral', 'causal'],
563
- keywords: ['coherence', 'consensus', 'validation', 'mathematics'],
564
- downloads: 850,
565
- rating: 4.9,
566
- ratingCount: 18,
567
- lastUpdated: baseTime,
568
- createdAt: '2026-01-20T00:00:00Z',
569
- minMonomindVersion: '3.0.0',
570
- dependencies: [
571
- { name: '@monomind/core', version: '^3.0.0' },
572
- ],
573
- type: 'integration',
574
- hooks: [
575
- 'pr:pre-memory-store',
576
- 'pr:pre-consensus',
577
- 'pr:post-swarm-task',
578
- 'pr:pre-rag-retrieval',
579
- ],
580
- commands: [
581
- 'pr coherence-check',
582
- 'pr consensus-verify',
583
- 'pr spectral-analyze',
584
- 'pr causal-infer',
585
- 'pr memory-gate',
586
- 'pr quantum-topology',
587
- ],
588
- permissions: ['memory', 'hooks'],
589
- exports: [
590
- 'CoherenceChecker',
591
- 'ConsensusVerifier',
592
- 'SpectralAnalyzer',
593
- 'CausalInference',
594
- 'MemoryGate',
595
- 'QuantumTopology',
596
- ],
597
- verified: true,
598
- trustLevel: 'official',
599
- securityAudit: {
600
- auditor: 'monomind-security-team',
601
- auditDate: '2026-01-20T00:00:00Z',
602
- auditVersion: '0.1.5',
603
- passed: true,
604
- issues: [],
605
- },
606
- },
607
489
  // Teammate Plugin - Claude Code v2.1.19+ integration
608
490
  {
609
491
  id: '@monomind/teammate-plugin',
@@ -653,8 +535,6 @@ export class PluginDiscoveryService {
653
535
  const basePlugins = this.getDemoPlugins();
654
536
  // Only fetch stats for real npm packages
655
537
  const realNpmPackages = [
656
- '@monomind/plugin-agentic-qe',
657
- '@monomind/plugin-prime-radiant',
658
538
  '@monomind/claims',
659
539
  '@monomind/security',
660
540
  '@monomind/plugins',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/monomindcli",
3
- "version": "1.15.5",
3
+ "version": "1.15.6",
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",