What problem does it solve? Agents that cannot learn from past experiences repeat mistakes and rediscover solutions. This Skill implements ReasoningBank adaptive learning on AgentDB's vector database so agents can store experiences, judge outcomes, distill patterns, and improve decisions over time. ## Core Features & Use Cases - Trajectory Tracking & Verdict Judgment: Record agent execution paths and judge success by comparing against similar past trajectories. - Memory Distillation & Pattern Recognition: Consolidate similar experiences into reusable patterns using PatternMatcher, ContextSynthesizer, MemoryOptimizer, and ExperienceCurator modules. - Legacy Compatibility & Migration: Migrate existing ReasoningBank databases with the CLI while keeping the legacy API fully functional. - Use Case: A coding agent stores each successful optimization approach as an embedded pattern; when facing a new N+1 query problem, it retrieves similar past solutions with confidence scores and applies the highest-rated approach. ## Quick Start Ask the AI to initialize an AgentDB ReasoningBank database and store a successful task experience as a retrievable pattern.