From agentdb-core
Initialize an AgentDB Cognitive Container (.rvf file) in the current project. Sets up storage, embedder config, and the agentdb MCP server. Use when the user is starting a new project that needs vector memory, or asks to "set up agentdb" / "init agentdb".
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentdb-core:agentdb-initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Sets up a fresh AgentDB instance for the current project. Creates a single-file `.rvf` Cognitive Container that holds vectors, indexes, learning state, and the audit log.
Sets up a fresh AgentDB instance for the current project. Creates a single-file .rvf Cognitive Container that holds vectors, indexes, learning state, and the audit log.
./memory.rvf at the project root, or ~/.agentdb/<project-name>.rvf for global memory).Xenova/all-MiniLM-L6-v2 at 384d — fast, free, runs in-process).claude mcp add agentdb -- npx agentdb@latest mcp start
agentdb_pattern_store (the first store auto-creates the schema), or via CLI:
npx agentdb@latest init ./memory.rvf
*.rvf to .gitignore unless the user explicitly wants memory checked into source control..rvf is a single binary file. Back it up like a SQLite database..rvf per coordinated namespace; use separate files for trust-boundary isolation.agentdb_pattern_*, agentdb_reflexion_*, etc.) or the npm library (import { SelfLearningRvfBackend } from 'agentdb')..rvf file by default — it can hold session-specific data, including content from messages.init on an existing .rvf file without confirming — it will refuse rather than overwrite, but a confused user might delete the existing file thinking it's stale.2plugins reuse this skill
First indexed Jul 14, 2026
npx claudepluginhub dshep/agentdb --plugin agentdb-coreInitialize an AgentDB Cognitive Container (.rvf file) in the current project. Sets up storage, embedder config, and the agentdb MCP server. Use when the user is starting a new project that needs vector memory, or asks to "set up agentdb" / "init agentdb".
Implements ReasoningBank adaptive learning with AgentDB's vector database. Tracks trajectories, judges verdicts, distills memories, and recognizes patterns for self-learning agents.
Guides reception of code review feedback: verify before implementing, avoid performative agreement, push back with technical reasoning when needed.