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.npx claudepluginhub ruvnet/agentdb --plugin agentdb-coreImplements ReasoningBank adaptive learning with AgentDB's vector database. Tracks trajectories, judges verdicts, distills memories, and recognizes patterns for self-learning agents.
Store a memory in AgentDB — an episode (task + outcome + critique), a pattern, or a skill. Use when the user says "remember this", "save this for later", "add to memory", or when the agent has just succeeded/failed at a task and the lesson is worth keeping.
Scaffolds an agent workspace with personality files and runs a bootstrap ritual to define identity, user, and memory. Invoke via /agent:create or 'create agent'.