ruflo 3.7.0-alpha.23 → 3.7.0-alpha.25
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": "ruflo",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.25",
|
|
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",
|
package/src/mcp-bridge/index.js
CHANGED
|
@@ -256,7 +256,7 @@ const BACKEND_DEFS = [
|
|
|
256
256
|
{ name: "agentic-flow", command: "npx", args: ["-y", "agentic-flow@alpha", "mcp", "start"], groups: ["agentic-flow"] },
|
|
257
257
|
{ name: "claude", command: "claude", args: ["mcp", "serve"], groups: ["claude-code"] },
|
|
258
258
|
{ name: "gemini-mcp", command: "npx", args: ["-y", "gemini-mcp-server"], groups: ["gemini"] },
|
|
259
|
-
{ name: "codex", command: "npx", args: ["-y", "@openai/codex", "mcp"
|
|
259
|
+
{ name: "codex", command: "npx", args: ["-y", "@openai/codex", "mcp-server"], groups: ["codex"] },
|
|
260
260
|
];
|
|
261
261
|
|
|
262
262
|
const mcpBackends = new Map();
|
|
@@ -261,7 +261,7 @@ const BACKEND_DEFS = [
|
|
|
261
261
|
{ name: "agentic-flow", command: "npx", args: ["-y", "agentic-flow@alpha", "mcp", "start"], groups: ["agentic-flow"] },
|
|
262
262
|
{ name: "claude", command: "claude", args: ["mcp", "serve"], groups: ["claude-code"] },
|
|
263
263
|
{ name: "gemini-mcp", command: "npx", args: ["-y", "gemini-mcp-server"], groups: ["gemini"] },
|
|
264
|
-
{ name: "codex", command: "npx", args: ["-y", "@openai/codex", "mcp"
|
|
264
|
+
{ name: "codex", command: "npx", args: ["-y", "@openai/codex", "mcp-server"], groups: ["codex"] },
|
|
265
265
|
];
|
|
266
266
|
|
|
267
267
|
const mcpBackends = new Map();
|