What problem does it solve? Decisions, gotchas, and why-notes made during a coding session are lost when the context resets, causing agents to repeat old mistakes. This Skill persists a single scoped fact to the project's memory so it survives across sessions and can be recalled later. ## Core Features & Use Cases - Dual storage modes: In markdown-only mode it writes a timestamped markdown note with YAML frontmatter under .red/memory/notes/; in graph mode it writes a deduped node to the RedDB store in .red/memory/graph.rdb. - Deduplication: Storing the same fact twice in graph mode returns the same node identity instead of creating duplicates. - Boundary enforcement: Routes personal facts to brain capture and refuses secrets, keeping memory notes safe to commit. - Use Case: After deciding to pin a dependency version because of a breaking upstream change, run /memory:store with the reasoning so future sessions recall the why behind the pin. ## Quick Start Ask the agent to remember a decision or gotcha, for example: remember that we pin lodash to 4.17.21 because version 5 breaks the build.