Agentdb 会话验证
- 作者仓库星标 54,444
- 作者仓库 ruflo
AgentDB Query
Query and manage AgentDB through the controller bridge. AgentDB exposes 15 agentdb_* MCP tools; this skill enumerates the standard usage path.
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.
Steps
- Check health —
mcp__claude-flow__agentdb_health. Sanity-checkavailable: true. - Start session —
mcp__claude-flow__agentdb_session-startif not already active. - Store knowledge —
mcp__claude-flow__agentdb_hierarchical-storefor structured tier-keyed data (tiers:working|episodic|semantic). - Recall knowledge —
mcp__claude-flow__agentdb_hierarchical-recallwith a query. - Search patterns —
mcp__claude-flow__agentdb_pattern-searchfor learned patterns (ReasoningBank-routed). - Synthesize context —
mcp__claude-flow__agentdb_context-synthesizeto combine multiple memories. - Build causal graph —
mcp__claude-flow__agentdb_causal-edgeto link related knowledge.
Available controller groups
Call mcp__claude-flow__agentdb_controllers to list the runtime registry. Functional categories surfaced via the 15 MCP tools:
- Hierarchical —
agentdb_hierarchical-store,_recall(tier-routed) - Pattern —
agentdb_pattern-store,_search(ReasoningBank-routed) - Semantic —
agentdb_semantic-route,_context-synthesize - Causal —
agentdb_causal-edge(graph-node backend with bridge fallback) - Lifecycle —
agentdb_health,_controllers,_session-start,_session-end - Bulk —
agentdb_batch(≤500 entries),_consolidate - Quality —
agentdb_feedback
Important: namespace handling
Namespace 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".
Operational fallbacks (branch on these)
controller: 'memory-store-fallback'— pattern persisted viamemory_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 tomemory_*tools per the README replacement table.
CLI alternative
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- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @ruvnet · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js
- 检测到的文件与系统行为
-
- 只读
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 When you need to store, retrieve, or search knowledge across agent sessions. AgentDB provides hierarchical storage, causal knowledge graphs, semantic routing, and context synthesis.
Check health — mcpclaude-flowagentdbhealth. Sanity-check available: true. Start session — mcpclaude-flowagentdbsession-start if not already active. Store knowledge — mcpclaude-flowagentdbhierarchical-store for structured tier-keyed data (tiers:…
Call mcpclaude-flowagentdbcontrollers to list the runtime registry. Functional categories surfaced via the 15 MCP tools: Hierarchical — agentdbhierarchical-store, recall (tier-routed) Pattern — agentdbpattern-store, search (ReasoningBank-routed)
Namespace strings apply to memory and embeddingssearch only. The agentdbhierarchical-, agentdbpattern-, and agentdbcausal-edge tools route by tier or controller, not namespace. Don't pass namespace: 'foo' to those tools — it will be silently ignored. See…
controller: 'memory-store-fallback' — pattern persisted via memorystore --namespace pattern. NOT a failure. graphNodeBackend: true — causal-edge handled by @ruvector/graph-node. success: false, error: '...Use memorystore/memorysearch instead.' — bridge…
CLI alternative
# AgentDB Query
Query and manage AgentDB through the controller bridge. AgentDB exposes 15 `agentdb_*` MCP tools; this skill enumerates the standard usage path.
## 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.
## Steps
1. **Check health** — `mcp__claude-flow__agentdb_health`. Sanity-check `available: true`.
2. **Start session** — `mcp__claude-flow__agentdb_session-start` if not already active.
3. **Store knowledge** — `mcp__claude-flow__agentdb_hierarchical-store` for structured tier-keyed data (tiers: `working|episodic|semantic`).
4. **Recall knowledge** — `mcp__claude-flow__agentdb_hierarchical-recall` with a query.
5. **Search patterns** — `mcp__claude-flow__agentdb_pattern-search` for learned patterns (ReasoningBank-routed).
6. **Synthesize context** — `mcp__claude-flow__agentdb_context-synthesize` to combine multiple memories.
7. **Build causal graph** — `mcp__claude-flow__agentdb_causal-edge` to link related knowledge.
## Available controller groups
Call `mcp__claude-flow__agentdb_controllers` to list the runtime registry. Functional categories surfaced via the 15 MCP tools:
- **Hierarchical** — `agentdb_hierarchical-store`, `_recall` (tier-routed)
- **Pattern** — `agentdb_pattern-store`, `_search` (ReasoningBank-routed)
- **Semantic** — `agentdb_semantic-route`, `_context-synthesize`
- **Causal** — `agentdb_causal-edge` (graph-node backend with bridge fallback)
- **Lifecycle** — `agentdb_health`, `_controllers`, `_session-start`, `_session-end`
- **Bulk** — `agentdb_batch` (≤500 entries), `_consolidate`
- **Quality** — `agentdb_feedback`
## Important: namespace handling
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> When to use → Steps → Available controller groups → Important: namespace handling → Operational fallbacks (branch on these) → CLI alternative
要点 -> Check health · Start session · Store knowledge · Recall knowledge · Search patterns · Synthesize context · Build causal graph · Hierarchical
文件/命令 -> agentdb · mcpclaude-flowagentdbhealth · available: true · mcpclaude-flowagentdbsession-start · mcpclaude-flowagentdbhierarchical-store · working|episodic|semantic · mcpclaude-flowagentdbhierarchical-recall · mcpclaude-flowagentdbpattern-search
内容 SHA-256 -> 72f5f3035f1f
方法与流程
适用与边界
原文中的明确线索
agentdb、mcpclaude-flowagentdbhealth、available: true、mcpclaude-flowagentdbsession-start、mcpclaude-flowagentdbhierarchical-store、working|episodic|semantic、mcpclaude-flowagentdbhierarchical-recall、mcpclaude-flowagentdbpattern-search