agentdb-query
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseAgentDB Query
AgentDB 查询
Query and manage AgentDB's 19 memory controllers.
查询并管理AgentDB的19个内存控制器。
When to use
使用场景
When you need to store, retrieve, or search knowledge across agent sessions. AgentDB provides hierarchical storage, causal knowledge graphs, semantic routing, and context synthesis.
当你需要在Agent会话之间存储、检索或搜索知识时。AgentDB提供分层存储、因果知识图谱、语义路由和上下文合成功能。
Steps
操作步骤
- Check health — call to verify AgentDB is running
mcp__claude-flow__agentdb_health - Start session — call if not already active
mcp__claude-flow__agentdb_session-start - Store knowledge — call for structured data
mcp__claude-flow__agentdb_hierarchical-store - Recall knowledge — call with a query
mcp__claude-flow__agentdb_hierarchical-recall - Search patterns — call for learned patterns
mcp__claude-flow__agentdb_pattern-search - Synthesize context — call to combine multiple memories
mcp__claude-flow__agentdb_context-synthesize - Build causal graph — call to link related knowledge
mcp__claude-flow__agentdb_causal-edge
- 检查健康状态 — 调用验证AgentDB是否正常运行
mcp__claude-flow__agentdb_health - 启动会话 — 若会话未激活,调用
mcp__claude-flow__agentdb_session-start - 存储知识 — 针对结构化数据,调用
mcp__claude-flow__agentdb_hierarchical-store - 召回知识 — 传入查询语句调用
mcp__claude-flow__agentdb_hierarchical-recall - 搜索模式 — 调用查找已学习的模式
mcp__claude-flow__agentdb_pattern-search - 合成上下文 — 调用整合多个记忆
mcp__claude-flow__agentdb_context-synthesize - 构建因果图 — 调用关联相关知识
mcp__claude-flow__agentdb_causal-edge
19 Controllers
19个控制器
Call to list all available controllers:
mcp__claude-flow__agentdb_controllers- Hierarchical store/recall
- Pattern store/search
- Semantic routing
- Context synthesis
- Causal edges
- Feedback loops
- Batch operations
- Consolidation
调用列出所有可用控制器:
mcp__claude-flow__agentdb_controllers- 分层存储/召回
- 模式存储/搜索
- 语义路由
- 上下文合成
- 因果边
- 反馈循环
- 批量操作
- 合并
CLI alternative
CLI替代方案
bash
npx @claude-flow/cli@latest memory search --query "your query" --namespace patterns
npx @claude-flow/cli@latest memory store --key "key" --value "value" --namespace patterns
npx @claude-flow/cli@latest memory list --namespace patternsbash
npx @claude-flow/cli@latest memory search --query "your query" --namespace patterns
npx @claude-flow/cli@latest memory store --key "key" --value "value" --namespace patterns
npx @claude-flow/cli@latest memory list --namespace patterns