@synth-coder/memhub 0.1.5 → 0.2.0

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.
Files changed (43) hide show
  1. package/AGENTS.md +1 -0
  2. package/README.md +2 -2
  3. package/README.zh-CN.md +1 -1
  4. package/dist/src/contracts/mcp.d.ts +2 -5
  5. package/dist/src/contracts/mcp.d.ts.map +1 -1
  6. package/dist/src/contracts/mcp.js +77 -23
  7. package/dist/src/contracts/mcp.js.map +1 -1
  8. package/dist/src/contracts/schemas.d.ts +67 -76
  9. package/dist/src/contracts/schemas.d.ts.map +1 -1
  10. package/dist/src/contracts/schemas.js +4 -8
  11. package/dist/src/contracts/schemas.js.map +1 -1
  12. package/dist/src/contracts/types.d.ts +1 -4
  13. package/dist/src/contracts/types.d.ts.map +1 -1
  14. package/dist/src/contracts/types.js.map +1 -1
  15. package/dist/src/server/mcp-server.d.ts.map +1 -1
  16. package/dist/src/server/mcp-server.js +21 -4
  17. package/dist/src/server/mcp-server.js.map +1 -1
  18. package/dist/src/services/embedding-service.d.ts +43 -0
  19. package/dist/src/services/embedding-service.d.ts.map +1 -0
  20. package/dist/src/services/embedding-service.js +80 -0
  21. package/dist/src/services/embedding-service.js.map +1 -0
  22. package/dist/src/services/memory-service.d.ts +30 -44
  23. package/dist/src/services/memory-service.d.ts.map +1 -1
  24. package/dist/src/services/memory-service.js +212 -161
  25. package/dist/src/services/memory-service.js.map +1 -1
  26. package/dist/src/storage/vector-index.d.ts +62 -0
  27. package/dist/src/storage/vector-index.d.ts.map +1 -0
  28. package/dist/src/storage/vector-index.js +123 -0
  29. package/dist/src/storage/vector-index.js.map +1 -0
  30. package/package.json +16 -13
  31. package/src/contracts/mcp.ts +84 -29
  32. package/src/contracts/schemas.ts +4 -8
  33. package/src/contracts/types.ts +4 -8
  34. package/src/server/mcp-server.ts +23 -7
  35. package/src/services/embedding-service.ts +114 -0
  36. package/src/services/memory-service.ts +252 -179
  37. package/src/storage/vector-index.ts +160 -0
  38. package/test/server/mcp-server.test.ts +11 -9
  39. package/test/services/memory-service-edge.test.ts +1 -1
  40. package/test/services/memory-service.test.ts +1 -1
  41. package/test/storage/vector-index.test.ts +153 -0
  42. package/vitest.config.ts +3 -1
  43. /package/docs/{proposal-close-gates.md → proposals/proposal-close-gates.md} +0 -0
@@ -16,14 +16,14 @@ export declare const CategorySchema: z.ZodString;
16
16
  /** Importance level validation (1-5) */
17
17
  export declare const ImportanceSchema: z.ZodNumber;
18
18
  /** STM memory entry type */
19
- export declare const MemoryEntryTypeSchema: z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>;
19
+ export declare const MemoryEntryTypeSchema: z.ZodEnum<["preference", "decision", "context", "fact"]>;
20
20
  /** Memory front matter schema (YAML portion) */
