feat: update plugin references from @soulcraft/brainy-cortex to @soulcraft/cortex

This commit is contained in:
David Snelling 2026-02-01 08:22:07 -08:00
parent b0439fbc26
commit 7f9d2a70a5
6 changed files with 9 additions and 8 deletions

View file

@ -2,7 +2,7 @@
* Brainy Plugin System
*
* Simple plugin architecture for two use cases:
* 1. Native acceleration (@soulcraft/brainy-cortex)
* 1. Native acceleration (@soulcraft/cortex)
* 2. Custom storage adapters (e.g., Redis, DynamoDB, custom backends)
*
* Plugins are auto-detected by package name or registered manually.
@ -89,7 +89,8 @@ export class PluginRegistry {
*/
async autoDetect(additionalPackages: string[] = []): Promise<void> {
const packages = [
'@soulcraft/brainy-cortex',
'@soulcraft/cortex',
'@soulcraft/brainy-cortex', // deprecated — backward compat
...additionalPackages
]