refactor: remove deprecated Cortex class (replaced by brain.augmentations API)

This commit is contained in:
David Snelling 2026-02-01 08:22:11 -08:00
parent 7f9d2a70a5
commit 490a14af5f
6 changed files with 68 additions and 139 deletions

View file

@ -54,11 +54,20 @@ export {
getPresetDescription
} from './config/index.js'
// Export Cortex (the orchestrator)
export {
Cortex,
cortex
} from './cortex.js'
// Export augmentation types
export type {
BrainyAugmentations,
IAugmentation,
ISenseAugmentation,
IConduitAugmentation,
ICognitionAugmentation,
IMemoryAugmentation,
IPerceptionAugmentation,
IDialogAugmentation,
IActivationAugmentation,
IWebSocketSupport,
AugmentationType
} from './types/augmentations.js'
// Export Neural Import (AI data understanding)
export { NeuralImport } from './cortex/neuralImport.js'