Readable memory
Plain-text facts, rules, and constraints.
project_owner(atlas, rahul).
status(atlas, blocked).Store facts and rules as readable knowledge. Ask useful questions. Get deterministic answers with the proof attached.
Local-first by default. Logic owns the answer.Who is collaborating on Atlas?
collaborator(Person, atlas)Maya is collaborating on Atlas.
project_owner(atlas, rahul)project_contributor(atlas, maya)Similarity finds nearby text. Remembero proves what follows.
Plain-text facts, rules, and constraints.
project_owner(atlas, rahul).
status(atlas, blocked).Same knowledge. Same query. Same answer.
needs_follow_up(Person, Project) :-
promised_update(rahul, Person, Project),
status(Project, blocked).Every derived answer carries its supporting claims.
collaborator(maya, atlas)
├─ project_owner(atlas, rahul)
└─ project_contributor(atlas, maya)Insert a SQLite row, run Datalog, then inspect the exact facts and rule behind the answer—all inside your browser.

Three browser workbenches expose the full chain: optional Hermes 7B WebLLM inference with native tool calls, deterministic memory and policy, then SQLite + Wasm execution with the call, result, proof, and timing evidence on screen.
Watch Hermes 7B issue native WebLLM tool calls against one shared SQLite database: raw SQL rows in one lane, Remembero bindings and proof in the other.
Open lab →Grounded agent labLet the model propose.Run the same Hermes 7B model with and without memory, then watch the request facts, packet swap, gate query, rule, and proof chain stay visible while the action resolves.
Open lab →SQLite + Datalog playgroundMutate SQLite.Insert real rows, execute the Remembero extension inside SQLite WebAssembly, and inspect the browser-local tables, compiled rule, proof graph, and current-browser timings.
Open playground →Capture a fact with the statement it came from.
project_owner(atlas, rahul).Derive useful knowledge without storing invented conclusions.
collaborator(Person, Project) :- …Inspect the exact claims and rules behind every answer.
answer → rule → sourced factsNatural language can translate a question into a query. Remembero evaluates the accepted query against explicit knowledge and returns the evidence locally.
npx -y rememberoTry a real-life lab first, then open the IDE when you want to inspect the machinery.