chore: Update all domain references to soulcraft.com

- Updated all soulcraftlabs.com references to soulcraft.com
- Updated all soulcraft-research.com references to soulcraft.com
- Updated CLI and documentation to use new domain
This commit is contained in:
David Snelling 2025-08-10 16:45:19 -07:00
parent 5e0c02e363
commit 20aada6661
5 changed files with 19 additions and 19 deletions

View file

@ -260,11 +260,11 @@ program
} else { } else {
console.log(chalk.red('❌ Could not connect to Brain Cloud')) console.log(chalk.red('❌ Could not connect to Brain Cloud'))
console.log(chalk.yellow('💡 Make sure you have an active instance')) console.log(chalk.yellow('💡 Make sure you have an active instance'))
console.log('\nSign up at: ' + chalk.cyan('https://app.soulcraftlabs.com')) console.log('\nSign up at: ' + chalk.cyan('https://app.soulcraft.com'))
} }
} catch (error) { } catch (error) {
console.log(chalk.red('❌ Connection failed:'), error.message) console.log(chalk.red('❌ Connection failed:'), error.message)
console.log('\nSign up at: ' + chalk.cyan('https://app.soulcraftlabs.com')) console.log('\nSign up at: ' + chalk.cyan('https://app.soulcraft.com'))
} }
} else if (options.export) { } else if (options.export) {
console.log(chalk.green(`📦 Exporting data from Brain Cloud instance: ${options.export}`)) console.log(chalk.green(`📦 Exporting data from Brain Cloud instance: ${options.export}`))
@ -322,7 +322,7 @@ program
} else if (options.dashboard) { } else if (options.dashboard) {
console.log(chalk.green(`🌐 Opening dashboard for Brain Cloud instance: ${options.dashboard}`)) console.log(chalk.green(`🌐 Opening dashboard for Brain Cloud instance: ${options.dashboard}`))
const dashboardUrl = `https://app.soulcraftlabs.com/dashboard.html?customer_id=${options.dashboard}` const dashboardUrl = `https://app.soulcraft.com/dashboard.html?customer_id=${options.dashboard}`
console.log(chalk.cyan(`\n🔗 Dashboard URL: ${dashboardUrl}`)) console.log(chalk.cyan(`\n🔗 Dashboard URL: ${dashboardUrl}`))
console.log(chalk.gray('Opening in your default browser...')) console.log(chalk.gray('Opening in your default browser...'))
@ -342,7 +342,7 @@ program
} }
} else { } else {
console.log(chalk.yellow('📡 Brain Cloud Setup')) console.log(chalk.yellow('📡 Brain Cloud Setup'))
console.log('\n1. Sign up at: ' + chalk.cyan('https://app.soulcraftlabs.com')) console.log('\n1. Sign up at: ' + chalk.cyan('https://app.soulcraft.com'))
console.log('2. Get your customer ID') console.log('2. Get your customer ID')
console.log('3. Connect with: ' + chalk.green('brainy cloud --connect YOUR_ID')) console.log('3. Connect with: ' + chalk.green('brainy cloud --connect YOUR_ID'))
console.log('\nBenefits:') console.log('\nBenefits:')

View file

@ -855,10 +855,10 @@ export class ProductionDataService {
## Support ## Support
- **Documentation**: https://soulcraft-research.com/brainy/docs - **Documentation**: https://soulcraft.com/brainy/docs
- **Community**: https://github.com/soulcraftlabs/brainy/discussions - **Community**: https://github.com/soulcraftlabs/brainy/discussions
- **Issues**: https://github.com/soulcraftlabs/brainy/issues - **Issues**: https://github.com/soulcraftlabs/brainy/issues
- **Premium Support**: support@soulcraft-research.com (license holders) - **Premium Support**: support@soulcraft.com (license holders)
--- ---

View file

@ -46,12 +46,12 @@ export const cloudCommand = {
// Show status // Show status
if (config.customerId) { if (config.customerId) {
console.log(chalk.green('✅ Connected to Brain Cloud')); console.log(chalk.green('✅ Connected to Brain Cloud'));
console.log(`🔗 Instance: ${chalk.cyan(`https://brainy-${config.customerId}.soulcraftlabs.com`)}`); console.log(`🔗 Instance: ${chalk.cyan(`https://brainy-${config.customerId}.soulcraft.com`)}`);
console.log(`📊 Customer ID: ${chalk.yellow(config.customerId)}`); console.log(`📊 Customer ID: ${chalk.yellow(config.customerId)}`);
} else { } else {
console.log(chalk.yellow('📡 Not connected to Brain Cloud')); console.log(chalk.yellow('📡 Not connected to Brain Cloud'));
console.log('\nOptions:'); console.log('\nOptions:');
console.log(' 1. Sign up at: ' + chalk.cyan('https://app.soulcraftlabs.com')); console.log(' 1. Sign up at: ' + chalk.cyan('https://app.soulcraft.com'));
console.log(' 2. Connect with: ' + chalk.green('brainy cloud --connect YOUR_ID')); console.log(' 2. Connect with: ' + chalk.green('brainy cloud --connect YOUR_ID'));
} }
return; return;
@ -77,7 +77,7 @@ export const cloudCommand = {
// Test connection // Test connection
try { try {
const response = await fetch(`https://brainy-${config.customerId}.soulcraftlabs.com/health`); const response = await fetch(`https://brainy-${config.customerId}.soulcraft.com/health`);
const data = await response.json(); const data = await response.json();
spinner.succeed('✅ Connected to atomic reactor!'); spinner.succeed('✅ Connected to atomic reactor!');
@ -87,7 +87,7 @@ export const cloudCommand = {
fs.writeFileSync(configPath, JSON.stringify(config, null, 2)); fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
console.log(chalk.green('\n🎉 Brain Cloud connection established!')); console.log(chalk.green('\n🎉 Brain Cloud connection established!'));
console.log(`🔗 Your instance: ${chalk.cyan(`https://brainy-${config.customerId}.soulcraftlabs.com`)}`); console.log(`🔗 Your instance: ${chalk.cyan(`https://brainy-${config.customerId}.soulcraft.com`)}`);
console.log('\nTry these commands:'); console.log('\nTry these commands:');
console.log(' ' + chalk.yellow('brainy add "My first atomic memory"')); console.log(' ' + chalk.yellow('brainy add "My first atomic memory"'));
console.log(' ' + chalk.yellow('brainy search "memory"')); console.log(' ' + chalk.yellow('brainy search "memory"'));
@ -137,7 +137,7 @@ export const cloudCommand = {
const spinner = ora('📦 Exporting atomic memories...').start(); const spinner = ora('📦 Exporting atomic memories...').start();
try { try {
const response = await fetch(`https://brainy-${config.customerId}.soulcraftlabs.com/export`); const response = await fetch(`https://brainy-${config.customerId}.soulcraft.com/export`);
const data = await response.json(); const data = await response.json();
const exportPath = `brainy-export-${Date.now()}.json`; const exportPath = `brainy-export-${Date.now()}.json`;

View file

@ -50,12 +50,12 @@ For production-ready connectors with enterprise features, check out **Brain Clou
- **Slack** - Team communication data - **Slack** - Team communication data
- **And more** - Coming soon - **And more** - Coming soon
Learn more at [soulcraftlabs.com/brain-cloud](https://soulcraftlabs.com/brain-cloud) Learn more at [soulcraft.com/brain-cloud](https://soulcraft.com/brain-cloud)
## 📚 Documentation ## 📚 Documentation
- [Connector Development Guide](https://docs.soulcraftlabs.com/brainy/connectors) - [Connector Development Guide](https://docs.soulcraft.com/brainy/connectors)
- [API Reference](https://docs.soulcraftlabs.com/brainy/api) - [API Reference](https://docs.soulcraft.com/brainy/api)
- [Examples](https://github.com/soulcraft/brainy-examples) - [Examples](https://github.com/soulcraft/brainy-examples)
--- ---

View file

@ -2600,7 +2600,7 @@ export class Cortex {
`${emojis.brain}☁️ ${colors.brain('BRAIN CLOUD PREMIUM FEATURES')}\n\n` + `${emojis.brain}☁️ ${colors.brain('BRAIN CLOUD PREMIUM FEATURES')}\n\n` +
`Premium connectors and features have moved to Brain Cloud!\n\n` + `Premium connectors and features have moved to Brain Cloud!\n\n` +
`${colors.accent('◆')} ${colors.dim('Setup Brain Cloud:')} ${colors.highlight('brainy cloud')}\n` + `${colors.accent('◆')} ${colors.dim('Setup Brain Cloud:')} ${colors.highlight('brainy cloud')}\n` +
`${colors.accent('◆')} ${colors.dim('Learn more:')} ${colors.highlight('https://soulcraftlabs.com/brain-cloud')}\n\n` + `${colors.accent('◆')} ${colors.dim('Learn more:')} ${colors.highlight('https://soulcraft.com/brain-cloud')}\n\n` +
`${colors.retro('Available Tiers:')}\n` + `${colors.retro('Available Tiers:')}\n` +
`${colors.success('🫙')} Brain Jar (Free) - Local coordination\n` + `${colors.success('🫙')} Brain Jar (Free) - Local coordination\n` +
`${colors.success('☁️')} Brain Cloud ($19/mo) - Sync everywhere\n` + `${colors.success('☁️')} Brain Cloud ($19/mo) - Sync everywhere\n` +
@ -2621,7 +2621,7 @@ export class Cortex {
`${colors.accent('◆')} ${colors.dim('No credit card required')}\n` + `${colors.accent('◆')} ${colors.dim('No credit card required')}\n` +
`${colors.accent('◆')} ${colors.dim('Cancel anytime')}\n\n` + `${colors.accent('◆')} ${colors.dim('Cancel anytime')}\n\n` +
`${colors.highlight('Run: brainy cloud')}\n\n` + `${colors.highlight('Run: brainy cloud')}\n\n` +
`Or visit: ${colors.accent('https://soulcraftlabs.com/brain-cloud')}`, `Or visit: ${colors.accent('https://soulcraft.com/brain-cloud')}`,
{ padding: 1, borderStyle: 'round', borderColor: '#FFD700' } { padding: 1, borderStyle: 'round', borderColor: '#FFD700' }
)) ))
} }
@ -2641,7 +2641,7 @@ export class Cortex {
`${emojis.lock} ${colors.brain('BRAIN CLOUD FEATURE')} ${emojis.atom}\n\n` + `${emojis.lock} ${colors.brain('BRAIN CLOUD FEATURE')} ${emojis.atom}\n\n` +
`This feature is available in Brain Cloud!\n\n` + `This feature is available in Brain Cloud!\n\n` +
`${colors.highlight('Setup: brainy cloud')}\n` + `${colors.highlight('Setup: brainy cloud')}\n` +
`${colors.dim('Learn more: https://soulcraftlabs.com/brain-cloud')}`, `${colors.dim('Learn more: https://soulcraft.com/brain-cloud')}`,
{ padding: 1, borderStyle: 'round', borderColor: '#D67441' } { padding: 1, borderStyle: 'round', borderColor: '#D67441' }
)) ))
} }
@ -2906,7 +2906,7 @@ export class Cortex {
if (!accountResponse.hasAccount) { if (!accountResponse.hasAccount) {
console.log('\n' + boxen( console.log('\n' + boxen(
`${emojis.sparkles} ${colors.brain('CREATE YOUR ACCOUNT')}\n\n` + `${emojis.sparkles} ${colors.brain('CREATE YOUR ACCOUNT')}\n\n` +
`${colors.accent('◆')} Visit: ${colors.highlight('https://soulcraftlabs.com/brain-cloud')}\n` + `${colors.accent('◆')} Visit: ${colors.highlight('https://soulcraft.com/brain-cloud')}\n` +
`${colors.accent('◆')} Click "Start Free Trial"\n` + `${colors.accent('◆')} Click "Start Free Trial"\n` +
`${colors.accent('◆')} Get your API key\n` + `${colors.accent('◆')} Get your API key\n` +
`${colors.accent('◆')} Return here to continue setup`, `${colors.accent('◆')} Return here to continue setup`,
@ -2962,7 +2962,7 @@ export class Cortex {
spinner.fail('Setup failed') spinner.fail('Setup failed')
console.error(colors.error('Error:'), error.message) console.error(colors.error('Error:'), error.message)
console.log('\n' + colors.dim('Need help? Visit https://soulcraftlabs.com/brain-cloud/support')) console.log('\n' + colors.dim('Need help? Visit https://soulcraft.com/brain-cloud/support'))
} }
} }