memory_session_note
Capture and append notes per session. First call creates a session memory; subsequent calls for the same session append text, keeping sessions isolated.
Instructions
Frictionless per-session capture ("daily note for agents"). Keyed by source "session:": the first call creates one session memory (document_type "session"); every later call for the same session_id appends to that same memory (newline-joined, re-embedded and versioned). Different session_ids stay isolated. Returns { memory_id, created, appended }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | Session identifier. The note is keyed by source "session:<session_id>" — the first call creates the memory, later calls append to that same one. | |
| text | Yes | Text to capture (created as content, or appended newline-joined to the session note). | |
| scope | No | Memory scope for isolation | |
| namespace | No | Namespace within scope (e.g., project name, team name) | |
| title | No | Optional title used only on create (defaults to "Session <session_id>"). |