@aigentic/ruflo 3.7.0-alpha.69 → 3.7.0-alpha.70
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/bin/ruflo.js +3 -3
- package/package.json +2 -2
package/bin/ruflo.js
CHANGED
|
@@ -6,11 +6,11 @@ import { existsSync } from 'node:fs';
|
|
|
6
6
|
|
|
7
7
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
8
8
|
|
|
9
|
-
// Walk up from ruflo/bin/ to find @
|
|
9
|
+
// Walk up from ruflo/bin/ to find @aigentic/cli in node_modules
|
|
10
10
|
function findCliPath() {
|
|
11
11
|
let dir = resolve(__dirname, '..');
|
|
12
12
|
for (let i = 0; i < 10; i++) {
|
|
13
|
-
const candidate = join(dir, 'node_modules', '@
|
|
13
|
+
const candidate = join(dir, 'node_modules', '@aigentic', 'cli', 'bin', 'cli.js');
|
|
14
14
|
if (existsSync(candidate)) return dir;
|
|
15
15
|
const parent = dirname(dir);
|
|
16
16
|
if (parent === dir) break;
|
|
@@ -26,7 +26,7 @@ function toImportURL(filePath) {
|
|
|
26
26
|
|
|
27
27
|
const pkgDir = findCliPath();
|
|
28
28
|
const cliBase = pkgDir
|
|
29
|
-
? join(pkgDir, 'node_modules', '@
|
|
29
|
+
? join(pkgDir, 'node_modules', '@aigentic', 'cli')
|
|
30
30
|
: resolve(__dirname, '../../v3/@claude-flow/cli');
|
|
31
31
|
|
|
32
32
|
// MCP mode: delegate to cli.js directly (branding irrelevant for JSON-RPC)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigentic/ruflo",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.70",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration platform. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "bin/ruflo.js",
|
|
6
6
|
"type": "module",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"package:rvf": "bash src/scripts/package-rvf.sh"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@aigentic/cli": "^3.7.0-alpha.
|
|
43
|
+
"@aigentic/cli": "^3.7.0-alpha.70"
|
|
44
44
|
},
|
|
45
45
|
"overrides": {
|
|
46
46
|
"@ruvector/rvf-wasm": "0.1.5",
|