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

29 lines 966 B
/** * V3 CLI RuVector PostgreSQL Bridge Command * Management commands for RuVector PostgreSQL integration * * Features: * - ruvector/pgvector integration for vector operations * - Attention mechanism embeddings * - Graph Neural Network support * - Hyperbolic embeddings (Poincare ball) * - Performance benchmarking * - Migration management * * Created with care by ruv.io */ import type { Command } from '../../types.js'; /** * RuVector PostgreSQL Bridge main command */ export declare const ruvectorCommand: Command; export default ruvectorCommand; export { initCommand } from './init.js'; export { setupCommand } from './setup.js'; export { importCommand } from './import.js'; export { migrateCommand } from './migrate.js'; export { statusCommand } from './status.js'; export { benchmarkCommand } from './benchmark.js'; export { optimizeCommand } from './optimize.js'; export { backupCommand } from './backup.js'; //# sourceMappingURL=index.d.ts.map