@monoes/cli 1.2.5 → 1.2.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.
@@ -39,6 +39,10 @@ import { ruvllmWasmTools } from './mcp-tools/ruvllm-tools.js';
39
39
  import { wasmAgentTools } from './mcp-tools/wasm-agent-tools.js';
40
40
  import { guidanceTools } from './mcp-tools/guidance-tools.js';
41
41
  import { autopilotTools } from './mcp-tools/autopilot-tools.js';
42
+ // Knowledge graph tools (graphify)
43
+ import { graphifyTools } from './mcp-tools/graphify-tools.js';
44
+ // Coverage-aware routing tools
45
+ import { coverageRouterTools } from './ruvector/coverage-tools.js';
42
46
  /**
43
47
  * MCP Tool Registry
44
48
  * Maps tool names to their handler functions
@@ -85,6 +89,10 @@ registerTools([
85
89
  ...guidanceTools,
86
90
  // Autopilot persistent completion tools
87
91
  ...autopilotTools,
92
+ // Knowledge graph (graphify) tools — build, query, report, suggest, health
93
+ ...graphifyTools,
94
+ // Coverage-aware routing tools
95
+ ...coverageRouterTools,
88
96
  ]);
89
97
  /**
90
98
  * MCP Client Error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoes/cli",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "type": "module",
5
5
  "description": "Monobrain 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",