mira-consciousness
Version:
Memory & Intelligence Retention Archive - Preserving The Spark
16 lines • 513 B
JavaScript
import chalk from 'chalk';
import { execSync } from 'child_process';
export async function setupCommand() {
console.log(chalk.blue('🔧 Running MIRA setup...'));
try {
// Run the setup script
execSync('node ' + require.resolve('../../scripts/setup.js'), {
stdio: 'inherit'
});
}
catch (error) {
console.error(chalk.red('Setup failed:'), error instanceof Error ? error.message : error);
process.exit(1);
}
}
//# sourceMappingURL=setup.js.map