delimit_memory_store
Store key context, decisions, and failures for recall across sessions. Capture information that git does not track.
Instructions
Store a memory entry for future cross-session retrieval (Free tier).
When to use: per the orchestrator's memory rules — to capture failed approaches, architecture decisions, key context, or setup gotchas that git would not surface. When NOT to use: for routine code changes (git is the source of truth) or for venture-scoped artifacts (use delimit_context_write).
Sibling contrast: delimit_memory_search retrieves; delimit_memory_recent reads the tail; this writes.
Side effects: writes a memory entry via backends.memory_bridge.store. Free tier — no license gate. hot_load=True marks the entry for projection into the Claude Code auto-memory MEMORY.md hot-load index (PR-B writer projects on next sync).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The content to remember. Required. | |
| tags | No | Optional categorization tags as comma string or list. | |
| context | No | Optional context about when/why this was stored. | |
| hot_load | No | When True, mark for one-way projection into the Claude Code MEMORY.md hot-load index (LED-1165 Phase 2). Default False = durable but not projected. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||