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

@ -46,12 +46,12 @@ export const cloudCommand = {
// Show status
if (config.customerId) {
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)}`);
} else {
console.log(chalk.yellow('📡 Not connected to Brain Cloud'));
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'));
}
return;
@ -77,7 +77,7 @@ export const cloudCommand = {
// Test connection
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();
spinner.succeed('✅ Connected to atomic reactor!');
@ -87,7 +87,7 @@ export const cloudCommand = {
fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
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(' ' + chalk.yellow('brainy add "My first atomic memory"'));
console.log(' ' + chalk.yellow('brainy search "memory"'));
@ -137,7 +137,7 @@ export const cloudCommand = {
const spinner = ora('📦 Exporting atomic memories...').start();
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 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
- **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
- [Connector Development Guide](https://docs.soulcraftlabs.com/brainy/connectors)
- [API Reference](https://docs.soulcraftlabs.com/brainy/api)
- [Connector Development Guide](https://docs.soulcraft.com/brainy/connectors)
- [API Reference](https://docs.soulcraft.com/brainy/api)
- [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` +
`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('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.success('🫙')} Brain Jar (Free) - Local coordination\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('Cancel anytime')}\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' }
))
}
@ -2641,7 +2641,7 @@ export class Cortex {
`${emojis.lock} ${colors.brain('BRAIN CLOUD FEATURE')} ${emojis.atom}\n\n` +
`This feature is available in Brain Cloud!\n\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' }
))
}
@ -2906,7 +2906,7 @@ export class Cortex {
if (!accountResponse.hasAccount) {
console.log('\n' + boxen(
`${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('◆')} Get your API key\n` +
`${colors.accent('◆')} Return here to continue setup`,
@ -2962,7 +2962,7 @@ export class Cortex {
spinner.fail('Setup failed')
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'))
}
}