Commit fd387af
committed
feat: full steel-memory integration
Expand steel_memory.rs to use all steel-memory features:
## Vector Search (existing)
- Semantic search over memories
- Add/index memories to palace
- Workspace indexing (MEMORY.md, memory/*.md)
## Knowledge Graph (new)
- kg_add() — add temporal RDF triples (subject-predicate-object)
- kg_invalidate() — soft-delete triples
- kg_query() — query by entity (outgoing/incoming/both)
- kg_timeline() — chronological triples for an entity
- kg_stats() — entity/triple counts
## Palace Graph (new)
- palace_graph() — build room/wing graph with drawer counts
- palace_traverse() — BFS traversal from a starting room
- palace_tunnels() — find rooms that exist in multiple wings
- palace_stats() — wings/rooms/tunnels statistics
## AAAK Dialect (new)
- compress_aaak() — compress memory to efficient dialect format
- wake_up() — generate AAAK-compressed context for priming
## Agent Diary (new)
- diary_write() — write timestamped journal entries
- diary_read() — read entries filtered by agent
Also:
- Rename SteelMemoryIndex → SteelMemory (with type alias for compat)
- Add comprehensive tests for all new features
- Update steel-memory dependency to use main branch (0.1.2+)
Requires steel-memory commit c3fdcf4 which exports KnowledgeGraph,
PalaceGraph, RoomNode, Entity, and Triple types.1 parent 3abda40 commit fd387af
2 files changed
+483
-22
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
| |||
0 commit comments