@prmichaelsen/remember-mcp 0.1.0 → 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.
- package/agent/progress.yaml +96 -36
- package/dist/server-factory.js +1075 -1
- package/dist/server.js +1075 -1
- package/dist/tools/create-relationship.d.ts +79 -0
- package/dist/tools/delete-relationship.d.ts +41 -0
- package/dist/tools/find-similar.d.ts +77 -0
- package/dist/tools/query-memory.d.ts +115 -0
- package/dist/tools/search-relationship.d.ts +86 -0
- package/dist/tools/update-memory.d.ts +92 -0
- package/dist/tools/update-relationship.d.ts +74 -0
- package/package.json +1 -1
- package/src/server-factory.ts +46 -0
- package/src/server.ts +46 -0
- package/src/tools/create-relationship.ts +242 -0
- package/src/tools/delete-relationship.ts +160 -0
- package/src/tools/find-similar.ts +199 -0
- package/src/tools/query-memory.ts +284 -0
- package/src/tools/search-relationship.ts +228 -0
- package/src/tools/update-memory.ts +230 -0
- package/src/tools/update-relationship.ts +189 -0
package/agent/progress.yaml
CHANGED
|
@@ -39,12 +39,12 @@ milestones:
|
|
|
39
39
|
|
|
40
40
|
- id: M2
|
|
41
41
|
name: Core Memory System
|
|
42
|
-
status:
|
|
43
|
-
progress:
|
|
42
|
+
status: completed
|
|
43
|
+
progress: 100%
|
|
44
44
|
started: 2026-02-11
|
|
45
|
-
completed:
|
|
45
|
+
completed: 2026-02-11
|
|
46
46
|
estimated_weeks: 2
|
|
47
|
-
tasks_completed:
|
|
47
|
+
tasks_completed: 6
|
|
48
48
|
tasks_total: 6
|
|
49
49
|
notes: |
|
|
50
50
|
✅ Memory type definitions created (Memory, Relationship, ContentType)
|
|
@@ -53,18 +53,37 @@ milestones:
|
|
|
53
53
|
✅ remember_create_memory tool implemented
|
|
54
54
|
✅ remember_search_memory tool implemented (hybrid search with filters)
|
|
55
55
|
✅ remember_delete_memory tool implemented
|
|
56
|
-
✅
|
|
56
|
+
✅ remember_update_memory tool implemented (partial updates, version increment)
|
|
57
|
+
✅ remember_find_similar tool implemented (vector similarity search)
|
|
58
|
+
✅ remember_query_memory tool implemented (RAG queries with natural language)
|
|
59
|
+
✅ All 6 tools integrated into server.ts and server-factory.ts
|
|
57
60
|
✅ TypeScript compiles without errors
|
|
58
61
|
✅ Build successful
|
|
59
|
-
✅
|
|
62
|
+
✅ Complete memory CRUD + search + RAG functionality
|
|
60
63
|
⚠️ Needs Weaviate instance to test end-to-end
|
|
61
|
-
📋 TODO: remember_update_memory, remember_find_similar, remember_query_memory
|
|
62
64
|
|
|
63
65
|
- id: M3
|
|
64
66
|
name: Relationships & Graph
|
|
65
|
-
status:
|
|
66
|
-
progress:
|
|
67
|
+
status: completed
|
|
68
|
+
progress: 100%
|
|
69
|
+
started: 2026-02-11
|
|
70
|
+
completed: 2026-02-11
|
|
67
71
|
estimated_weeks: 1
|
|
72
|
+
tasks_completed: 4
|
|
73
|
+
tasks_total: 4
|
|
74
|
+
notes: |
|
|
75
|
+
✅ remember_create_relationship tool implemented
|
|
76
|
+
✅ remember_update_relationship tool implemented
|
|
77
|
+
✅ remember_search_relationship tool implemented
|
|
78
|
+
✅ remember_delete_relationship tool implemented
|
|
79
|
+
✅ Bidirectional updates: memories updated when relationships created/deleted
|
|
80
|
+
✅ Relationships stored in Memory_{user_id} with doc_type: "relationship"
|
|
81
|
+
✅ N-way relationships supported (2...N memories)
|
|
82
|
+
✅ Semantic search on relationship observations
|
|
83
|
+
✅ All 4 tools integrated into server.ts and server-factory.ts
|
|
84
|
+
✅ TypeScript compiles without errors
|
|
85
|
+
✅ Build successful
|
|
86
|
+
✅ Complete relationship CRUD functionality
|
|
68
87
|
|
|
69
88
|
- id: M4
|
|
70
89
|
name: User Preferences
|
|
@@ -282,21 +301,50 @@ tasks:
|
|
|
282
301
|
|
|
283
302
|
- id: task-15
|
|
284
303
|
name: Implement remember_update_memory
|
|
285
|
-
status:
|
|
304
|
+
status: completed
|
|
286
305
|
file: agent/tasks/task-15-update-memory-tool.md
|
|
287
306
|
estimated_hours: 3
|
|
307
|
+
completed_date: 2026-02-11
|
|
308
|
+
notes: |
|
|
309
|
+
✅ Created src/tools/update-memory.ts
|
|
310
|
+
✅ Partial updates (only provided fields updated)
|
|
311
|
+
✅ Version increment on each update
|
|
312
|
+
✅ updated_at timestamp automatic
|
|
313
|
+
✅ Ownership verification
|
|
314
|
+
✅ Content type validation
|
|
315
|
+
✅ Weight/trust bounds checking
|
|
316
|
+
✅ Integrated into server.ts and server-factory.ts
|
|
288
317
|
|
|
289
318
|
- id: task-16
|
|
290
319
|
name: Implement remember_find_similar
|
|
291
|
-
status:
|
|
320
|
+
status: completed
|
|
292
321
|
file: agent/tasks/task-16-find-similar-tool.md
|
|
293
322
|
estimated_hours: 3
|
|
323
|
+
completed_date: 2026-02-11
|
|
324
|
+
notes: |
|
|
325
|
+
✅ Created src/tools/find-similar.ts
|
|
326
|
+
✅ Vector similarity search using nearObject/nearText
|
|
327
|
+
✅ Supports finding similar to existing memory or text
|
|
328
|
+
✅ Configurable similarity threshold (min_similarity)
|
|
329
|
+
✅ Similarity scores (0-1) included in results
|
|
330
|
+
✅ Ownership verification
|
|
331
|
+
✅ Integrated into server.ts and server-factory.ts
|
|
294
332
|
|
|
295
333
|
- id: task-17
|
|
296
334
|
name: Implement remember_query_memory
|
|
297
|
-
status:
|
|
335
|
+
status: completed
|
|
298
336
|
file: agent/tasks/task-17-query-memory-tool.md
|
|
299
337
|
estimated_hours: 4
|
|
338
|
+
completed_date: 2026-02-11
|
|
339
|
+
notes: |
|
|
340
|
+
✅ Created src/tools/query-memory.ts
|
|
341
|
+
✅ RAG-optimized natural language queries
|
|
342
|
+
✅ Semantic search with relevance scores
|
|
343
|
+
✅ Two output formats: detailed (full objects) and compact (text summary)
|
|
344
|
+
✅ Comprehensive filters (type, tags, weight, trust, date)
|
|
345
|
+
✅ Configurable relevance threshold
|
|
346
|
+
✅ Context inclusion toggle
|
|
347
|
+
✅ Integrated into server.ts and server-factory.ts
|
|
300
348
|
|
|
301
349
|
documentation:
|
|
302
350
|
design_documents: 23
|
|
@@ -306,46 +354,54 @@ documentation:
|
|
|
306
354
|
|
|
307
355
|
progress:
|
|
308
356
|
planning: 100%
|
|
309
|
-
implementation:
|
|
310
|
-
overall:
|
|
357
|
+
implementation: 45%
|
|
358
|
+
overall: 45%
|
|
311
359
|
|
|
312
360
|
recent_work:
|
|
313
361
|
- date: 2026-02-11
|
|
314
|
-
description:
|
|
362
|
+
description: M2 Complete - Core Memory System
|
|
315
363
|
items:
|
|
364
|
+
- 🎉 Milestone 2 (Core Memory System) COMPLETED!
|
|
316
365
|
- 🎉 Milestone 1 (Project Foundation) COMPLETED!
|
|
317
|
-
- ✅ All
|
|
318
|
-
- ✅ 25 unit tests passing (1 skipped integration test)
|
|
319
|
-
- ✅ Test coverage: 30.37% overall
|
|
320
|
-
- ✅ TypeScript compiles without errors
|
|
321
|
-
- ✅ Dual build working: server.js + server-factory.js
|
|
322
|
-
- ✅ Server factory compatible with mcp-auth
|
|
323
|
-
- ✅ M2 started: 3/6 memory tools implemented
|
|
366
|
+
- ✅ All 6 M2 memory tools implemented
|
|
324
367
|
- ✅ remember_create_memory with 45 content types
|
|
325
368
|
- ✅ remember_search_memory with hybrid search + filters
|
|
326
369
|
- ✅ remember_delete_memory with cascade option
|
|
370
|
+
- ✅ remember_update_memory with partial updates + versioning
|
|
371
|
+
- ✅ remember_find_similar with vector similarity search
|
|
372
|
+
- ✅ remember_query_memory with RAG-optimized queries
|
|
373
|
+
- ✅ All tools integrated into both server.ts and server-factory.ts
|
|
374
|
+
- ✅ TypeScript compiles without errors
|
|
375
|
+
- ✅ Build successful
|
|
376
|
+
- ✅ Complete memory CRUD + search + RAG functionality
|
|
327
377
|
- ✅ Comprehensive Memory and Relationship type definitions
|
|
328
378
|
- ✅ Weaviate schema with unified memory+relationship storage
|
|
329
379
|
- ✅ Content type system with dynamic descriptions
|
|
330
|
-
- ✅
|
|
331
|
-
-
|
|
332
|
-
- 📋 Ready for
|
|
380
|
+
- ✅ 25 unit tests passing (1 skipped integration test)
|
|
381
|
+
- ✅ Test coverage: 30.37% overall
|
|
382
|
+
- 📋 Ready for M3: Relationship tools
|
|
333
383
|
|
|
334
384
|
next_steps:
|
|
335
|
-
-
|
|
336
|
-
-
|
|
337
|
-
-
|
|
338
|
-
- Test MVP with actual Weaviate instance (create .env file)
|
|
339
|
-
- Consider M3: Relationship tools (create, update, search, delete)
|
|
385
|
+
- Start M4: User Preferences system
|
|
386
|
+
- Test complete memory + relationship system with actual Weaviate instance (create .env file)
|
|
387
|
+
- Consider implementing relationship graph traversal queries
|
|
340
388
|
- Optional: Create integration tests (Task 6)
|
|
341
389
|
- Optional: Add development documentation (Task 7)
|
|
390
|
+
- Consider M5: Template System
|
|
342
391
|
|
|
343
392
|
notes:
|
|
393
|
+
- 🎉 Milestone 3 (Relationships & Graph) COMPLETED!
|
|
394
|
+
- 🎉 Milestone 2 (Core Memory System) COMPLETED!
|
|
344
395
|
- 🎉 Milestone 1 (Project Foundation) COMPLETED!
|
|
345
396
|
- ✅ All 23 design documents complete and comprehensive
|
|
346
397
|
- ✅ All 9 milestones defined with clear deliverables
|
|
347
398
|
- ✅ M1: 7 tasks complete (Tasks 1-5, 9 complete; Tasks 6-7 deferred)
|
|
348
|
-
- ✅ M2:
|
|
399
|
+
- ✅ M2: 6/6 memory tools complete (100% progress)
|
|
400
|
+
- ✅ M3: 4/4 relationship tools complete (100% progress)
|
|
401
|
+
- ✅ Complete memory CRUD operations (create, read, update, delete)
|
|
402
|
+
- ✅ Complete relationship CRUD operations (create, read, update, delete)
|
|
403
|
+
- ✅ Advanced search capabilities (hybrid, similarity, RAG queries)
|
|
404
|
+
- ✅ Relationship semantic search on observations
|
|
349
405
|
- ✅ Module name mapping (@/) configured across TypeScript, Jest, and esbuild
|
|
350
406
|
- ✅ Project structure follows bootstrap.md pattern
|
|
351
407
|
- ✅ All dependencies installed (497 packages with firebase-admin-sdk-v8)
|
|
@@ -360,14 +416,18 @@ notes:
|
|
|
360
416
|
- ✅ 45 content types with dynamic descriptions
|
|
361
417
|
- ✅ Comprehensive type system (Memory, Relationship, Location, Context)
|
|
362
418
|
- ✅ Hybrid search with filters (type, tags, weight, trust, date)
|
|
363
|
-
-
|
|
364
|
-
-
|
|
419
|
+
- ✅ Vector similarity search for finding related memories
|
|
420
|
+
- ✅ RAG-optimized queries with detailed and compact formats
|
|
421
|
+
- ✅ N-way relationships connecting 2...N memories
|
|
422
|
+
- ✅ Bidirectional relationship tracking (memories know their relationships)
|
|
423
|
+
- ✅ Free-form relationship types (inspired_by, contradicts, caused_by, etc.)
|
|
424
|
+
- ✅ Relationship observations vectorized for semantic search
|
|
425
|
+
- 📋 Ready for M4: User Preferences system
|
|
365
426
|
|
|
366
427
|
current_blockers:
|
|
367
|
-
- No Weaviate instance running (
|
|
428
|
+
- No Weaviate instance running (all code ready, needs Weaviate to test end-to-end)
|
|
368
429
|
- Environment variables need to be configured (.env file with WEAVIATE_URL, OPENAI_APIKEY, etc.)
|
|
369
|
-
-
|
|
370
|
-
- M3 not started: Relationship tools (create, update, search, delete)
|
|
430
|
+
- M4 not started: User Preferences system
|
|
371
431
|
|
|
372
432
|
environment_configured:
|
|
373
433
|
- ⚠️ .env file needs to be created from .env.example
|