Auditable, append-only agent memory
Every fact is recorded with who wrote it and when. Nothing is ever silently overwritten.
An append-only journal is the source of truth
HiveMind's source of truth is an append-only journal; the searchable database is just a derived index rebuilt from it. Because nothing is overwritten in place, the full history is always there.
You can trace any belief back to the agent and moment that produced it, and see what corroborated it since. For a tool that holds your memory, that auditability is the point.
Forgetting on purpose
Append-only does not mean you are stuck with junk. Facts can be retracted (lowering their standing), and a deliberate, coordinated compaction can erase bytes when you truly need to. Forgetting is a decision, not an accident.
Frequently asked
Is anything ever overwritten?
No. The journal is append-only and is the source of truth. The database is a derived index, so the full history is always recoverable.
Can I delete something?
Yes, on purpose. A fact can be retracted, and a deliberate compaction can erase bytes when required. Deletion is an intentional operation, not a silent overwrite.