What problem does it solve? Building self-improving agents requires implementing reinforcement learning from scratch, which is complex and error-prone. This Skill provides ready-to-use templates and APIs for training agents that learn from experience using AgentDB's plugin system. ## Core Features & Use Cases - Nine RL Algorithms: Create plugins for Decision Transformer, Q-Learning, SARSA, Actor-Critic, Active Learning, Adversarial Training, Curriculum Learning, Federated Learning, and Multi-Task Learning. - CLI and API Workflows: Scaffold plugins with npx agentdb create-plugin or train models programmatically via the agentic-flow adapter with experience storage and batch training. - Use Case: Imagine building a game-playing agent. Store state-action-reward experiences in AgentDB, train a Decision Transformer on logged episodes, then retrieve similar successful experiences at inference time to suggest actions with confidence scores. ## Quick Start Ask the AI to create a Decision Transformer learning plugin with AgentDB and train it on stored agent experiences.