Extend cross-agent memory (Omni/Agent/Memory.hs) to record and index all agent interactions, not just explicit "remember" calls.
Memory.hs has:
saveChatHistoryEntry - saves messages with embeddingssearchChatHistorySemantic - search chat history by similarityrecallMemories - semantic recall for explicit memorieslookup_past_discussions tool to find:1. What's the right granularity? Full turns? Tool calls? Summaries? 2. How to handle context limits when injecting recalled context? 3. Privacy boundaries (per-user? per-project? global?)
Builds on existing Memory.hs infrastructure.
Making good progress on cross-agent memory implementation. Added AgentInteraction types, database schema, and tool functions. Currently debugging SQL ToRow instance issues. The core functionality is there but needs some type-level fixes.