jambavan_memory_store
Store memories as Open Knowledge Format (OKF) concept documents — human-readable, git-diffable, and portable. Each memory includes title, body, optional tags, and scope. Duplicate titles within the same scope are overwritten.
Instructions
Persist a memory as an Open Knowledge Format (OKF) concept document. Memories are markdown files with YAML frontmatter — human-readable, git-diffable, portable. Each memory has a title, body (markdown), optional tags, and a scope (e.g. project name). Memories with the same title in the same scope are overwritten (idempotent). Returns the OKF concept ID (scope/slug) of the stored document.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Full markdown content to store verbatim. | |
| tags | No | Optional tags for filtering. | |
| type | No | OKF concept type. Defaults to "Memory". | |
| scope | No | Scope / project name. Defaults to "general". | |
| title | Yes | Short label for this memory. | |
| source | No | Optional: source file or session identifier. | |
| supersedes | No | Optional OKF concept ID this memory replaces. | |
| description | No | One-line summary (used in index.md). Defaults to title. |