
Memoriq
Your private AI memory for ChatGPT, Claude, Gemini and Grok
207 followers
Your private AI memory for ChatGPT, Claude, Gemini and Grok
207 followers
Memoriq is your private AI memory for ChatGPT, Claude, Gemini and Grok. Save the conversations that matter in an end-to-end encrypted vault that only you can access. Open source, self-hostable, and built for people who don't want to lose valuable AI chats or trust another plaintext cloud service. Search, organize, and keep your AI knowledge under your control.










Multiavatar in Solidity
the multi-platform support across ChatGPT, Claude, Gemini, and Grok is the right coverage but the capture mechanism for each is probably different. some of these have APIs, some require browser extension scraping, and the reliability and permissions vary a lot between them. curious how the actual capture works across platforms and whether there are any that work more reliably than others or require different setup steps
Multiavatar in Solidity
@ansari_adin Good question!
The capture path is provider-specific. ChatGPT is currently the most reliable because the extension uses OpenAI's same-origin conversation API while you're logged in, so it can retrieve the conversation directly from the provider.
Claude, Gemini, and Grok currently rely on DOM extraction, since the goal is to work with the normal web interfaces rather than require separate API keys. Those providers change their UIs fairly often, so capture is best-effort. Gemini, for example, may require manual scrolling to the top for very long chats.
Since browser extensions are generally not available on mobile, the long-term vision is to support native sharing on mobile, whether through the Memoriq PWA or a dedicated app, so useful AI conversations can be saved as naturally as they are on desktop.
@giekaton that's a clear breakdown. the ChatGPT reliability advantage makes sense given same-origin access. the DOM extraction for the others being best-effort is a fair tradeoff given the goal of not requiring API keys. good luck with the mobile path
The capture asymmetry between platforms is the interesting engineering constraint here. ChatGPT via API is reliable, but Claude, Gemini, and Grok depend on DOM extraction. Meaning a UI change on any of those platforms can silently break capture or produce malformed saves.
How do you handle version drift detection? Is it a user-visible failure (capture stops until an extension update ships) or does Memoriq degrade gracefully and capture partial content? Claude in particular has changed its conversation UI structure multiple times this year. What does the extension update cadence look like when a platform breaks?
Multiavatar in Solidity
@binu_george That's one of the main engineering challenges. Right now, if a provider changes its UI, capture quality can degrade until the extension is updated, although partial captures may still work depending on the change. Keeping up with provider changes is an ongoing part of the project.
End-to-end encrypted + self-hostable is the combo that makes this trustworthy for anything work-related. The moment your AI history sits in someone else's plaintext cloud, you can't put real client or business context in it. Open source seals the deal because "private" only means something when you can verify it. The capture across four assistants is the hard part though - they don't all expose the same hooks. Curious how you handle that without it breaking every time one of them changes their UI.
Multiavatar in Solidity
@david_marko Thanks! The capture path is provider-specific. ChatGPT is the most reliable because it can use the provider's conversation API, while Claude, Gemini, and Grok currently rely on DOM extraction. UI changes do happen, so the extension is designed to evolve alongside the providers and improve over time.
The user-curated memory choice makes sense for launch and support workflows where only a few AI conversations are worth keeping as project history. The first thing I would test is whether a teammate can save a Claude/ChatGPT thread, search it later, and prove it stayed private without turning it into another shared knowledge base. Does Memoriq support any team handoff model yet, or is the intended boundary strictly one private vault per person?
Multiavatar in Solidity
@hazy0 Right now, the focus is one private vault per person. End-to-end encrypted sharing is something I'd love to add in the future, and I think it could work well for teams.
@giekaton That boundary makes sense for beta; shared vaults would add a lot of permission surface fast. For team use, even a simple export/import handoff with the privacy state visible could cover the first support playbook workflow before full shared vaults.
Multiavatar in Solidity
@hazy0 That's a good point. There's probably a nice middle ground between personal vaults and full team collaboration.
Exactly. A handoff pack feels like that middle ground: export the selected threads, keep the encryption/privacy state obvious, and let the receiving teammate import it into their own vault. That would cover support playbooks without turning Memoriq into a shared workspace too early.
Ok but what can I do with stored conversations? Can I search across all my saved chats? Can I use them in other LLMs?
Multiavatar in Solidity
@zopteraa Yes, you can already search across conversations saved from different AI providers in one place.
Right now, exports are encrypted vault backups rather than a format for other LLMs. Memoriq is still in beta, and I'm focused on getting the core experience right first.
Longer term, I think there's a lot of potential for richer semantic search, privacy-preserving AI agents that can work with your own conversation library, end-to-end encrypted sharing, and new ways to connect knowledge across different AI providers.
I bounce between Claude and ChatGPT depending on the task and re-explaining my project context every time gets old fast. A shared memory layer makes sense in theory, but I'd want to know how it decides what's worth remembering vs noise. Is that automatic or do you curate it yourself?
Multiavatar in Solidity
@josedamian Right now, it's user-curated rather than automatic. The idea is that you save the conversations you know you'll want later instead of having another AI guess what's important and what's noise.
Automatic memory is an interesting idea, but I think the right starting point is giving people a private place to save the conversations they care about.
@giekaton That tracks — I'd rather decide myself than have another AI quietly filtering what it thinks matters. Curious if curation gets easier over time or if it stays manual no matter how much you use it.