What problem does it solve? Setting up persistent agent memory for a project requires choosing a storage mode, writing a valid config block, and deciding which hooks should fire — doing this by hand risks invalid config and misconfigured hooks. This Skill runs a guided one-time wizard that writes the per-project memory config correctly. ## Core Features & Use Cases - Storage mode selection: Choose between markdown-only (plain notes under .red/memory/notes/, no engine) and graph mode (governed operational memory over a per-project RedDB store at .red/memory/graph.rdb). - Automatic runtime bootstrap: The bundled bootstrap.mjs script downloads the memory CLI and native red engine on first use with checksum verification — no build step required. - Optional auto-firing hooks: In graph mode, optionally enable SessionStart recall, PostToolUse re-index, Stop extract, and PreCompact flush hooks, which stay dormant until the config flag is on. - Use Case: After installing the memory plugin, run the wizard to pick graph mode with hooks, then immediately use /memory:store and /memory:recall against the configured store. ## Quick Start Ask the assistant to initialize memory for this repository and walk you through choosing a storage mode.