agentdb 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +29 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -359,7 +359,7 @@ npm install agentdb
359
359
  claude mcp add agentdb npx agentdb@latest mcp start
360
360
  ```
361
361
 
362
- This automatically configures Claude Code with all 14 AgentDB tools.
362
+ This automatically configures Claude Code with all 29 AgentDB tools.
363
363
 
364
364
  **Manual Setup:**
365
365
 
@@ -379,24 +379,41 @@ Add AgentDB to your Claude Desktop config (`~/.config/claude/claude_desktop_conf
379
379
  **Available MCP Tools (29 total - v1.3.0):**
380
380
 
381
381
  *Core Vector DB Tools (5):*
382
- - `agentdb_init`, `agentdb_insert`, `agentdb_insert_batch`, `agentdb_search`, `agentdb_delete`
382
+ - `agentdb_init` - Initialize database with schema
383
+ - `agentdb_insert` - Insert single vector with metadata
384
+ - `agentdb_insert_batch` - Batch insert with transactions (141x faster)
385
+ - `agentdb_search` - Semantic k-NN vector search with filters
386
+ - `agentdb_delete` - Delete vectors by ID or filters
383
387
 
384
388
  *Core AgentDB Tools (5 - NEW v1.3.0):*
385
- - `agentdb_stats`, `agentdb_pattern_store`, `agentdb_pattern_search`, `agentdb_pattern_stats`, `agentdb_clear_cache`
389
+ - `agentdb_stats` - Comprehensive database statistics
390
+ - `agentdb_pattern_store` - Store reasoning patterns with embeddings
391
+ - `agentdb_pattern_search` - Search reasoning patterns semantically
392
+ - `agentdb_pattern_stats` - Pattern analytics and top task types
393
+ - `agentdb_clear_cache` - Cache management for optimal performance
386
394
 
387
395
  *Frontier Memory Tools (9):*
388
- - `reflexion_store`, `reflexion_retrieve` - Learn from experience
389
- - `skill_create`, `skill_search` - Reusable code patterns
390
- - `causal_add_edge`, `causal_query` - Cause-effect relationships
396
+ - `reflexion_store` - Store episode with self-critique
397
+ - `reflexion_retrieve` - Retrieve relevant past episodes
398
+ - `skill_create` - Create reusable skill
399
+ - `skill_search` - Search for applicable skills
400
+ - `causal_add_edge` - Add causal relationship
401
+ - `causal_query` - Query causal effects
391
402
  - `recall_with_certificate` - Utility-based retrieval with provenance
392
- - `learner_discover` - Automated pattern discovery
393
- - `db_stats` - Database statistics
403
+ - `learner_discover` - Automated causal pattern discovery
404
+ - `db_stats` - Database statistics showing record counts
394
405
 
395
406
  *Learning System Tools (10 - NEW v1.3.0):*
396
- - `learning_start_session`, `learning_end_session` - Session management
397
- - `learning_predict`, `learning_feedback`, `learning_train` - Adaptive learning
398
- - `learning_metrics`, `learning_transfer`, `learning_explain` - Analytics & transfer
399
- - `experience_record`, `reward_signal` - Experience replay & reward shaping
407
+ - `learning_start_session` - Start RL session with algorithm selection
408
+ - `learning_end_session` - End session and save learned policy
409
+ - `learning_predict` - Get AI action recommendations
410
+ - `learning_feedback` - Submit action feedback for learning
411
+ - `learning_train` - Train policy with batch learning
412
+ - `learning_metrics` - Get performance metrics and trends
413
+ - `learning_transfer` - Transfer knowledge between tasks
414
+ - `learning_explain` - Explainable AI recommendations
415
+ - `experience_record` - Record tool execution experience
416
+ - `reward_signal` - Calculate reward signals for learning
400
417
 
401
418
  [📚 Full MCP Tools Guide](docs/MCP_TOOLS.md) | [🔄 Migration Guide v1.3.0](MIGRATION_v1.3.0.md)
402
419
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentdb",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "AgentDB - Frontier Memory Features with MCP Integration: Causal reasoning, reflexion memory, skill library, and automated learning. 150x faster vector search. Full Claude Desktop support via Model Context Protocol.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",