agentic-flow 1.2.5 → 1.2.7
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/dist/agents/claudeAgent.js +7 -7
- package/dist/cli-proxy.js +5 -0
- package/package.json +1 -1
|
@@ -103,13 +103,13 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
|
|
|
103
103
|
try {
|
|
104
104
|
// MCP server setup - enable in-SDK server and optional external servers
|
|
105
105
|
const mcpServers = {};
|
|
106
|
-
// Enable in-SDK MCP server for custom tools
|
|
107
|
-
if (process.env.ENABLE_CLAUDE_FLOW_SDK
|
|
106
|
+
// Enable in-SDK MCP server for custom tools (enabled by default)
|
|
107
|
+
if (process.env.ENABLE_CLAUDE_FLOW_SDK !== 'false') {
|
|
108
108
|
mcpServers['claude-flow-sdk'] = claudeFlowSdkServer;
|
|
109
109
|
}
|
|
110
|
-
//
|
|
111
|
-
//
|
|
112
|
-
if (process.env.ENABLE_CLAUDE_FLOW_MCP
|
|
110
|
+
// External MCP servers (enabled by default for full 213-tool access)
|
|
111
|
+
// Disable by setting ENABLE_CLAUDE_FLOW_MCP=false
|
|
112
|
+
if (process.env.ENABLE_CLAUDE_FLOW_MCP !== 'false') {
|
|
113
113
|
mcpServers['claude-flow'] = {
|
|
114
114
|
type: 'stdio',
|
|
115
115
|
command: 'npx',
|
|
@@ -121,7 +121,7 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
|
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
123
|
}
|
|
124
|
-
if (process.env.ENABLE_FLOW_NEXUS_MCP
|
|
124
|
+
if (process.env.ENABLE_FLOW_NEXUS_MCP !== 'false') {
|
|
125
125
|
mcpServers['flow-nexus'] = {
|
|
126
126
|
type: 'stdio',
|
|
127
127
|
command: 'npx',
|
|
@@ -132,7 +132,7 @@ export async function claudeAgent(agent, input, onStream, modelOverride) {
|
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
134
|
}
|
|
135
|
-
if (process.env.ENABLE_AGENTIC_PAYMENTS_MCP
|
|
135
|
+
if (process.env.ENABLE_AGENTIC_PAYMENTS_MCP !== 'false') {
|
|
136
136
|
mcpServers['agentic-payments'] = {
|
|
137
137
|
type: 'stdio',
|
|
138
138
|
command: 'npx',
|
package/dist/cli-proxy.js
CHANGED
|
@@ -49,6 +49,11 @@ class AgenticFlowCLI {
|
|
|
49
49
|
this.printHelp();
|
|
50
50
|
process.exit(0);
|
|
51
51
|
}
|
|
52
|
+
// If no mode and no agent specified, show help
|
|
53
|
+
if (!options.agent && options.mode !== 'list' && !['config', 'agent-manager', 'mcp-manager', 'proxy', 'claude-code', 'mcp'].includes(options.mode)) {
|
|
54
|
+
this.printHelp();
|
|
55
|
+
process.exit(0);
|
|
56
|
+
}
|
|
52
57
|
if (options.mode === 'list') {
|
|
53
58
|
this.listAgents();
|
|
54
59
|
process.exit(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|