Query AgentDB through the controller bridge -- semantic routing, hierarchical recall, causal graphs, context synthesis, pattern store/search
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-agentdb-query-e7cf8389d4f7 ,按照其中的说明把「agentdb-query」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Query and manage AgentDB through the controller bridge. AgentDB exposes 15 agentdb_* MCP tools; this skill enumerates the standard usage path.
When you need to store, retrieve, or search knowledge across agent sessions. AgentDB provides hierarchical storage, causal knowledge graphs, semantic routing, and context synthesis.
mcp__plugin_ruflo-core_ruflo__agentdb_health. Sanity-check available: true.mcp__plugin_ruflo-core_ruflo__agentdb_session-start if not already active.mcp__plugin_ruflo-core_ruflo__agentdb_hierarchical-store for structured tier-keyed data (tiers: working|episodic|semantic).mcp__plugin_ruflo-core_ruflo__agentdb_hierarchical-recall with a query.mcp__plugin_ruflo-core_ruflo__agentdb_pattern-search for learned patterns (ReasoningBank-routed).mcp__plugin_ruflo-core_ruflo__agentdb_context-synthesize to combine multiple memories.mcp__plugin_ruflo-core_ruflo__agentdb_causal-edge to link related knowledge.Call mcp__plugin_ruflo-core_ruflo__agentdb_controllers to list the runtime registry. Functional categories surfaced via the 15 MCP tools:
agentdb_hierarchical-store, _recall (tier-routed)agentdb_pattern-store, _search (ReasoningBank-routed)agentdb_semantic-route, _context-synthesizeagentdb_causal-edge (graph-node backend with bridge fallback)agentdb_health, _controllers, _session-start, _session-endagentdb_batch (≤500 entries), _consolidateagentdb_feedbackNamespace strings apply to memory_* and embeddings_search only. The agentdb_hierarchical-*, agentdb_pattern-*, and agentdb_causal-edge tools route by tier or controller, not namespace. Don't pass namespace: 'foo' to those tools — it will be silently ignored. See plugin README "Namespace convention".
controller: 'memory-store-fallback' — pattern persisted via memory_store --namespace pattern. NOT a failure._graphNodeBackend: true — causal-edge handled by @ruvector/graph-node.success: false, error: '...Use memory_store/memory_search instead.' — bridge unavailable; switch to memory_* tools per the README replacement table.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