@soulcraft/brainy 0.62.1 → 0.62.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,9 +9,8 @@
9
9
  [![Node.js](https://img.shields.io/badge/node-%3E%3D24.4.1-brightgreen.svg)](https://nodejs.org/)
10
10
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.4.5-blue.svg)](https://www.typescriptlang.org/)
11
11
 
12
- # 🧠 BRAINY: Your AI-Powered Second Brain
12
+ # The World's First Multi-Dimensional AI Database™
13
13
 
14
- **The World's First Multi-Dimensional AI Database™**
15
14
  *Vector similarity • Graph relationships • Metadata facets • Neural understanding*
16
15
 
17
16
  **Build AI apps that actually understand your data - in minutes, not months**
package/bin/brainy.js CHANGED
@@ -537,7 +537,7 @@ augment
537
537
  }
538
538
 
539
539
  console.log(chalk.dim('🚀 Join Early Access: https://soulcraft.com/brain-cloud'))
540
- console.log(chalk.dim('📦 Install: npm install @soulcraft/brain-cloud'))
540
+ console.log(chalk.dim('🌐 Authenticate: brainy cloud auth'))
541
541
  }))
542
542
 
543
543
  augment
@@ -595,7 +595,7 @@ augment
595
595
  tier: 'Premium',
596
596
  popular: true,
597
597
  example: `
598
- import { AIMemory } from '@soulcraft/brain-cloud'
598
+ // AI Memory auto-loads after 'brainy cloud auth' - no imports needed!
599
599
 
600
600
  const cortex = new Cortex()
601
601
  cortex.register(new AIMemory())
@@ -718,7 +718,7 @@ program
718
718
  console.log(' • More at app.soulcraft.com/augmentations')
719
719
  console.log('')
720
720
  console.log(chalk.dim('Sign up: app.soulcraft.com (14-day free trial)'))
721
- console.log(chalk.dim('Install: npm install @soulcraft/brain-cloud'))
721
+ console.log(chalk.dim('Authenticate: brainy cloud auth'))
722
722
  } else {
723
723
  await cortex.listAugmentations()
724
724
  }
@@ -1233,18 +1233,18 @@ async function installBrainCloudPackage() {
1233
1233
  const hasPackageJson = existsSync('package.json')
1234
1234
 
1235
1235
  if (hasPackageJson) {
1236
- await execWithProgress('npm install @soulcraft/brain-cloud')
1236
+ // Auto-configured with 'brainy cloud auth' - no package installation needed!
1237
1237
  console.log('✅ Brain Cloud package installed in current project')
1238
1238
  } else {
1239
1239
  // Install globally for non-project usage
1240
- await execWithProgress('npm install -g @soulcraft/brain-cloud')
1240
+ console.log(' Run \'brainy cloud auth\' to authenticate and auto-configure')
1241
1241
  console.log('✅ Brain Cloud package installed globally')
1242
1242
  }
1243
1243
 
1244
1244
  } catch (error) {
1245
1245
  stopSpinner()
1246
1246
  console.log('⚠️ Could not auto-install Brain Cloud package')
1247
- console.log(' You can install it manually: npm install @soulcraft/brain-cloud')
1247
+ console.log(' Authenticate manually: brainy cloud auth')
1248
1248
  // Don't throw error, this is optional
1249
1249
  }
1250
1250
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulcraft/brainy",
3
- "version": "0.62.1",
3
+ "version": "0.62.3",
4
4
  "description": "Multi-Dimensional AI Database - Vector similarity, graph relationships, metadata facets with HNSW indexing and OPFS storage",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",