@framers/agentos 0.1.51 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,139 @@
1
+ /**
2
+ * @fileoverview AgentMemory — high-level facade for the cognitive memory system.
3
+ *
4
+ * Provides a simple, developer-friendly API that wraps CognitiveMemoryManager.
5
+ * Users don't need to know about PAD mood models, HEXACO traits, or internal
6
+ * memory architecture.
7
+ *
8
+ * Usage:
9
+ * ```typescript
10
+ * import { AgentMemory } from '@framers/agentos';
11
+ *
12
+ * // Option A: Wrap an existing CognitiveMemoryManager (wunderland does this)
13
+ * const memory = AgentMemory.wrap(existingManager);
14
+ *
15
+ * // Option B: Create standalone (you provide the manager config)
16
+ * const memory = new AgentMemory(cognitiveMemoryManager);
17
+ * await memory.initialize(config);
18
+ *
19
+ * // Simple API
20
+ * await memory.remember("User prefers dark mode");
21
+ * const results = await memory.recall("what does the user prefer?");
22
+ * await memory.observe('user', "Can you help me with my TMJ?");
23
+ * const context = await memory.getContext("TMJ treatment", { tokenBudget: 2000 });
24
+ * ```
25
+ *
26
+ * @module agentos/memory/AgentMemory
27
+ */
28
+ import type { MemoryTrace, MemoryType, MemoryScope, MemorySourceType, ScoredMemoryTrace, AssembledMemoryContext, MemoryHealthReport, CognitiveRetrievalResult } from './types.js';
29
+ import type { CognitiveMemoryConfig } from './config.js';
30
+ import type { ICognitiveMemoryManager } from './CognitiveMemoryManager.js';
31
+ import type { ObservationNote } from './observation/MemoryObserver.js';
32
+ import type { ProspectiveMemoryItem } from './prospective/ProspectiveMemoryManager.js';
33
+ export interface RecallResult {
34
+ /** Relevant memory traces sorted by relevance. */
35
+ memories: ScoredMemoryTrace[];
36
+ /** Partially retrieved traces (tip-of-the-tongue). */
37
+ partial: CognitiveRetrievalResult['partiallyRetrieved'];
38
+ /** Retrieval diagnostics. */
39
+ diagnostics: CognitiveRetrievalResult['diagnostics'];
40
+ }
41
+ export interface RememberResult {
42
+ trace: MemoryTrace;
43
+ success: boolean;
44
+ }
45
+ export interface SearchOptions {
46
+ /** Maximum results. Default: 10. */
47
+ limit?: number;
48
+ /** Memory type filter. */
49
+ types?: MemoryType[];
50
+ /** Tags filter. */
51
+ tags?: string[];
52
+ /** Minimum confidence. Default: 0. */
53
+ minConfidence?: number;
54
+ }
55
+ /**
56
+ * High-level memory facade for AI agents.
57
+ *
58
+ * Wraps `ICognitiveMemoryManager` with a simple API that hides
59
+ * PAD mood models, HEXACO traits, and internal architecture.
60
+ */
61
+ export declare class AgentMemory {
62
+ private manager;
63
+ private _initialized;
64
+ constructor(manager?: ICognitiveMemoryManager);
65
+ /**
66
+ * Create an AgentMemory wrapping an existing CognitiveMemoryManager.
67
+ * Use this in wunderland where the manager is already constructed.
68
+ */
69
+ static wrap(manager: ICognitiveMemoryManager): AgentMemory;
70
+ /**
71
+ * Initialize with full config. Only needed when constructing standalone
72
+ * (not via `AgentMemory.wrap()`).
73
+ */
74
+ initialize(config: CognitiveMemoryConfig): Promise<void>;
75
+ /**
76
+ * Store information in long-term memory.
77
+ *
78
+ * @example
79
+ * await memory.remember("User prefers dark mode");
80
+ * await memory.remember("Deploy by Friday", { type: 'prospective', tags: ['deadline'] });
81
+ */
82
+ remember(content: string, options?: {
83
+ type?: MemoryType;
84
+ scope?: MemoryScope;
85
+ scopeId?: string;
86
+ sourceType?: MemorySourceType;
87
+ tags?: string[];
88
+ entities?: string[];
89
+ importance?: number;
90
+ }): Promise<RememberResult>;
91
+ /**
92
+ * Recall memories relevant to a query.
93
+ *
94
+ * @example
95
+ * const results = await memory.recall("what does the user prefer?");
96
+ * for (const m of results.memories) {
97
+ * console.log(m.content, m.retrievalScore);
98
+ * }
99
+ */
100
+ recall(query: string, options?: SearchOptions): Promise<RecallResult>;
101
+ /**
102
+ * Search memories (alias for recall with simpler return).
103
+ */
104
+ search(query: string, options?: SearchOptions): Promise<ScoredMemoryTrace[]>;
105
+ /**
106
+ * Feed a conversation turn to the observational memory system.
107
+ * The Observer creates dense notes when the token threshold is reached.
108
+ *
109
+ * @example
110
+ * await memory.observe('user', "Can you help me debug this?");
111
+ * await memory.observe('assistant', "Sure! The issue is in your useEffect...");
112
+ */
113
+ observe(role: 'user' | 'assistant' | 'system' | 'tool', content: string): Promise<ObservationNote[] | null>;
114
+ /**
115
+ * Get assembled memory context for prompt injection within a token budget.
116
+ */
117
+ getContext(query: string, options?: {
118
+ tokenBudget?: number;
119
+ }): Promise<AssembledMemoryContext>;
120
+ /**
121
+ * Register a prospective memory (reminder/intention).
122
+ */
123
+ remind(input: Omit<ProspectiveMemoryItem, 'id' | 'triggered' | 'createdAt' | 'cueEmbedding'> & {
124
+ cueText?: string;
125
+ }): Promise<ProspectiveMemoryItem | null>;
126
+ /** List active reminders. */
127
+ reminders(): Promise<ProspectiveMemoryItem[]>;
128
+ /** Run consolidation cycle. */
129
+ consolidate(): Promise<void>;
130
+ /** Memory health diagnostics. */
131
+ health(): Promise<MemoryHealthReport>;
132
+ /** Shutdown and release resources. */
133
+ shutdown(): Promise<void>;
134
+ get isInitialized(): boolean;
135
+ /** Access the underlying manager for advanced usage. */
136
+ get raw(): ICognitiveMemoryManager;
137
+ private ensureReady;
138
+ }
139
+ //# sourceMappingURL=AgentMemory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgentMemory.d.ts","sourceRoot":"","sources":["../../src/memory/AgentMemory.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,177 @@
1
+ /**
2
+ * @fileoverview AgentMemory — high-level facade for the cognitive memory system.
3
+ *
4
+ * Provides a simple, developer-friendly API that wraps CognitiveMemoryManager.
5
+ * Users don't need to know about PAD mood models, HEXACO traits, or internal
6
+ * memory architecture.
7
+ *
8
+ * Usage:
9
+ * ```typescript
10
+ * import { AgentMemory } from '@framers/agentos';
11
+ *
12
+ * // Option A: Wrap an existing CognitiveMemoryManager (wunderland does this)
13
+ * const memory = AgentMemory.wrap(existingManager);
14
+ *
15
+ * // Option B: Create standalone (you provide the manager config)
16
+ * const memory = new AgentMemory(cognitiveMemoryManager);
17
+ * await memory.initialize(config);
18
+ *
19
+ * // Simple API
20
+ * await memory.remember("User prefers dark mode");
21
+ * const results = await memory.recall("what does the user prefer?");
22
+ * await memory.observe('user', "Can you help me with my TMJ?");
23
+ * const context = await memory.getContext("TMJ treatment", { tokenBudget: 2000 });
24
+ * ```
25
+ *
26
+ * @module agentos/memory/AgentMemory
27
+ */
28
+ import { CognitiveMemoryManager } from './CognitiveMemoryManager.js';
29
+ // ── Neutral mood (no emotional bias in encoding/retrieval) ──
30
+ const NEUTRAL_MOOD = { valence: 0, arousal: 0, dominance: 0 };
31
+ /**
32
+ * High-level memory facade for AI agents.
33
+ *
34
+ * Wraps `ICognitiveMemoryManager` with a simple API that hides
35
+ * PAD mood models, HEXACO traits, and internal architecture.
36
+ */
37
+ export class AgentMemory {
38
+ constructor(manager) {
39
+ this._initialized = false;
40
+ this.manager = manager ?? new CognitiveMemoryManager();
41
+ }
42
+ /**
43
+ * Create an AgentMemory wrapping an existing CognitiveMemoryManager.
44
+ * Use this in wunderland where the manager is already constructed.
45
+ */
46
+ static wrap(manager) {
47
+ const mem = new AgentMemory(manager);
48
+ mem._initialized = true; // assume the passed manager is already initialized
49
+ return mem;
50
+ }
51
+ /**
52
+ * Initialize with full config. Only needed when constructing standalone
53
+ * (not via `AgentMemory.wrap()`).
54
+ */
55
+ async initialize(config) {
56
+ if (this._initialized)
57
+ return;
58
+ await this.manager.initialize(config);
59
+ this._initialized = true;
60
+ }
61
+ /**
62
+ * Store information in long-term memory.
63
+ *
64
+ * @example
65
+ * await memory.remember("User prefers dark mode");
66
+ * await memory.remember("Deploy by Friday", { type: 'prospective', tags: ['deadline'] });
67
+ */
68
+ async remember(content, options) {
69
+ this.ensureReady();
70
+ try {
71
+ const trace = await this.manager.encode(content, NEUTRAL_MOOD, 'neutral', {
72
+ type: options?.type ?? 'episodic',
73
+ scope: options?.scope ?? 'thread',
74
+ scopeId: options?.scopeId,
75
+ sourceType: options?.sourceType ?? 'user_statement',
76
+ tags: options?.tags,
77
+ entities: options?.entities,
78
+ contentSentiment: options?.importance,
79
+ });
80
+ return { trace, success: true };
81
+ }
82
+ catch {
83
+ return { trace: null, success: false };
84
+ }
85
+ }
86
+ /**
87
+ * Recall memories relevant to a query.
88
+ *
89
+ * @example
90
+ * const results = await memory.recall("what does the user prefer?");
91
+ * for (const m of results.memories) {
92
+ * console.log(m.content, m.retrievalScore);
93
+ * }
94
+ */
95
+ async recall(query, options) {
96
+ this.ensureReady();
97
+ const result = await this.manager.retrieve(query, NEUTRAL_MOOD, {
98
+ topK: options?.limit ?? 10,
99
+ types: options?.types,
100
+ tags: options?.tags,
101
+ minConfidence: options?.minConfidence,
102
+ });
103
+ return {
104
+ memories: result.retrieved,
105
+ partial: result.partiallyRetrieved,
106
+ diagnostics: result.diagnostics,
107
+ };
108
+ }
109
+ /**
110
+ * Search memories (alias for recall with simpler return).
111
+ */
112
+ async search(query, options) {
113
+ const result = await this.recall(query, options);
114
+ return result.memories;
115
+ }
116
+ /**
117
+ * Feed a conversation turn to the observational memory system.
118
+ * The Observer creates dense notes when the token threshold is reached.
119
+ *
120
+ * @example
121
+ * await memory.observe('user', "Can you help me debug this?");
122
+ * await memory.observe('assistant', "Sure! The issue is in your useEffect...");
123
+ */
124
+ async observe(role, content) {
125
+ this.ensureReady();
126
+ return this.manager.observe?.(role, content, NEUTRAL_MOOD) ?? null;
127
+ }
128
+ /**
129
+ * Get assembled memory context for prompt injection within a token budget.
130
+ */
131
+ async getContext(query, options) {
132
+ this.ensureReady();
133
+ return this.manager.assembleForPrompt(query, options?.tokenBudget ?? 2000, NEUTRAL_MOOD);
134
+ }
135
+ /**
136
+ * Register a prospective memory (reminder/intention).
137
+ */
138
+ async remind(input) {
139
+ this.ensureReady();
140
+ return this.manager.registerProspective?.(input) ?? null;
141
+ }
142
+ /** List active reminders. */
143
+ async reminders() {
144
+ this.ensureReady();
145
+ return this.manager.listProspective?.() ?? [];
146
+ }
147
+ /** Run consolidation cycle. */
148
+ async consolidate() {
149
+ this.ensureReady();
150
+ await this.manager.runConsolidation?.();
151
+ }
152
+ /** Memory health diagnostics. */
153
+ async health() {
154
+ this.ensureReady();
155
+ return this.manager.getMemoryHealth();
156
+ }
157
+ /** Shutdown and release resources. */
158
+ async shutdown() {
159
+ if (!this._initialized)
160
+ return;
161
+ await this.manager.shutdown();
162
+ this._initialized = false;
163
+ }
164
+ get isInitialized() {
165
+ return this._initialized;
166
+ }
167
+ /** Access the underlying manager for advanced usage. */
168
+ get raw() {
169
+ return this.manager;
170
+ }
171
+ ensureReady() {
172
+ if (!this._initialized) {
173
+ throw new Error('AgentMemory not initialized. Call await memory.initialize(config) or use AgentMemory.wrap().');
174
+ }
175
+ }
176
+ }
177
+ //# sourceMappingURL=AgentMemory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgentMemory.js","sourceRoot":"","sources":["../../src/memory/AgentMemory.ts"],"names":[],"mappings":"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"}
@@ -20,6 +20,8 @@ export { assembleMemoryContext } from './prompt/MemoryPromptAssembler.js';
20
20
  export type { MemoryAssemblerInput } from './prompt/MemoryPromptAssembler.js';
