agentic-flow 1.4.7 → 1.4.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/dist/cli-proxy.js +8 -1
- package/package.json +1 -1
package/dist/cli-proxy.js
CHANGED
|
@@ -30,6 +30,7 @@ import { logger } from "./utils/logger.js";
|
|
|
30
30
|
import { parseArgs } from "./utils/cli.js";
|
|
31
31
|
import { getAgent, listAgents } from "./utils/agentLoader.js";
|
|
32
32
|
import { claudeAgent } from "./agents/claudeAgent.js";
|
|
33
|
+
import { handleReasoningBankCommand } from "./utils/reasoningbankCommands.js";
|
|
33
34
|
import { handleConfigCommand } from "./cli/config-wizard.js";
|
|
34
35
|
import { handleAgentCommand } from "./cli/agent-manager.js";
|
|
35
36
|
import { ModelOptimizer } from "./utils/modelOptimizer.js";
|
|
@@ -53,7 +54,7 @@ class AgenticFlowCLI {
|
|
|
53
54
|
process.exit(0);
|
|
54
55
|
}
|
|
55
56
|
// If no mode and no agent specified, show help
|
|
56
|
-
if (!options.agent && options.mode !== 'list' && !['config', 'agent-manager', 'mcp-manager', 'proxy', 'claude-code', 'mcp'].includes(options.mode)) {
|
|
57
|
+
if (!options.agent && options.mode !== 'list' && !['config', 'agent-manager', 'mcp-manager', 'proxy', 'claude-code', 'mcp', 'reasoningbank'].includes(options.mode)) {
|
|
57
58
|
this.printHelp();
|
|
58
59
|
process.exit(0);
|
|
59
60
|
}
|
|
@@ -132,6 +133,12 @@ class AgenticFlowCLI {
|
|
|
132
133
|
process.on('SIGTERM', () => proc.kill('SIGTERM'));
|
|
133
134
|
return;
|
|
134
135
|
}
|
|
136
|
+
if (options.mode === 'reasoningbank') {
|
|
137
|
+
// Handle ReasoningBank commands
|
|
138
|
+
const subcommand = process.argv[3] || 'help';
|
|
139
|
+
await handleReasoningBankCommand(subcommand);
|
|
140
|
+
process.exit(0);
|
|
141
|
+
}
|
|
135
142
|
// Apply model optimization if requested
|
|
136
143
|
if (options.optimize && options.agent && options.task) {
|
|
137
144
|
const recommendation = ModelOptimizer.optimize({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, ReasoningBank learning memory, 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",
|