remember
Persist facts across sessions by writing them to a file with a stable ID. Reuse an ID to update a fact in place, or create a new entry for a new ID, so you can recall it later.
Instructions
Persist a fact past the session boundary — written to a .fafm file, not held in memory. Reusing an existing id replaces that fact's text in place (no duplicate); a new id appends. Facts are written verification_status: unverified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | A stable key you choose for this fact — pass the same id later to recall or forget it. Exact match, case-sensitive, any string; keep it short and meaningful (e.g. "deploy-target", "db-url"). Reusing an id updates that fact rather than adding a second one. | |
| text | Yes | The fact itself, as plain prose. Stored verbatim and returned as-is by recall. |