feat: v0.57.0 - rename CLI to brainy and Neural Import to Cortex

BREAKING CHANGES:
- CLI command renamed from 'cortex' to 'brainy'
- Neural Import renamed to Cortex augmentation
- Class CortexSenseAugmentation (was NeuralImportSenseAugmentation)

Benefits:
- npx @soulcraft/brainy now works automatically
- Better conceptual clarity: Cortex = AI intelligence layer
- Cleaner architecture: CLI = brainy, AI = Cortex, DB = BrainyData
This commit is contained in:
David Snelling 2025-08-07 20:13:02 -07:00
parent 27ce6c242d
commit bd39b71fbf
9 changed files with 136 additions and 88 deletions

View file

@ -24,7 +24,7 @@
| Component | Size | When Loaded | Impact |
|-----------|------|------------|---------|
| Core Brainy | 643KB | Always | Baseline |
| Neural Import | +12KB | On demand | Optional |
| Cortex | +12KB | On demand | Optional |
| Premium Connectors | +8KB each | Never (external) | **0%** |
| Monitoring | +5KB | On demand | Optional |
| Chat Interface | +7KB | On demand | Optional |
@ -70,7 +70,7 @@ const brainy = new BrainyData({
## 📈 Actually IMPROVES Performance
### 1. Smarter Caching
- Neural Import pre-processes data for faster searches
- Cortex pre-processes data for faster searches
- Augmentation pipeline can cache intermediate results
- 95%+ cache hit rates on repeated operations
@ -187,7 +187,7 @@ const brainy = new BrainyData({
### Customer C: AI Chat Platform
- **Dataset**: 100K documents
- **Usage**: RAG with chat interface
- **Impact**: 30% faster responses (Neural Import preprocessing)
- **Impact**: 30% faster responses (Cortex preprocessing)
---