mirror of
https://github.com/ruvnet/ruflo.git
synced 2026-09-14 14:01:28 +08:00
4603300368
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>
12 lines
427 B
JavaScript
Executable File
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);
|