21
21
  export { formatMemoryTrace, formatMemoryTraces } from './prompt/MemoryFormatters.js';
22
22
  export type { FormattingStyle } from './prompt/MemoryFormatters.js';
23
+ export { AgentMemory } from './AgentMemory.js';
24
+ export type { RecallResult, RememberResult, SearchOptions } from './AgentMemory.js';
23
25
  export { CognitiveMemoryManager } from './CognitiveMemoryManager.js';
24
26
  export type { ICognitiveMemoryManager } from './CognitiveMemoryManager.js';
25
27
  export { createCognitiveMemoryDescriptor } from './extension/CognitiveMemoryExtension.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/memory/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/memory/index.ts"],"names":[],"mappings":"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"}
@@ -16,7 +16,9 @@ export { MemoryStore } from './store/MemoryStore.js';
16
16
  // --- Prompt Assembly ---
17
17
  export { assembleMemoryContext } from './prompt/MemoryPromptAssembler.js';
18
18
  export { formatMemoryTrace, formatMemoryTraces } from './prompt/MemoryFormatters.js';
19
- // --- Orchestrator ---
19
+ // --- High-level facade ---
20
+ export { AgentMemory } from './AgentMemory.js';
21
+ // --- Orchestrator (advanced) ---
20
22
  export { CognitiveMemoryManager } from './CognitiveMemoryManager.js';
