brainy/src
David Snelling 98bf98a228 feat: Complete the 9 Unified Methods with augment() and export()! 🎯
BREAKING CHANGE: Brainy 1.0 now has 9 unified methods (odd numbers FTW!)

THE 9 UNIFIED METHODS:
1. add() - Smart data addition
2. search() - Unified search
3. import() - Bulk import
4. addNoun() - Typed entities
5. addVerb() - Relationships
6. update() - Smart updates
7. delete() - Soft delete
8. augment() - Complete augmentation management 
9. export() - Universal data export 

Key improvements:
- Renamed register() to augment() for consistency
- Made augment() super flexible - handles ALL operations:
  - augment(new MyAugmentation()) - Register
  - augment('list') - List all with status
  - augment('enable', 'name') - Enable
  - augment('disable', 'name') - Disable
  - augment('unregister', 'name') - Remove
  - augment('enable-type', 'sense') - Bulk enable
- Added export() as 9th method for data portability:
  - Export as JSON, CSV, Graph, or Embeddings
  - Filter, limit, include/exclude options
  - Perfect for backups, migrations, integrations

Documentation:
- Created AUGMENTATION-GUIDE.md - Super simple guide
- Updated UNIFIED-API.md for all 9 methods
- Fixed misleading community package references
- Updated README with 9 methods everywhere

CLI commands now perfectly mirror the API:
- brainy augment <action> - Matches augment() method
- brainy export - Matches export() method

From 40+ methods → 9 unified methods (78% reduction!)
'Make the simple things simple, and the complex things possible'
2025-08-14 12:29:47 -07:00
..
augmentations feat: implement standard noun/verb types and processing transparency 2025-08-12 11:50:08 -07:00
chat 🚀 Brainy 1.0.0-rc.1 - Complete Unified API Implementation (#5) 2025-08-14 11:27:22 -07:00
cli Fix TypeScript compilation errors in catalog 2025-08-11 13:36:31 -07:00
connectors feat: implement standard noun/verb types and processing transparency 2025-08-12 11:50:08 -07:00
cortex 🚀 Brainy 1.0.0-rc.1 - Complete Unified API Implementation (#5) 2025-08-14 11:27:22 -07:00
distributed feat: add universal adapters for browser compatibility 2025-08-08 15:22:38 -07:00
errors **feat: implement robust error-handling and operation utilities for storage adapters** 2025-07-30 11:35:09 -07:00
examples refactor: clean up deprecated functions and unused code 2025-08-05 10:16:05 -07:00
hnsw fix: correct typo in README major updates section 2025-08-06 12:29:32 -07:00
mcp fix: enhance universal fs interface with encoding and withFileTypes support 2025-08-09 14:42:20 -07:00
shared feat: Add web UI mode to brainy chat CLI 2025-08-12 18:19:38 -07:00
storage feat: Remove dangerous getAllNouns/getAllVerbs methods, add safe pagination 2025-08-10 16:25:12 -07:00
types feat: release v0.56.0 - Cortex CLI complete implementation & TypeScript fixes 2025-08-07 19:59:19 -07:00
universal fix: enhance universal fs interface with encoding and withFileTypes support 2025-08-09 14:42:20 -07:00
utils Fix Brain Cloud documentation and clarify it's a service, not a package 2025-08-12 08:37:10 -07:00
augmentationFactory.ts Initial commit 2025-06-24 11:41:30 -07:00
augmentationPipeline.ts feat: implement standard noun/verb types and processing transparency 2025-08-12 11:50:08 -07:00
augmentationRegistry.ts Initial commit 2025-06-24 11:41:30 -07:00
augmentationRegistryLoader.ts Initial commit 2025-06-24 11:41:30 -07:00
brainyData.ts feat: Complete the 9 Unified Methods with augment() and export()! 🎯 2025-08-14 12:29:47 -07:00
browserFramework.minimal.ts feat: add universal adapters for browser compatibility 2025-08-08 15:22:38 -07:00
browserFramework.ts refactor: simplify build system and improve model loading flexibility 2025-08-05 16:09:30 -07:00
coreTypes.ts feat: Remove dangerous getAllNouns/getAllVerbs methods, add safe pagination 2025-08-10 16:25:12 -07:00
cortex.ts feat: Simplify architecture with Cortex orchestrator and clear augmentation tiers 2025-08-11 09:40:37 -07:00
demo.ts feat\!: migrate from TensorFlow.js to Transformers.js with ONNX Runtime 2025-08-05 19:29:59 -07:00
index.ts 🚀 Brainy 1.0.0-rc.1 - Complete Unified API Implementation (#5) 2025-08-14 11:27:22 -07:00
pipeline.ts 🚀 Brainy 1.0.0-rc.1 - Complete Unified API Implementation (#5) 2025-08-14 11:27:22 -07:00
setup.ts feat\!: migrate from TensorFlow.js to Transformers.js with ONNX Runtime 2025-08-05 19:29:59 -07:00
unified.ts **docs: remove outdated statistics-related documentation and add standards** 2025-07-28 16:00:05 -07:00
worker.js **feat(cli, workers): introduce text encoding patches and worker improvements** 2025-07-04 14:42:33 -07:00
worker.ts **feat(tests): add tests for TextEncoder, TensorFlow.js, and fallback mechanisms** 2025-07-11 11:11:56 -07:00