AI.Agent.Memory.Indexer (fnord v0.9.29)

View Source

Agent that analyzes session-scoped memories and outputs a structured JSON response describing actions to take (add/replace/delete) and which session memories were processed.

The agent MUST return a single JSON object (no prose) with shape:

{ "actions": [ { action objects... } ], "processed": [ "Session Title 1", ... ] }

Action object example: { "action": "add", "target": { "scope": "project", "title": "X" }, "from": { "title": "Session Title" }, "content": "..." }