Octopal remembers things in a few different ways, because not all memory is the same.
Some things are only useful for the current conversation. Some are useful later if they become relevant again. Some should become durable knowledge that survives across sessions. And some things change over time, so the system needs to distinguish between "this was true before" and "this is true now".
The goal of the memory system is simple:
- keep Octo grounded in the current conversation
- help Octo recall relevant past work
- preserve important long-term knowledge
- reduce prompt noise instead of endlessly stuffing more text into context
Octopal memory has five high-level parts:
- recent conversation memory
- searchable past memory
- durable canon files
- current facts derived from durable knowledge and observed history
- reset and continuity notes that help Octo resume work after context resets
These parts work together. Not everything is loaded all the time.
This is the short-term memory for active chats.
It keeps track of recent user messages, assistant replies, worker outcomes, and other nearby context that matters for the current flow. This is what helps Octo stay coherent inside an ongoing conversation without having to rediscover everything from scratch.
This layer is useful for:
- following the current thread
- avoiding repeating the same reply
- keeping track of what was just said or done
This memory is not meant to become permanent truth by itself.
Octopal also keeps a broader searchable memory of past messages and events.
When the current conversation is not enough, the system can pull in relevant past material. It does not just blindly replay old chat logs. It tries to retrieve the pieces that are most useful for the current question.
This layer is useful for:
- recalling old discussions
- finding earlier solutions
- remembering past attempts, problems, and trade-offs
To make this cleaner, memory entries are also tagged at a high level when possible, for example as:
- decisions
- preferences
- problems
- milestones
- emotional or human-context moments
That helps Octo search more intelligently instead of treating every memory as the same kind of thing.
The canon is the durable memory of the system.
These are the files under workspace/memory/canon/, especially:
facts.mddecisions.mdfailures.md
Think of canon as crystallized knowledge. It is not just "whatever happened in chat". It is the part that should keep mattering later.
In practice:
facts.mdholds durable truths worth rememberingdecisions.mdholds important choices and policiesfailures.mdholds lessons learned and mistakes not worth repeating
Canon is intentionally more stable and curated than normal chat memory.
Some knowledge changes over time.
For example:
- which tool is currently preferred
- which provider is active now
- whether something is working or broken
- what the current next step is
For this, Octopal now keeps a separate facts layer. This layer is meant to answer questions like:
- what seems true right now?
- what used to be true, but no longer is?
- what current fact is worth surfacing without dragging in a lot of old raw conversation?
This keeps Octo from having to infer the present state from a pile of old messages every time.
Long-running agent work sometimes needs context resets.
When that happens, Octopal stores structured handoff and continuity notes so Octo can wake up with a useful summary instead of just losing the thread.
This includes things like:
- current goal
- open threads
- constraints
- next step
- a short reflection on what mattered before the reset
This layer is not the same as canon. It is there to preserve momentum and continuity.
Octo does not load all memory all the time.
Very roughly, the system works like this:
- durable canon is always important
- recent history is used for current conversation flow
- searchable memory is pulled in when needed
- current facts are used when the question is about active state
- reset continuity notes are mainly used after a context reset
This keeps the system practical. The point is not to remember everything equally. The point is to remember the right things at the right time.
A lot of memory is created automatically:
- conversation entries
- assistant and worker outcomes
- semantic/searchable memory
- fact candidates inferred from memory
- continuity notes created during context reset
This means the system can improve recall without requiring constant manual upkeep.
Not every remembered thing should become durable knowledge.
The canon is still the place for carefully chosen long-term knowledge. That means:
- raw chat history is not automatically the same as truth
- temporary observations are not automatically permanent facts
- reflection notes are not automatically canon
This separation matters. It helps Octo remember more without turning memory into a junk drawer.
The memory system is designed to make Octo better in a practical way:
- less likely to forget important project decisions
- less likely to drag irrelevant old context into the prompt
- better at recalling current state versus historical state
- better at resuming work after long tasks or resets
- better at preserving useful lessons without bloating every conversation
In short:
Octopal tries to remember broadly, use memory selectively, and keep durable knowledge clean.