Document memory systems and deprecate unstructured SimpleMemoryStore#5
Draft
Document memory systems and deprecate unstructured SimpleMemoryStore#5
Conversation
Co-authored-by: kylebrodeur <811103+kylebrodeur@users.noreply.github.com>
Co-authored-by: kylebrodeur <811103+kylebrodeur@users.noreply.github.com>
Co-authored-by: kylebrodeur <811103+kylebrodeur@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Review and improve context and memory structuring
Document memory systems and deprecate unstructured SimpleMemoryStore
Feb 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
UACS has two memory systems: the modern Semantic API (v0.3.0) with structured Pydantic models and rich metadata, and the legacy SimpleMemoryStore that accepts unstructured
dict[str, Any]. The "basic strings" concern applies only to SimpleMemoryStore—examples already use Semantic API correctly.Changes
Deprecation
DeprecationWarningtoSimpleMemoryStore.__init__()directing users to Semantic APIDocumentation
MEMORY_SYSTEM_REVIEW.md- Comprehensive analysis comparing both systems, identifies the structured vs unstructured issue, provides 7 prioritized recommendationsdocs/MIGRATION_SIMPLE_TO_SEMANTIC.md- Migration guide with before/after examples, automated migration script, and troubleshootingREADME.md- Updated memory section to prominently feature Semantic API as recommended approachREVIEW_SUMMARY.md- Executive summary of findingsVerification
verify_memory_review.py- Script validating deprecation warning, documentation completenessComparison
SimpleMemoryStore (deprecated):
Semantic API (recommended):
The Semantic API already provides: Pydantic validation, semantic search, 7 typed categories (UserMessage, AssistantMessage, ToolUse, Convention, Decision, Learning, Artifact), confidence scores, provenance tracking, and automatic deduplication.
Impact
Non-breaking. Existing SimpleMemoryStore usage continues to work with deprecation warnings. Migration path documented for v1.0.0 removal.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.