feat: add 'brainy cloud' super command for simplified setup
- Add new 'brainy cloud' command for one-step Brain Cloud setup - Update CLI help text to highlight Brain Cloud as primary offering - Clean up premium licensing methods - redirect to Brain Cloud - Simplify connectors README to focus on open-source interfaces - Remove quantum vault references from core brainy repo The premium features now live in the brain-cloud repository. Users can setup everything with a simple 'brainy cloud' command. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
599d32f2e0
commit
f38fa5a544
3 changed files with 206 additions and 234 deletions
|
|
@ -258,6 +258,20 @@ program
|
|||
}
|
||||
}))
|
||||
|
||||
// ========================================
|
||||
// BRAIN CLOUD SUPER COMMAND (New!)
|
||||
// ========================================
|
||||
|
||||
program
|
||||
.command('cloud')
|
||||
.description('☁️ Setup Brain Cloud - AI coordination across all devices')
|
||||
.option('-m, --mode <type>', 'Setup mode (free|premium)', 'interactive')
|
||||
.option('-k, --key <key>', 'License key for premium features')
|
||||
.option('-s, --skip-install', 'Skip Brain Jar installation')
|
||||
.action(wrapInteractive(async (options) => {
|
||||
await cortex.setupBrainCloud(options)
|
||||
}))
|
||||
|
||||
// ========================================
|
||||
// BRAIN JAR SPECIFIC COMMANDS (Rich UX)
|
||||
// ========================================
|
||||
|
|
@ -398,7 +412,10 @@ program.parse(process.argv)
|
|||
|
||||
// Show help if no command
|
||||
if (!process.argv.slice(2).length) {
|
||||
console.log(chalk.cyan('🧠 Brainy - Vector + Graph Database with AI Coordination'))
|
||||
console.log(chalk.cyan('🧠☁️ Brainy - AI Coordination Service'))
|
||||
console.log('')
|
||||
console.log(chalk.bold('One-Command Setup:'))
|
||||
console.log(chalk.green(' brainy cloud # Setup Brain Cloud (recommended!)'))
|
||||
console.log('')
|
||||
console.log(chalk.bold('Quick Start:'))
|
||||
console.log(' brainy init # Initialize project')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue