agentic-flow 1.1.3 → 1.1.4

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 CHANGED
@@ -41,6 +41,10 @@ class AgenticFlowCLI {
41
41
  proxyPort = 3000;
42
42
  async start() {
43
43
  const options = parseArgs();
44
+ if (options.version) {
45
+ console.log(`agentic-flow v${VERSION}`);
46
+ process.exit(0);
47
+ }
44
48
  if (options.help) {
45
49
  this.printHelp();
46
50
  process.exit(0);
package/dist/utils/cli.js CHANGED
@@ -28,6 +28,10 @@ export function parseArgs() {
28
28
  case '-h':
29
29
  options.help = true;
30
30
  break;
31
+ case '--version':
32
+ case '-v':
33
+ options.version = true;
34
+ break;
31
35
  case '--agent':
32
36
  case '-a':
33
37
  options.mode = 'agent';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-flow",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Production-ready AI agent orchestration platform with 66 specialized agents, 111 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",