Your OpenClaw agent wakes up fresh every session. Autoglia gives it a real SQLite brain — structured memory that records automatically, survives context loss, and knows who you are.
One-time purchase. No subscription. No cloud. Introductory price — raises to $29.
OpenClaw agents are powerful. But without persistent memory, every conversation starts from zero. That's expensive — in time, frustration, and trust.
You tell it your client's name, email, and project. Next session: "I don't have any information about that person."
Three weeks in, your agent has no idea what you're building. You re-explain the whole thing. Again. For the fourth time.
Context window fills up. Compaction hits. The agent greets you like a stranger mid-project. Everything you built up — gone.
You chose a strategy. Two months later: "I don't have context on why we decided that." The reasoning is lost forever.
The same conversation, with and without Autoglia.
You: "What do you remember about Alex Rivera?"
Agent: "I don't have any information about that person. Could you remind me who they are?"
↑ You mentioned them 11 times across 6 sessions.
You: "What do you remember about Alex Rivera?"
Agent: "Alex Rivera — product lead at Acme Corp, interested in API integrations. Last contacted Feb 26. On your outreach list for Q1."
↑ Pulled from the contacts table. Instant.
Agent: "Hello! How can I help you today?"
↑ You were in the middle of a product launch. Context window compacted. The thread is gone.
Agent runs recover.py automatically:
Agent: "I see we were working on the Q1 product launch — 3 posts scheduled today and a pricing review pending. Want me to continue?"
↑ Reconstructed from database in 2 seconds.
Autoglia doesn't ask your agent to cooperate. The infrastructure records everything whether the agent helps or not.
Contacts, projects, knowledge, decisions, conversations, preferences, reminders — all in a single ~/memory.db file. No server. No cloud. Queryable with any SQLite tool. Your data never leaves your machine.
sync-sessions.pyPulls every message from OpenClaw's own JSONL session files directly into the database. Runs on session start. Works even when the agent didn't save anything during the conversation. No LLM cooperation required.
auto-checkpoint.pyAn hourly cron job finds any conversations with unsummarized messages and generates structured summaries — topic, decisions made, follow-ups — with no LLM involvement. The system never misses a session.
recover.pyDetects when the context window has been compacted. Reads the database — recent checkpoints, open tasks, contacts mentioned — and reconstructs the thread automatically. The conversation continues as if nothing happened.
One zip. Sixteen files. A complete memory infrastructure that's live in 5 minutes.
Contacts, projects, tasks, knowledge, ideas, content, outreach, meetings, reminders, preferences, businesses, and more.
Hourly cron job summarizes every unsummarized conversation automatically. No agent needed. Never miss a session.
Detects compaction, reads the database, and hands your agent a full context restore block. Picks up mid-conversation.
Local Flask app at localhost:5000. Browse contacts, knowledge, projects, and conversations live. Live updates every 3 seconds.
memdb.py is the only write interface — fully parameterized queries. No raw SQL from user input. Ever.
Pre-flight check, schema migration, AGENTS.md injection, workspace indexing, cron registration. Full rollback manifest.
Versioned schema upgrades. Install a new version — your existing data is never touched. Safe to update anytime.
Scan your workspace markdown files into the database on first run. Everything you've already written becomes queryable.
Full JSON or CSV export in one command. Your data is yours — take it anywhere, back it up however you want.
The cloud tools charge per month. The marketplace skill uses markdown files. Autoglia is the infrastructure layer.
| Autoglia | OpenClaw Memory Skill ($9) | LLMory Pro ($29/mo) | ChatGPT Memory | |
|---|---|---|---|---|
| Storage | Local SQLite DB | Markdown files | Cloud server | OpenAI servers |
| Auto recording | ✓ Infrastructure-level | ~ LLM must cooperate | ~ Partial | ~ LLM decides |
| Context recovery | ✓ Automatic | ✗ | ✗ | ✗ |
| Structured tables | ✓ 18 tables | ✗ Flat files | ~ Limited | ✗ |
| Web dashboard | ✓ | ✗ | ✓ | ✗ |
| Data stays local | ✓ Always | ✓ | ✗ Cloud | ✗ Cloud |
| Price | $19 one-time | $9 one-time | $29/month ($348/yr) | Subscription |
Watch a live demo — context recovery, the dashboard, and install in under 5 minutes.
Demo video coming soon
setup.pyOne-command install, uninstall, pre-flight check, rollback manifestmemdb.pySafe parameterized query interface — the only way to write to the DBrecover.pyCompaction detection and full context restore from the databasesync-sessions.pyInfrastructure-level transcript sync from OpenClaw JSONL filesauto-checkpoint.pyHourly automated conversation checkpointing — no LLM requiredcheckpoint.pyManual atomic checkpoint for critical decisionsdashboard.pyLocal Flask web dashboard — browse your memory at localhost:5000migrate.pyVersioned schema migrations — upgrades never break your dataimport.pyOne-time scan of existing workspace markdown files into the DBexport.pyFull JSON/CSV backup and migration exportstats.pyMemory health report — row counts, activity, unsummarized warningsinit.sqlFull 18-table schema definitionSKILL.mdComplete instructions your agent reads on every session startREADME.mdSetup guide with examples and troubleshootingEXAMPLES.mdEvery memdb.py command with real conversation examplesdocs/FAQ.mdCommon questions, edge cases, and upgrade notesLLMory Pro charges $29 a month. Autoglia charges $19. Once. You get all future updates included.
Secure checkout via Stripe. Delivered instantly to your inbox.
Python standard library only for core functionality — no pip installs required except for the optional web dashboard.
Yes. Autoglia works with any recent version of OpenClaw that has the exec tool enabled. It doesn't require a specific tier or hosting setup.
Yes. The migration system (migrate.py) applies versioned schema changes without touching existing data. You can upgrade from any prior version safely. The installer also makes a full backup before making any changes.
That's exactly what Autoglia is designed for. sync-sessions.py pulls transcripts directly from OpenClaw's own JSONL files — it doesn't rely on the agent doing anything. And auto-checkpoint.py summarizes them on schedule. Nothing is lost even when the agent is uncooperative.
Yes — full refund within 7 days, no questions asked. Email support is included and we'll help you get it working if you hit any issues.
Never. The database is a single SQLite file at ~/memory.db. No cloud, no API calls for storage, no third-party servers. Autoglia is entirely local.
Yes. Use memdb.py create-table to add extension tables. Every custom table is logged in _schema_log with the reason and session that created it — so there's a full audit trail and upgrades never accidentally drop your custom tables.