@monoes/cli 1.2.4 → 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.
|
@@ -457,6 +457,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
457
457
|
(_opts) => cliCommandsTable(),
|
|
458
458
|
(_opts) => agentTypes(),
|
|
459
459
|
(_opts) => memoryCommands(),
|
|
460
|
+
(_opts) => graphifySection(),
|
|
460
461
|
(_opts) => setupAndBoundary(),
|
|
461
462
|
],
|
|
462
463
|
performance: [
|
|
@@ -473,6 +474,7 @@ const TEMPLATE_SECTIONS = {
|
|
|
473
474
|
(_opts) => cliCommandsTable(),
|
|
474
475
|
(_opts) => agentTypes(),
|
|
475
476
|
(_opts) => memoryCommands(),
|
|
477
|
+
(_opts) => graphifySection(),
|
|
476
478
|
(_opts) => intelligenceSystem(),
|
|
477
479
|
(_opts) => setupAndBoundary(),
|
|
478
480
|
],
|
package/dist/src/mcp-client.js
CHANGED
|
@@ -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.
|
|
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",
|
|
@@ -84,18 +84,11 @@
|
|
|
84
84
|
"vitest": "^4.1.4"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"@monoes/graph": "
|
|
88
|
-
"@monobrain/mcp": "workspace:*",
|
|
89
|
-
"@monobrain/shared": "workspace:*",
|
|
87
|
+
"@monoes/graph": "^1.3.0",
|
|
90
88
|
"@noble/ed25519": "^2.1.0",
|
|
91
89
|
"semver": "^7.6.0"
|
|
92
90
|
},
|
|
93
91
|
"optionalDependencies": {
|
|
94
|
-
"@monobrain/aidefence": "workspace:*",
|
|
95
|
-
"@monobrain/codex": "workspace:*",
|
|
96
|
-
"@monobrain/embeddings": "workspace:*",
|
|
97
|
-
"@monobrain/guidance": "workspace:*",
|
|
98
|
-
"@monobrain/memory": "workspace:*",
|
|
99
92
|
"@monobrain/plugin-gastown-bridge": "^0.1.3",
|
|
100
93
|
"agentic-flow": "^3.0.0-alpha.1",
|
|
101
94
|
"@ruvector/attention": "^0.1.4",
|
|
@@ -103,9 +96,7 @@
|
|
|
103
96
|
"@ruvector/router": "^0.1.27",
|
|
104
97
|
"@ruvector/rvagent-wasm": "^0.1.0",
|
|
105
98
|
"@ruvector/ruvllm-wasm": "^2.0.2",
|
|
106
|
-
"@ruvector/sona": "^0.1.5"
|
|
107
|
-
"@monobrain/routing": "workspace:*",
|
|
108
|
-
"@monobrain/security": "workspace:*"
|
|
99
|
+
"@ruvector/sona": "^0.1.5"
|
|
109
100
|
},
|
|
110
101
|
"publishConfig": {
|
|
111
102
|
"access": "public",
|