UNPKG

claude-flow-multilang

Version:

Revolutionary multilingual AI orchestration framework with cultural awareness and DDD architecture

64 lines (53 loc) 1.91 kB
#!/usr/bin/env node /** * CLI command wrapper for migrate-hooks script */ import { execSync } from 'child_process'; import path from 'path'; import { fileURLToPath } from 'url'; import { promises as fs } from 'fs'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); export async function migrateHooksCommand(flags, args) { console.log('🔄 Claude Flow Hooks Migration\n'); try { // Find the migration script const scriptPath = path.join(__dirname, '../../../scripts/migrate-hooks.js'); // Check if script exists try { await fs.access(scriptPath); } catch { console.error('❌ Migration script not found. Please ensure you have the latest version.'); process.exit(1); } // Build command with any additional arguments const command = ['node', scriptPath]; if (args.length > 0) { command.push(...args); } // Execute the migration script execSync(command.join(' '), { stdio: 'inherit', cwd: process.cwd(), }); } catch (error) { console.error('❌ Migration failed:', error.message); process.exit(1); } } // Export the command configuration export const migrateHooksCommandConfig = { handler: migrateHooksCommand, description: 'Migrate settings.json hooks to Claude Code 1.0.51+ format', usage: 'migrate-hooks [settings-file]', examples: [ 'claude-flow migrate-hooks # Migrate all found settings.json files', 'claude-flow migrate-hooks .claude/settings.json # Migrate specific file', ], details: ` Migrates old hooks format to new Claude Code 1.0.51+ format: • Converts object-based hooks to array-based format • Creates backup before making changes • Removes unsupported fields (mcpServers, features, performance) • Searches common locations if no file specified The migration is safe and creates backups of original files.`, };