21
21
  export declare const MemoryFrontMatterSchema: z.ZodObject<{
22
22
  id: z.ZodBranded<z.ZodString, "UUID">;
23
23
  created_at: z.ZodBranded<z.ZodString, "ISO8601">;
24
24
  updated_at: z.ZodBranded<z.ZodString, "ISO8601">;
25
25
  session_id: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
26
- entry_type: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
26
+ entry_type: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
27
27
  tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
28
28
  category: z.ZodDefault<z.ZodString>;
29
29
  importance: z.ZodDefault<z.ZodNumber>;
@@ -35,7 +35,7 @@ export declare const MemoryFrontMatterSchema: z.ZodObject<{
35
35
  created_at: string & z.BRAND<"ISO8601">;
36
36
  updated_at: string & z.BRAND<"ISO8601">;
37
37
  session_id?: (string & z.BRAND<"UUID">) | undefined;
38
- entry_type?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
38
+ entry_type?: "preference" | "decision" | "context" | "fact" | undefined;
39
39
  }, {
40
40
  id: string;
41
41
  created_at: string;
@@ -44,7 +44,7 @@ export declare const MemoryFrontMatterSchema: z.ZodObject<{
44
44
  category?: string | undefined;
45
45
  tags?: string[] | undefined;
46
46
  session_id?: string | undefined;
47
- entry_type?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
47
+ entry_type?: "preference" | "decision" | "context" | "fact" | undefined;
48
48
  }>;
49
49
  /** Complete memory schema */
50
50
  export declare const MemorySchema: z.ZodObject<{
@@ -52,7 +52,7 @@ export declare const MemorySchema: z.ZodObject<{
52
52
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
53
53
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
54
54
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
55
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
55
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
56
56
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
57
57
  category: z.ZodString;
58
58
  importance: z.ZodNumber;
@@ -68,7 +68,7 @@ export declare const MemorySchema: z.ZodObject<{
68
68
  id: string & z.BRAND<"UUID">;
69
69
  content: string;
70
70
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
71
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
71
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
72
72
  }, {
73
73
  createdAt: string;
74
74
  updatedAt: string;
@@ -79,7 +79,7 @@ export declare const MemorySchema: z.ZodObject<{
79
79
  id: string;
80
80
  content: string;
81
81
  sessionId?: string | undefined;
82
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
82
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
83
83
  }>;
84
84
  /** Memory file schema */
85
85
  export declare const MemoryFileSchema: z.ZodObject<{
@@ -105,7 +105,7 @@ export declare const SearchResultSchema: z.ZodObject<{
105
105
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
106
106
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
107
107
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
108
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
108
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
109
109
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
110
110
  category: z.ZodString;
111
111
  importance: z.ZodNumber;
@@ -121,7 +121,7 @@ export declare const SearchResultSchema: z.ZodObject<{
121
121
  id: string & z.BRAND<"UUID">;
122
122
  content: string;
123
123
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
124
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
124
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
125
125
  }, {
126
126
  createdAt: string;
127
127
  updatedAt: string;
@@ -132,7 +132,7 @@ export declare const SearchResultSchema: z.ZodObject<{
132
132
  id: string;
133
133
  content: string;
134
134
  sessionId?: string | undefined;
135
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
135
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
136
136
  }>;
137
137
  score: z.ZodNumber;
138
138
  matches: z.ZodArray<z.ZodString, "many">;
@@ -147,7 +147,7 @@ export declare const SearchResultSchema: z.ZodObject<{
147
147
  id: string & z.BRAND<"UUID">;
148
148
  content: string;
149
149
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
150
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
150
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
151
151
  };
152
152
  score: number;
153
153
  matches: string[];
@@ -162,7 +162,7 @@ export declare const SearchResultSchema: z.ZodObject<{
162
162
  id: string;
163
163
  content: string;
164
164
  sessionId?: string | undefined;
165
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
165
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
166
166
  };
167
167
  score: number;
168
168
  matches: string[];
@@ -174,7 +174,7 @@ export declare const ListResultSchema: z.ZodObject<{
174
174
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
175
175
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
176
176
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
177
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
177
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
178
178
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
179
179
  category: z.ZodString;
180
180
  importance: z.ZodNumber;
@@ -190,7 +190,7 @@ export declare const ListResultSchema: z.ZodObject<{
190
190
  id: string & z.BRAND<"UUID">;
191
191
  content: string;
192
192
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
193
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
193
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
194
194
  }, {
195
195
  createdAt: string;
196
196
  updatedAt: string;
@@ -201,7 +201,7 @@ export declare const ListResultSchema: z.ZodObject<{
201
201
  id: string;
202
202
  content: string;
203
203
  sessionId?: string | undefined;
204
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
204
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
205
205
  }>, "many">;
206
206
  total: z.ZodNumber;
207
207
  hasMore: z.ZodBoolean;
@@ -216,7 +216,7 @@ export declare const ListResultSchema: z.ZodObject<{
216
216
  id: string & z.BRAND<"UUID">;
217
217
  content: string;
218
218
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
219
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
219
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
220
220
  }[];
221
221
  total: number;
222
222
  hasMore: boolean;
@@ -231,7 +231,7 @@ export declare const ListResultSchema: z.ZodObject<{
231
231
  id: string;
232
232
  content: string;
233
233
  sessionId?: string | undefined;
234
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
234
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
235
235
  }[];
236
236
  total: number;
237
237
  hasMore: boolean;
@@ -245,7 +245,7 @@ export declare const CreateResultSchema: z.ZodObject<{
245
245
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
246
246
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
247
247
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
248
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
248
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
249
249
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
250
250
  category: z.ZodString;
251
251
  importance: z.ZodNumber;
@@ -261,7 +261,7 @@ export declare const CreateResultSchema: z.ZodObject<{
261
261
  id: string & z.BRAND<"UUID">;
262
262
  content: string;
263
263
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
264
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
264
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
265
265
  }, {
266
266
  createdAt: string;
267
267
  updatedAt: string;
@@ -272,7 +272,7 @@ export declare const CreateResultSchema: z.ZodObject<{
272
272
  id: string;
273
273
  content: string;
274
274
  sessionId?: string | undefined;
275
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
275
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
276
276
  }>;
277
277
  }, "strip", z.ZodTypeAny, {
278
278
  id: string & z.BRAND<"UUID">;
@@ -286,7 +286,7 @@ export declare const CreateResultSchema: z.ZodObject<{
286
286
  id: string & z.BRAND<"UUID">;
287
287
  content: string;
288
288
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
289
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
289
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
290
290
  };
291
291
  filePath: string;
292
292
  }, {
@@ -301,7 +301,7 @@ export declare const CreateResultSchema: z.ZodObject<{
301
301
  id: string;
302
302
  content: string;
303
303
  sessionId?: string | undefined;
304
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
304
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
305
305
  };
306
306
  filePath: string;
307
307
  }>;
@@ -312,7 +312,7 @@ export declare const UpdateResultSchema: z.ZodObject<{
312
312
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
313
313
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
314
314
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
315
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
315
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
316
316
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
317
317
  category: z.ZodString;
318
318
  importance: z.ZodNumber;
@@ -328,7 +328,7 @@ export declare const UpdateResultSchema: z.ZodObject<{
328
328
  id: string & z.BRAND<"UUID">;
329
329
  content: string;
330
330
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
331
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
331
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
332
332
  }, {
333
333
  createdAt: string;
334
334
  updatedAt: string;
@@ -339,7 +339,7 @@ export declare const UpdateResultSchema: z.ZodObject<{
339
339
  id: string;
340
340
  content: string;
341
341
  sessionId?: string | undefined;
342
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
342
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
343
343
  }>;
344
344
  }, "strip", z.ZodTypeAny, {
345
345
  memory: {
@@ -352,7 +352,7 @@ export declare const UpdateResultSchema: z.ZodObject<{
352
352
  id: string & z.BRAND<"UUID">;
353
353
  content: string;
354
354
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
355
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
355
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
356
356
  };
357
357
  }, {
358
358
  memory: {
@@ -365,7 +365,7 @@ export declare const UpdateResultSchema: z.ZodObject<{
365
365
  id: string;
366
366
  content: string;
367
367
  sessionId?: string | undefined;
368
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
368
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
369
369
  };
370
370
  }>;
371
371
  /** Delete result schema */
@@ -530,38 +530,29 @@ export declare const SearchMemoryInputSchema: z.ZodObject<{
530
530
  /** memory_load input schema */
531
531
  export declare const MemoryLoadInputSchema: z.ZodObject<{
532
532
  id: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
533
- sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
534
- date: z.ZodOptional<z.ZodString>;
535
533
  query: z.ZodOptional<z.ZodString>;
536
534
  category: z.ZodOptional<z.ZodString>;
537
535
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
538
536
  limit: z.ZodOptional<z.ZodNumber>;
539
- scope: z.ZodOptional<z.ZodEnum<["stm", "all"]>>;
540
537
  }, "strip", z.ZodTypeAny, {
541
538
  category?: string | undefined;
542
539
  tags?: string[] | undefined;
543
540
  limit?: number | undefined;
544
541
  query?: string | undefined;
545
542
  id?: (string & z.BRAND<"UUID">) | undefined;
546
- sessionId?: (string & z.BRAND<"UUID">) | undefined;
547
- date?: string | undefined;
548
- scope?: "stm" | "all" | undefined;
549
543
  }, {
550
544
  category?: string | undefined;
551
545
  tags?: string[] | undefined;
552
546
  limit?: number | undefined;
553
547
  query?: string | undefined;
554
548
  id?: string | undefined;
555
- sessionId?: string | undefined;
556
- date?: string | undefined;
557
- scope?: "stm" | "all" | undefined;
558
549
  }>;
559
550
  /** memory_update (upsert/append) input schema */
560
551
  export declare const MemoryUpdateInputV2Schema: z.ZodObject<{
561
552
  id: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
562
553
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
563
554
  mode: z.ZodDefault<z.ZodEnum<["append", "upsert"]>>;
564
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
555
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
565
556
  title: z.ZodOptional<z.ZodString>;
566
557
  content: z.ZodString;
567
558
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -576,7 +567,7 @@ export declare const MemoryUpdateInputV2Schema: z.ZodObject<{
576
567
  tags?: string[] | undefined;
577
568
  id?: (string & z.BRAND<"UUID">) | undefined;
578
569
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
579
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
570
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
580
571
  }, {
581
572
  content: string;
582
573
  title?: string | undefined;
@@ -585,7 +576,7 @@ export declare const MemoryUpdateInputV2Schema: z.ZodObject<{
585
576
  tags?: string[] | undefined;
586
577
  id?: string | undefined;
587
578
  sessionId?: string | undefined;
588
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
579
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
589
580
  mode?: "append" | "upsert" | undefined;
590
581
  }>;
591
582
  /** Create memory output schema */
@@ -597,7 +588,7 @@ export declare const CreateMemoryOutputSchema: z.ZodObject<{
597
588
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
598
589
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
599
590
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
600
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
591
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
601
592
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
602
593
  category: z.ZodString;
603
594
  importance: z.ZodNumber;
@@ -613,7 +604,7 @@ export declare const CreateMemoryOutputSchema: z.ZodObject<{
613
604
  id: string & z.BRAND<"UUID">;
614
605
  content: string;
615
606
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
616
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
607
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
617
608
  }, {
618
609
  createdAt: string;
619
610
  updatedAt: string;
@@ -624,7 +615,7 @@ export declare const CreateMemoryOutputSchema: z.ZodObject<{
624
615
  id: string;
625
616
  content: string;
626
617
  sessionId?: string | undefined;
627
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
618
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
628
619
  }>;
629
620
  }, "strip", z.ZodTypeAny, {
630
621
  id: string & z.BRAND<"UUID">;
@@ -638,7 +629,7 @@ export declare const CreateMemoryOutputSchema: z.ZodObject<{
638
629
  id: string & z.BRAND<"UUID">;
639
630
  content: string;
640
631
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
641
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
632
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
642
633
  };
643
634
  filePath: string;
644
635
  }, {
@@ -653,7 +644,7 @@ export declare const CreateMemoryOutputSchema: z.ZodObject<{
653
644
  id: string;
654
645
  content: string;
655
646
  sessionId?: string | undefined;
656
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
647
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
657
648
  };
658
649
  filePath: string;
659
650
  }>;
@@ -664,7 +655,7 @@ export declare const ReadMemoryOutputSchema: z.ZodObject<{
664
655
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
665
656
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
666
657
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
667
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
658
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
668
659
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
669
660
  category: z.ZodString;
670
661
  importance: z.ZodNumber;
@@ -680,7 +671,7 @@ export declare const ReadMemoryOutputSchema: z.ZodObject<{
680
671
  id: string & z.BRAND<"UUID">;
681
672
  content: string;
682
673
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
683
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
674
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
684
675
  }, {
685
676
  createdAt: string;
686
677
  updatedAt: string;
@@ -691,7 +682,7 @@ export declare const ReadMemoryOutputSchema: z.ZodObject<{
691
682
  id: string;
692
683
  content: string;
693
684
  sessionId?: string | undefined;
694
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
685
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
695
686
  }>;
696
687
  }, "strip", z.ZodTypeAny, {
697
688
  memory: {
@@ -704,7 +695,7 @@ export declare const ReadMemoryOutputSchema: z.ZodObject<{
704
695
  id: string & z.BRAND<"UUID">;
705
696
  content: string;
706
697
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
707
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
698
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
708
699
  };
709
700
  }, {
710
701
  memory: {
@@ -717,7 +708,7 @@ export declare const ReadMemoryOutputSchema: z.ZodObject<{
717
708
  id: string;
718
709
  content: string;
719
710
  sessionId?: string | undefined;
720
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
711
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
721
712
  };
722
713
  }>;
723
714
  /** Update memory output schema */
@@ -727,7 +718,7 @@ export declare const UpdateMemoryOutputSchema: z.ZodObject<{
727
718
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
728
719
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
729
720
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
730
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
721
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
731
722
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
732
723
  category: z.ZodString;
733
724
  importance: z.ZodNumber;
@@ -743,7 +734,7 @@ export declare const UpdateMemoryOutputSchema: z.ZodObject<{
743
734
  id: string & z.BRAND<"UUID">;
744
735
  content: string;
745
736
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
746
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
737
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
747
738
  }, {
748
739
  createdAt: string;
749
740
  updatedAt: string;
@@ -754,7 +745,7 @@ export declare const UpdateMemoryOutputSchema: z.ZodObject<{
754
745
  id: string;
755
746
  content: string;
756
747
  sessionId?: string | undefined;
757
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
748
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
758
749
  }>;
759
750
  }, "strip", z.ZodTypeAny, {
760
751
  memory: {
@@ -767,7 +758,7 @@ export declare const UpdateMemoryOutputSchema: z.ZodObject<{
767
758
  id: string & z.BRAND<"UUID">;
768
759
  content: string;
769
760
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
770
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
761
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
771
762
  };
772
763
  }, {
773
764
  memory: {
@@ -780,7 +771,7 @@ export declare const UpdateMemoryOutputSchema: z.ZodObject<{
780
771
  id: string;
781
772
  content: string;
782
773
  sessionId?: string | undefined;
783
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
774
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
784
775
  };
785
776
  }>;
786
777
  export declare const MemoryLoadOutputSchema: z.ZodObject<{
@@ -789,7 +780,7 @@ export declare const MemoryLoadOutputSchema: z.ZodObject<{
789
780
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
790
781
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
791
782
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
792
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
783
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
793
784
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
794
785
  category: z.ZodString;
795
786
  importance: z.ZodNumber;
@@ -805,7 +796,7 @@ export declare const MemoryLoadOutputSchema: z.ZodObject<{
805
796
  id: string & z.BRAND<"UUID">;
806
797
  content: string;
807
798
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
808
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
799
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
809
800
  }, {
810
801
  createdAt: string;
811
802
  updatedAt: string;
@@ -816,7 +807,7 @@ export declare const MemoryLoadOutputSchema: z.ZodObject<{
816
807
  id: string;
817
808
  content: string;
818
809
  sessionId?: string | undefined;
819
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
810
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
820
811
  }>, "many">;
821
812
  total: z.ZodNumber;
822
813
  }, "strip", z.ZodTypeAny, {
@@ -831,7 +822,7 @@ export declare const MemoryLoadOutputSchema: z.ZodObject<{
831
822
  id: string & z.BRAND<"UUID">;
832
823
  content: string;
833
824
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
834
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
825
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
835
826
  }[];
836
827
  }, {
837
828
  total: number;
@@ -845,7 +836,7 @@ export declare const MemoryLoadOutputSchema: z.ZodObject<{
845
836
  id: string;
846
837
  content: string;
847
838
  sessionId?: string | undefined;
848
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
839
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
849
840
  }[];
850
841
  }>;
851
842
  export declare const MemoryUpdateOutputSchema: z.ZodObject<{
@@ -859,7 +850,7 @@ export declare const MemoryUpdateOutputSchema: z.ZodObject<{
859
850
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
860
851
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
861
852
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
862
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
853
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
863
854
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
864
855
  category: z.ZodString;
865
856
  importance: z.ZodNumber;
@@ -875,7 +866,7 @@ export declare const MemoryUpdateOutputSchema: z.ZodObject<{
875
866
  id: string & z.BRAND<"UUID">;
876
867
  content: string;
877
868
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
878
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
869
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
879
870
  }, {
880
871
  createdAt: string;
881
872
  updatedAt: string;
@@ -886,7 +877,7 @@ export declare const MemoryUpdateOutputSchema: z.ZodObject<{
886
877
  id: string;
887
878
  content: string;
888
879
  sessionId?: string | undefined;
889
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
880
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
890
881
  }>;
891
882
  }, "strip", z.ZodTypeAny, {
892
883
  id: string & z.BRAND<"UUID">;
@@ -901,7 +892,7 @@ export declare const MemoryUpdateOutputSchema: z.ZodObject<{
901
892
  id: string & z.BRAND<"UUID">;
902
893
  content: string;
903
894
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
904
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
895
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
905
896
  };
906
897
  filePath: string;
907
898
  created: boolean;
@@ -919,7 +910,7 @@ export declare const MemoryUpdateOutputSchema: z.ZodObject<{
919
910
  id: string;
920
911
  content: string;
921
912
  sessionId?: string | undefined;
922
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
913
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
923
914
  };
924
915
  filePath: string;
925
916
  created: boolean;
@@ -943,7 +934,7 @@ export declare const ListMemoryOutputSchema: z.ZodObject<{
943
934
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
944
935
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
945
936
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
946
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
937
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
947
938
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
948
939
  category: z.ZodString;
949
940
  importance: z.ZodNumber;
@@ -959,7 +950,7 @@ export declare const ListMemoryOutputSchema: z.ZodObject<{
959
950
  id: string & z.BRAND<"UUID">;
960
951
  content: string;
961
952
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
962
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
953
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
963
954
  }, {
964
955
  createdAt: string;
965
956
  updatedAt: string;
@@ -970,7 +961,7 @@ export declare const ListMemoryOutputSchema: z.ZodObject<{
970
961
  id: string;
971
962
  content: string;
972
963
  sessionId?: string | undefined;
973
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
964
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
974
965
  }>, "many">;
975
966
  total: z.ZodNumber;
976
967
  hasMore: z.ZodBoolean;
@@ -985,7 +976,7 @@ export declare const ListMemoryOutputSchema: z.ZodObject<{
985
976
  id: string & z.BRAND<"UUID">;
986
977
  content: string;
987
978
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
988
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
979
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
989
980
  }[];
990
981
  total: number;
991
982
  hasMore: boolean;
@@ -1000,7 +991,7 @@ export declare const ListMemoryOutputSchema: z.ZodObject<{
1000
991
  id: string;
1001
992
  content: string;
1002
993
  sessionId?: string | undefined;
1003
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
994
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1004
995
  }[];
1005
996
  total: number;
1006
997
  hasMore: boolean;
@@ -1013,7 +1004,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1013
1004
  createdAt: z.ZodBranded<z.ZodString, "ISO8601">;
1014
1005
  updatedAt: z.ZodBranded<z.ZodString, "ISO8601">;
1015
1006
  sessionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1016
- entryType: z.ZodOptional<z.ZodEnum<["decision", "preference", "knowledge", "todo", "state_change"]>>;
1007
+ entryType: z.ZodOptional<z.ZodEnum<["preference", "decision", "context", "fact"]>>;
1017
1008
  tags: z.ZodReadonly<z.ZodArray<z.ZodString, "many">>;
1018
1009
  category: z.ZodString;
1019
1010
  importance: z.ZodNumber;
@@ -1029,7 +1020,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1029
1020
  id: string & z.BRAND<"UUID">;
1030
1021
  content: string;
1031
1022
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
1032
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1023
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1033
1024
  }, {
1034
1025
  createdAt: string;
1035
1026
  updatedAt: string;
@@ -1040,7 +1031,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1040
1031
  id: string;
1041
1032
  content: string;
1042
1033
  sessionId?: string | undefined;
1043
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1034
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1044
1035
  }>;
1045
1036
  score: z.ZodNumber;
1046
1037
  matches: z.ZodArray<z.ZodString, "many">;
@@ -1055,7 +1046,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1055
1046
  id: string & z.BRAND<"UUID">;
1056
1047
  content: string;
1057
1048
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
1058
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1049
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1059
1050
  };
1060
1051
  score: number;
1061
1052
  matches: string[];
@@ -1070,7 +1061,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1070
1061
  id: string;
1071
1062
  content: string;
1072
1063
  sessionId?: string | undefined;
1073
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1064
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1074
1065
  };
1075
1066
  score: number;
1076
1067
  matches: string[];
@@ -1089,7 +1080,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1089
1080
  id: string & z.BRAND<"UUID">;
1090
1081
  content: string;
1091
1082
  sessionId?: (string & z.BRAND<"UUID">) | undefined;
1092
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1083
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1093
1084
  };
1094
1085
  score: number;
1095
1086
  matches: string[];
@@ -1107,7 +1098,7 @@ export declare const SearchMemoryOutputSchema: z.ZodObject<{
1107
1098
  id: string;
1108
1099
  content: string;
1109
1100
  sessionId?: string | undefined;
1110
- entryType?: "decision" | "preference" | "knowledge" | "todo" | "state_change" | undefined;
1101
+ entryType?: "preference" | "decision" | "context" | "fact" | undefined;
1111
1102
  };
1112
1103
  score: number;
1113
1104
  matches: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/contracts/schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/contracts/schemas.ts"],"names":[],"mappings":"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"}