Four different things called “memory”
Current conversation
Context available within the active chat. It may disappear when the conversation ends or becomes too long.
General AI memory
Longer-term facts or preferences remembered across conversations. It is useful but may not reliably separate several game runs.
Game save file
The game’s authoritative mechanical state: position, inventory, quests, statistics, and world variables.
Continuity restore point
A player-controlled record of the useful conversational thread: what matters, why it matters, and what should happen next.
What a useful continuity record contains
Identity
- game title;
- run or campaign name;
- character or profile;
- platform when relevant.
State
- current goal;
- important decisions;
- unresolved tasks;
- build or strategy;
- intended next step;
- timestamp and source.
Why run separation matters
A player may have two characters in the same RPG, a solo campaign and a co-op campaign, or several seasonal saves. General memory can recall facts without preserving which fact belongs to which run.
A continuity system should therefore use explicit namespaces or save slots. The player should be able to say which run to save, load, rename, export, or delete.
Player controls for remembered progress
- permission before storing state;
- a visible summary of what was saved;
- the ability to correct or overwrite a record;
- clear separation between runs;
- export and deletion;
- no assumption that a game’s real save file was modified.
What an AI companion cannot safely assume
A conversational restore point is not the same as the game’s authoritative save file. Unless an implementation has explicit game integration, it should not claim exact inventory counts, quest flags, or world state beyond the information the player supplied or approved.
Continuity is strongest when uncertainty is visible and the player remains the final authority.
Frequently asked questions
Can an AI game companion remember without a database?
It may retain context temporarily in one conversation, but reliable cross-session restoration requires some form of persistent authorized storage.
Is general AI memory enough for multiple game runs?
Sometimes, but explicit save slots or namespaces are more reliable when runs can be confused.
Does saving to Companion Play save inside the game?
No. It saves continuity data for later conversation unless a separate game integration explicitly says otherwise.