
Agentdb Memory Patterns
- 985 installs
- 67k repo stars
- Updated August 4, 2026
- ruvnet/ruflo
agentdb memory patterns is a Claude Code skill that implements persistent memory, conversation history, and cross-session learning for AI agents using AgentDB storage and ReasoningBank integration.
About
agentdb memory patterns provides memory management patterns for AI agents built on AgentDB persistent storage with ReasoningBank integration. The skill covers session memory, long-term storage, pattern learning, and context management so agents remember conversations and maintain state across sessions. The readme cites 150x–12,500x performance gains versus traditional solutions with 100% backward compatibility. Prerequisites include Node.js 18+ and AgentDB. Developers reach for this skill when building stateful agents, multi-turn chat systems, or intelligent assistants that must recall prior interactions and learned patterns.
- Implements session memory, long-term storage, pattern learning, and context management using AgentDB
- 150x–12,500x faster than traditional vector database solutions with 100% backward compatibility
- One-command MCP server setup for Claude Code integration
- Interactive plugin wizard plus preset configurations for rapid agent memory setup
- Supports both persistent .$agents.db and in-memory testing databases
Agentdb Memory Patterns by the numbers
- 985 all-time installs (skills.sh)
- +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #1,110 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ruvnet/ruflo --skill agentdb-memory-patternsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 985 |
|---|---|
| repo stars | ★ 67k |
| Security audit | 1 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ruvnet/ruflo ↗ |
How do you add persistent memory to AI agents?
Give their AI agents persistent memory, conversation history, and learning capabilities across sessions.
Who is it for?
Node.js developers building stateful agents or chat assistants that need durable conversation history and learned patterns via AgentDB.
Skip if: Single-shot prompt workflows with no session state or teams not using AgentDB or Node.js 18+.
When should I use this skill?
A developer builds a stateful agent, chat system, or assistant requiring persistent memory across sessions with AgentDB.
What you get
AgentDB memory schemas, session stores, long-term pattern caches, and cross-session context handlers.
- memory schemas
- session stores
- context handlers
By the numbers
- Documents 150x–12,500x faster performance than traditional solutions
- Requires Node.js 18+
Files
AgentDB Memory Patterns
What This Skill Does
Provides memory management patterns for AI agents using AgentDB's persistent storage and ReasoningBank integration. Enables agents to remember conversations, learn from interactions, and maintain context across sessions.
Performance: 150x-12,500x faster than traditional solutions with 100% backward compatibility.
Prerequisites
- Node.js 18+
- AgentDB v1.0.7+ (via agentic-flow or standalone)
- Understanding of agent architectures
Quick Start with CLI
Initialize AgentDB
# Initialize vector database
npx agentdb@latest init .$agents.db
# Or with custom dimensions
npx agentdb@latest init .$agents.db --dimension 768
# Use preset configurations
npx agentdb@latest init .$agents.db --preset large
# In-memory database for testing
npx agentdb@latest init .$memory.db --in-memoryStart MCP Server for Claude Code
# Start MCP server (integrates with Claude Code)
npx agentdb@latest mcp
# Add to Claude Code (one-time setup)
claude mcp add agentdb npx agentdb@latest mcpCreate Learning Plugin
# Interactive plugin wizard
npx agentdb@latest create-plugin
# Use template directly
npx agentdb@latest create-plugin -t decision-transformer -n my-agent
# Available templates:
# - decision-transformer (sequence modeling RL)
# - q-learning (value-based learning)
# - sarsa (on-policy TD learning)
# - actor-critic (policy gradient)
# - curiosity-driven (exploration-based)Quick Start with API
import { createAgentDBAdapter } from 'agentic-flow$reasoningbank';
// Initialize with default configuration
const adapter = await createAgentDBAdapter({
dbPath: '.agentdb$reasoningbank.db',
enableLearning: true, // Enable learning plugins
enableReasoning: true, // Enable reasoning agents
quantizationType: 'scalar', // binary | scalar | product | none
cacheSize: 1000, // In-memory cache
});
// Store interaction memory
const patternId = await adapter.insertPattern({
id: '',
type: 'pattern',
domain: 'conversation',
pattern_data: JSON.stringify({
embedding: await computeEmbedding('What is the capital of France?'),
pattern: {
user: 'What is the capital of France?',
assistant: 'The capital of France is Paris.',
timestamp: Date.now()
}
}),
confidence: 0.95,
usage_count: 1,
success_count: 1,
created_at: Date.now(),
last_used: Date.now(),
});
// Retrieve context with reasoning
const context = await adapter.retrieveWithReasoning(queryEmbedding, {
domain: 'conversation',
k: 10,
useMMR: true, // Maximal Marginal Relevance
synthesizeContext: true, // Generate rich context
});Memory Patterns
1. Session Memory
class SessionMemory {
async storeMessage(role: string, content: string) {
return await db.storeMemory({
sessionId: this.sessionId,
role,
content,
timestamp: Date.now()
});
}
async getSessionHistory(limit = 20) {
return await db.query({
filters: { sessionId: this.sessionId },
orderBy: 'timestamp',
limit
});
}
}2. Long-Term Memory
// Store important facts
await db.storeFact({
category: 'user_preference',
key: 'language',
value: 'English',
confidence: 1.0,
source: 'explicit'
});
// Retrieve facts
const prefs = await db.getFacts({
category: 'user_preference'
});3. Pattern Learning
// Learn from successful interactions
await db.storePattern({
trigger: 'user_asks_time',
response: 'provide_formatted_time',
success: true,
context: { timezone: 'UTC' }
});
// Apply learned patterns
const pattern = await db.matchPattern(currentContext);Advanced Patterns
Hierarchical Memory
// Organize memory in hierarchy
await memory.organize({
immediate: recentMessages, // Last 10 messages
shortTerm: sessionContext, // Current session
longTerm: importantFacts, // Persistent facts
semantic: embeddedKnowledge // Vector search
});Memory Consolidation
// Periodically consolidate memories
await memory.consolidate({
strategy: 'importance', // Keep important memories
maxSize: 10000, // Size limit
minScore: 0.5 // Relevance threshold
});CLI Operations
Query Database
# Query with vector embedding
npx agentdb@latest query .$agents.db "[0.1,0.2,0.3,...]"
# Top-k results
npx agentdb@latest query .$agents.db "[0.1,0.2,0.3]" -k 10
# With similarity threshold
npx agentdb@latest query .$agents.db "0.1 0.2 0.3" -t 0.75
# JSON output
npx agentdb@latest query .$agents.db "[...]" -f jsonImport/Export Data
# Export vectors to file
npx agentdb@latest export .$agents.db .$backup.json
# Import vectors from file
npx agentdb@latest import .$backup.json
# Get database statistics
npx agentdb@latest stats .$agents.dbPerformance Benchmarks
# Run performance benchmarks
npx agentdb@latest benchmark
# Results show:
# - Pattern Search: 150x faster (100µs vs 15ms)
# - Batch Insert: 500x faster (2ms vs 1s)
# - Large-scale Query: 12,500x faster (8ms vs 100s)Integration with ReasoningBank
import { createAgentDBAdapter, migrateToAgentDB } from 'agentic-flow$reasoningbank';
// Migrate from legacy ReasoningBank
const result = await migrateToAgentDB(
'.swarm$memory.db', // Source (legacy)
'.agentdb$reasoningbank.db' // Destination (AgentDB)
);
console.log(`✅ Migrated ${result.patternsMigrated} patterns`);
// Train learning model
const adapter = await createAgentDBAdapter({
enableLearning: true,
});
await adapter.train({
epochs: 50,
batchSize: 32,
});
// Get optimal strategy with reasoning
const result = await adapter.retrieveWithReasoning(queryEmbedding, {
domain: 'task-planning',
synthesizeContext: true,
optimizeMemory: true,
});Learning Plugins
Available Algorithms (9 Total)
1. Decision Transformer - Sequence modeling RL (recommended) 2. Q-Learning - Value-based learning 3. SARSA - On-policy TD learning 4. Actor-Critic - Policy gradient with baseline 5. Active Learning - Query selection 6. Adversarial Training - Robustness 7. Curriculum Learning - Progressive difficulty 8. Federated Learning - Distributed learning 9. Multi-task Learning - Transfer learning
List and Manage Plugins
# List available plugins
npx agentdb@latest list-plugins
# List plugin templates
npx agentdb@latest list-templates
# Get plugin info
npx agentdb@latest plugin-info <name>Reasoning Agents (4 Modules)
1. PatternMatcher - Find similar patterns with HNSW indexing 2. ContextSynthesizer - Generate rich context from multiple sources 3. MemoryOptimizer - Consolidate similar patterns, prune low-quality 4. ExperienceCurator - Quality-based experience filtering
Best Practices
1. Enable quantization: Use scalar$binary for 4-32x memory reduction 2. Use caching: 1000 pattern cache for <1ms retrieval 3. Batch operations: 500x faster than individual inserts 4. Train regularly: Update learning models with new experiences 5. Enable reasoning: Automatic context synthesis and optimization 6. Monitor metrics: Use stats command to track performance
Troubleshooting
Issue: Memory growing too large
# Check database size
npx agentdb@latest stats .$agents.db
# Enable quantization
# Use 'binary' (32x smaller) or 'scalar' (4x smaller)Issue: Slow search performance
# Enable HNSW indexing and caching
# Results: <100µs search timeIssue: Migration from legacy ReasoningBank
# Automatic migration with validation
npx agentdb@latest migrate --source .swarm$memory.dbPerformance Characteristics
- Vector Search: <100µs (HNSW indexing)
- Pattern Retrieval: <1ms (with cache)
- Batch Insert: 2ms for 100 patterns
- Memory Efficiency: 4-32x reduction with quantization
- Backward Compatibility: 100% compatible with ReasoningBank API
Learn More
- GitHub: https:/$github.com$ruvnet$agentic-flow$tree$main$packages$agentdb
- Documentation: node_modules$agentic-flow/docs/AGENTDB_INTEGRATION.md
- MCP Integration:
npx agentdb@latest mcpfor Claude Code - Website: https:/$agentdb.ruv.io
Related skills
How it compares
Choose agentdb memory patterns over in-memory chat buffers when agents must persist conversation history and learned patterns across sessions with AgentDB.
FAQ
What does agentdb memory patterns require?
agentdb memory patterns requires Node.js 18+ and AgentDB. The skill implements session memory, long-term storage, and ReasoningBank integration for persistent agent context across conversations.
What memory types does agentdb memory patterns cover?
agentdb memory patterns covers session memory, long-term storage, pattern learning, and context management. Agents can remember prior conversations and maintain state across sessions using AgentDB APIs.
Is Agentdb Memory Patterns safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.