21
23
  // --- Extension ---
22
24
  export { createCognitiveMemoryDescriptor } from './extension/CognitiveMemoryExtension.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/memory/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAoCH,OAAO,EACL,uBAAuB,EACvB,oBAAoB,EACpB,yBAAyB,GAC1B,MAAM,aAAa,CAAC;AAErB,mBAAmB;AACnB,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC1B,WAAW,EACX,mBAAmB,EACnB,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACtB,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,sCAAsC,CAAC;AAG9C,gBAAgB;AAChB,OAAO,EACL,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EACL,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,oCAAoC,CAAC;AAG5C,yBAAyB;AACzB,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAG7E,gBAAgB;AAChB,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAGrD,0BAA0B;AAC1B,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAGrF,uBAAuB;AACvB,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,oBAAoB;AACpB,OAAO,EAAE,+BAA+B,EAAE,MAAM,yCAAyC,CAAC;AAY1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAGlE,uCAAuC;AACvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAEvE,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAGnE,uCAAuC;AACvC,OAAO,EAAE,wBAAwB,EAAE,MAAM,2CAA2C,CAAC;AAGrF,2CAA2C;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAC;AAGjF,4CAA4C;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gDAAgD,CAAC;AACxF,OAAO,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAYxE,OAAO,EAAE,+BAA+B,EAAE,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/memory/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAoCH,OAAO,EACL,uBAAuB,EACvB,oBAAoB,EACpB,yBAAyB,GAC1B,MAAM,aAAa,CAAC;AAErB,mBAAmB;AACnB,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC1B,WAAW,EACX,mBAAmB,EACnB,iBAAiB,EACjB,qBAAqB,GACtB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACtB,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,sCAAsC,CAAC;AAG9C,gBAAgB;AAChB,OAAO,EACL,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,GACnB,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EACL,kBAAkB,EAClB,wBAAwB,EACxB,mBAAmB,EACnB,0BAA0B,EAC1B,uBAAuB,GACxB,MAAM,oCAAoC,CAAC;AAG5C,yBAAyB;AACzB,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAG7E,gBAAgB;AAChB,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAGrD,0BAA0B;AAC1B,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAGrF,4BAA4B;AAC5B,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAG/C,kCAAkC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,oBAAoB;AACpB,OAAO,EAAE,+BAA+B,EAAE,MAAM,yCAAyC,CAAC;AAY1F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AACjF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAGlE,uCAAuC;AACvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAEvE,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AAGnE,uCAAuC;AACvC,OAAO,EAAE,wBAAwB,EAAE,MAAM,2CAA2C,CAAC;AAGrF,2CAA2C;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAC;AAGjF,4CAA4C;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AAEzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gDAAgD,CAAC;AACxF,OAAO,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAYxE,OAAO,EAAE,+BAA+B,EAAE,MAAM,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framers/agentos",
3
- "version": "0.1.51",
3
+ "version": "0.1.52",
4
4
  "description": "Modular AgentOS orchestration library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",