What problem does it solve? AI agents lose context between sessions and cannot learn from past interactions. This Skill provides memory management patterns using AgentDB so agents can store conversations, retrieve relevant context via vector search, and learn from successful interactions. ## Core Features & Use Cases - Session and Long-Term Memory: Store chat history, user facts, and preferences with confidence scores and retrieval APIs. - Pattern Learning with ReasoningBank: Record successful interaction patterns, retrieve them with MMR-based vector search, and train learning plugins such as Decision Transformer and Q-Learning. - CLI and MCP Integration: Initialize databases, run queries, import/export vectors, and expose memory to Claude Code through an MCP server. - Use Case: Build a support chatbot that remembers each user's preferences across sessions and retrieves the top-k relevant past interactions to ground its replies. ## Quick Start Initialize an AgentDB database and set up session memory for my chat agent so it can store and retrieve conversation history.