feat: implement augmentation type system and release automation

This commit is contained in:
David Snelling 2025-05-27 13:12:53 -07:00
parent d2ddbd2613
commit 022680a2f5
8 changed files with 287 additions and 8 deletions

View file

@ -1,4 +1,18 @@
/** Common types for augmentation system */
/**
* Enum representing all types of augmentations available in the Brainy system.
*/
export enum AugmentationType {
SENSE = 'sense',
CONDUIT = 'conduit',
COGNITION = 'cognition',
MEMORY = 'memory',
PERCEPTION = 'perception',
DIALOG = 'dialog',
ACTIVATION = 'activation',
WEBSOCKET = 'webSocket'
}
type WebSocketConnection = {
connectionId: string
url: string