UNPKG

claude-flow

Version:

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

12 lines (10 loc) 427 B
#!/usr/bin/env node /** * Claude Flow CLI - Umbrella entry point * Proxies to @claude-flow/cli bin for cross-platform compatibility. */ import { pathToFileURL, fileURLToPath } from 'node:url'; import { dirname, join } from 'node:path'; const __dirname = dirname(fileURLToPath(import.meta.url)); const cliPath = join(__dirname, '..', 'v3', '@claude-flow', 'cli', 'bin', 'cli.js'); await import(pathToFileURL(cliPath).href);