claude-flow 3.6.7 → 3.6.8
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.6.
|
|
3
|
+
"version": "3.6.8",
|
|
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",
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* CLI integration for @claude-flow/browser package.
|
|
5
5
|
* Provides browser automation tools for web navigation, interaction, and data extraction.
|
|
6
6
|
*/
|
|
7
|
+
import { readFileSync, existsSync } from 'node:fs';
|
|
7
8
|
import { validateIdentifier, validateText } from './validate-input.js';
|
|
8
9
|
// Session registry for multi-session support
|
|
9
10
|
const browserSessions = new Map();
|
|
@@ -82,7 +83,6 @@ async function execBrowserCommand(args, session = 'default') {
|
|
|
82
83
|
*/
|
|
83
84
|
function readSysctl(name) {
|
|
84
85
|
try {
|
|
85
|
-
const { readFileSync, existsSync } = require('fs');
|
|
86
86
|
const p = `/proc/sys/kernel/${name}`;
|
|
87
87
|
if (existsSync(p))
|
|
88
88
|
return readFileSync(p, 'utf-8').trim();
|
|
@@ -148,7 +148,7 @@ export const browserTools = [
|
|
|
148
148
|
if (waitUntil)
|
|
149
149
|
args.push('--wait-until', waitUntil);
|
|
150
150
|
if (launchArgs.length > 0)
|
|
151
|
-
args.push('--args', launchArgs.join('
|
|
151
|
+
args.push('--args', launchArgs.join(','));
|
|
152
152
|
// Create session if new
|
|
153
153
|
const sessionId = session || 'default';
|
|
154
154
|
if (!browserSessions.has(sessionId)) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.8",
|
|
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",
|