claude-flow 3.7.0-alpha.25 → 3.7.0-alpha.26

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": "claude-flow",
3
- "version": "3.7.0-alpha.25",
3
+ "version": "3.7.0-alpha.26",
4
4
  "description": "Ruflo - 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",
@@ -41,6 +41,10 @@ import { ruvllmWasmTools } from './mcp-tools/ruvllm-tools.js';
41
41
  import { wasmAgentTools } from './mcp-tools/wasm-agent-tools.js';
42
42
  import { guidanceTools } from './mcp-tools/guidance-tools.js';
43
43
  import { autopilotTools } from './mcp-tools/autopilot-tools.js';
44
+ // #1916: coverage-aware routing tools — defined in ruvector/coverage-tools.ts
45
+ // but were never registered, so the `ruflo hooks coverage-*` CLI subcommands
46
+ // failed with `Tool not found: hooks_coverage-route`.
47
+ import { coverageRouterTools } from './ruvector/coverage-tools.js';
44
48
  // #1605: Only register browser tools if agent-browser is available
45
49
  let _browserAvailable = null;
46
50
  function getBrowserTools() {
@@ -111,6 +115,8 @@ registerTools([
111
115
  ...guidanceTools,
112
116
  // Autopilot persistent completion tools
113
117
  ...autopilotTools,
118
+ // #1916: coverage-aware routing (hooks_coverage-route / -suggest / -gaps)
119
+ ...coverageRouterTools,
114
120
  ]);
115
121
  /**
116
122
  * MCP Client Error
@@ -14,7 +14,7 @@ import { coverageRoute, coverageSuggest, coverageGaps, } from './coverage-router
14
14
  export const hooksCoverageRoute = {
15
15
  name: 'hooks_coverage-route',
16
16
  description: 'Route task to agents based on test coverage gaps (ruvector integration)',
17
- category: 'coverage',
17
+ category: 'hooks',
18
18
  tags: ['coverage', 'routing', 'testing', 'ruvector'],
19
19
  inputSchema: {
20
20
  type: 'object',
@@ -59,7 +59,7 @@ export const hooksCoverageRoute = {
59
59
  export const hooksCoverageSuggest = {
60
60
  name: 'hooks_coverage-suggest',
61
61
  description: 'Suggest coverage improvements for a path (ruvector integration)',
62
- category: 'coverage',
62
+ category: 'hooks',
63
63
  tags: ['coverage', 'suggestions', 'testing', 'ruvector'],
64
64
  inputSchema: {
65
65
  type: 'object',
@@ -109,7 +109,7 @@ export const hooksCoverageSuggest = {
109
109
  export const hooksCoverageGaps = {
110
110
  name: 'hooks_coverage-gaps',
111
111
  description: 'List all coverage gaps with priority scoring and agent assignments',
112
- category: 'coverage',
112
+ category: 'hooks',
113
113
  tags: ['coverage', 'gaps', 'testing', 'analysis'],
114
114
  inputSchema: {
115
115
  type: 'object',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.7.0-alpha.25",
3
+ "version": "3.7.0-alpha.26",
4
4
  "type": "module",
5
5
  "description": "Ruflo 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",