Release v2.7.0-alpha.14 - AgentDB Skills Expansion
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 72.8k
- Forks
- 8.6k
- Avg merge
- 2d 23h
- Merged PRs (30d)
- 82
Description
π 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
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up β it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Review the six SKILL.md files under .claude/skills/, along with package.json and CHANGELOG.md, which the release notes identify as changed. Start by checking whether the documented AgentDB commands, algorithms, and examples match the current package; done means the listed documentation and release metadata are accurate and consistent.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100