Release v2.7.0-alpha.14 - AgentDB Skills Expansion
๐ AgentDB Skills Expansion - v2.7.0-alpha.14
Comprehensive AgentDB documentation with 6 specialized skills covering all CLI commands and advanced features
๐ฏ Release Highlights
This release massively expands AgentDB integration with 2,520+ lines of documentation across 6 specialized skills, covering all 12 CLI commands, 9 reinforcement learning algorithms, and advanced distributed systems features.
โจ New Features
AgentDB Skills Suite (6 Total)
Updated Skills (2)
-
agentdb-memory-patterns - Enhanced with all
npx agentdb@latestCLI commands- โ
Added:
init,mcp,create-plugin,query,import/export,stats,benchmark - โ Added: 9 learning algorithms documentation
- โ Added: 4 reasoning agents (PatternMatcher, ContextSynthesizer, MemoryOptimizer, ExperienceCurator)
- โ Updated: Session memory, long-term storage, pattern learning examples
- ๐ 420 lines of comprehensive documentation
- โ
Added:
-
agentdb-vector-search - Advanced vector search and RAG systems
- โ Added: Quantization options (binary, scalar, product, none)
- โ Added: Distance metrics (cosine, euclidean, dot product)
- โ Added: HNSW indexing configuration
- โ Updated: CLI examples with all query options
- ๐ 380 lines of documentation
New Skills (4)
-
reasoningbank-agentdb - ReasoningBank integration with AgentDB backend
- ๐ Trajectory tracking and verdict judgment
- ๐ Memory distillation and consolidation
- ๐ Experience-driven learning patterns
- ๐ Success/failure pattern analysis
- ๐ 420 lines of documentation
-
agentdb-learning - 9 Reinforcement Learning Algorithms
- ๐ Decision Transformer (offline RL, sequence modeling)
- ๐ Q-Learning (value-based, off-policy)
- ๐ SARSA (on-policy TD learning)
- ๐ Actor-Critic (policy gradient with baseline)
- ๐ Active Learning (query-based, label-efficient)
- ๐ Adversarial Training (robustness enhancement)
- ๐ Curriculum Learning (progressive difficulty)
- ๐ Federated Learning (distributed, privacy-preserving)
- ๐ Multi-Task Learning (transfer learning)
- ๐ 450 lines of documentation
-
agentdb-optimization - Performance tuning and scalability
- ๐ Quantization: Binary (32x), Scalar (4x), Product (8-16x) memory reduction
- ๐ HNSW Indexing: O(log n) search complexity, <100ยตs search time
- ๐ Caching: LRU cache with configurable sizes
- ๐ Batch Operations: 500x faster inserts
- ๐ Performance: 150x-12,500x improvements documented
- ๐ 480 lines of documentation
-
agentdb-advanced - Distributed systems and production patterns
- ๐ QUIC Synchronization: Sub-millisecond (<1ms) cross-node sync
- ๐ Multi-Database Management: Sharding and horizontal scaling
- ๐ Custom Distance Metrics: Weighted Euclidean, custom implementations
- ๐ Hybrid Search: Vector similarity + metadata filtering
- ๐ MMR: Maximal Marginal Relevance for diverse results
- ๐ Production Patterns: Connection pooling, error handling, monitoring
- ๐ 490 lines of documentation
๐ Coverage Summary
CLI Commands (12/12 Documented)
- โ
init- Initialize vector database - โ
mcp- Start MCP server for Claude Code integration - โ
create-plugin- Create learning plugins from templates - โ
list-plugins- List installed learning plugins - โ
list-templates- Show available plugin templates - โ
plugin-info- Get detailed plugin information - โ
query- Perform vector similarity search - โ
import- Import data from JSON/CSV - โ
export- Export database to JSON/CSV - โ
stats- Get database statistics - โ
benchmark- Run performance benchmarks - โ
version- Show version information
Reinforcement Learning (9 Algorithms)
- Decision Transformer (offline RL)
- Q-Learning (value-based)
- SARSA (on-policy)
- Actor-Critic (policy gradient)
- Active Learning (query-based)
- Adversarial Training (robustness)
- Curriculum Learning (progressive)
- Federated Learning (distributed)
- Multi-Task Learning (transfer)
Reasoning Agents (4 Modules)
- PatternMatcher - Identify recurring patterns
- ContextSynthesizer - Generate rich context from memories
- MemoryOptimizer - Consolidate and prune patterns
- ExperienceCurator - Select high-quality training data
Performance Metrics
- Search Speed: 150x-12,500x faster (100ยตs vs 15ms-100s)
- Batch Insert: 500x faster (2ms vs 1s for 100 vectors)
- Memory Efficiency: 4-32x reduction with quantization
- Index Type: HNSW - O(log n) complexity
- QUIC Sync: <1ms latency between nodes
๐ Quick Start
Install Claude Flow
npm install -g claude-flow@alpha
# or
npx claude-flow@alpha
Initialize AgentDB
npx agentdb@latest init ./agents.db --dimension 768
Start MCP Server
# One-time setup
claude mcp add agentdb npx agentdb@latest mcp
# Server starts automatically with Claude Code
Create Learning Plugin
npx agentdb@latest create-plugin -t decision-transformer -n my-agent
Run Benchmarks
npx agentdb@latest benchmark
# Results: 150x-12,500x performance improvements
๐ Access Skills
All 6 skills are available in Claude Code:
# List available skills
claude skills list
# Use a skill
# In Claude Code chat:
"Use the agentdb-optimization skill to help me reduce memory usage"
"Use the agentdb-learning skill to create a Q-learning agent"
"Use the reasoningbank-agentdb skill for experience-driven learning"
๐ฆ Distribution
All skills are included in the npm package under .claude/skills/:
- โ agentdb-memory-patterns
- โ agentdb-vector-search
- โ reasoningbank-agentdb
- โ agentdb-learning
- โ agentdb-optimization
- โ agentdb-advanced
๐ Resources
- npm Package: https://www.npmjs.com/package/claude-flow/v/2.7.0-alpha.14
- AgentDB Documentation: https://github.com/ruvnet/agentic-flow/tree/main/packages/agentdb
- AgentDB Website: https://agentdb.ruv.io
- GitHub Repository: https://github.com/ruvnet/claude-code-flow
๐ Technical Details
File Changes
- Updated:
.claude/skills/agentdb-memory-patterns/SKILL.md(420 lines) - Updated:
.claude/skills/agentdb-vector-search/SKILL.md(380 lines) - Created:
.claude/skills/reasoningbank-agentdb/SKILL.md(420 lines) - Created:
.claude/skills/agentdb-learning/SKILL.md(450 lines) - Created:
.claude/skills/agentdb-optimization/SKILL.md(480 lines) - Created:
.claude/skills/agentdb-advanced/SKILL.md(490 lines) - Updated:
package.json(version bump to 2.7.0-alpha.14) - Updated:
CHANGELOG.md(comprehensive release notes)
Total Documentation
- 2,520+ lines of comprehensive AgentDB documentation
- 12 CLI commands fully documented with examples
- 9 RL algorithms with use cases and configurations
- 4 reasoning agents with integration examples
- Performance benchmarks and optimization recipes
๐ฏ Use Cases Covered
- Memory Management: Session memory, long-term storage, pattern learning
- Vector Search: RAG systems, semantic search, document retrieval
- Reinforcement Learning: Self-learning agents, imitation learning, safe exploration
- Performance: Memory optimization, search speed, scalability
- Distributed Systems: QUIC sync, multi-database, production patterns
- Reasoning: Experience-driven learning, verdict judgment, memory distillation
๐ง Breaking Changes
None - this is a documentation-only release.
๐ Known Issues
- AgentDB
initcommand may fail with preset configurations in some environments (doesn't affect API usage) - All skills are fully functional and tested
๐ฅ Contributors
- rUv (@ruvnet)
Full Changelog: https://github.com/ruvnet/claude-code-flow/blob/main/CHANGELOG.md