Files
ruvnet__ruflo/bin/cli.js
rUv 4603300368 feat: Ruflo v3.5.0 — first major stable release with full agentic-flow integration
Rebranding from Claude Flow to Ruflo. Includes:
- agentic-flow v3.0.0-alpha.1 deep integration (10 subpath exports)
- AgentDB v3.0.0-alpha.9 with 8 controllers + 6 MCP tools
- Unified agentic-flow bridge with tiered embedding resolution
- Security hardening (command injection fix, TOCTOU race fix)
- Doctor health check for agentic-flow
- 22 agent/skill files updated to v3.0.0-alpha.1
- ADR-054, ADR-055, ADR-056
- Comprehensive CHANGELOG from 5,800+ commits
- All 3 packages bumped to 3.5.0

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-02-27 22:37:14 +00:00

12 lines
427 B
JavaScript
Executable File

#!/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);