惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Meet Chatrove: a 100% local, open-source vault for your A...
vuhuutam459-max · 2026-06-23 · via DEV Community

vuhuutam459-max

If you followed my earlier posts about Gemini Vault — this is the same project, grown up and renamed. Here's the full story and what it does today.

We don't actually own our AI memories

Every day we pour our best ideas, code and drafts into Gemini, ChatGPT and Claude. But we don't truly own any of it. Accounts get suspended (I lost access to an AI account myself — that's what kicked all of this off). Services go down. APIs change. And the official "Export your data" buttons? They hand you an unreadable JSON dump you can't search or even read.

I got tired of renting my own digital memory from the cloud. I wanted my chats stored safely on my disk, available completely offline, with instant search. So I built a tool to take them back.

Why the rename: Gemini Vault → Chatrove

I originally called it Gemini Vault, but the project outgrew the name. It no longer backs up only Gemini — it merges Gemini, ChatGPT and Claude into one archive — and tying a product to a single provider's trademark was a bad idea long-term. So it's now Chatrove: a chat + trove, a treasure chest for your conversations. Vendor-neutral, and it's still the same MIT-licensed project. (The old repo link redirects to the new one.)

What Chatrove is

A fully local backup tool and offline viewer for your AI conversations. You import the official export once, and you get a fast, private, searchable archive that lives entirely on your machine.

Repo: https://github.com/vuhuutam459-max/chatrove

How it works under the hood

I wanted this to be as lightweight and independent as possible:

Zero-dependency core. The processor runs on the pure Python 3.10+ standard library. No heavy frameworks to install.
Millisecond search. I used SQLite with FTS5 (full-text search), so you can search across thousands of chats instantly, including non-Latin scripts.
Source-agnostic core. An adapter layer normalizes the official JSON exports from Gemini, ChatGPT and Claude into one unified database — adding a new source doesn't touch the core logic.
Offline viewer. A single-page dashboard that works completely offline. It renders LaTeX (KaTeX) for math, syntax highlighting for code, Canvas, and handles broken/missing images gracefully.
Safe re-imports. SHA256 dedup means re-importing a newer export only adds what changed — no duplicates.
Bilingual UI (English / Russian).

The "Smart Librarian" — optional local AI

This is the part I'm most excited about, and it's completely optional. If you have Ollama running locally (e.g. gemma3:4b), Chatrove can:

automatically scan your old chats, generate summaries, and assign topical tags;
power "Ask the archive" — ask a question in plain language, and it does retrieval over your local database and returns an answer with clickable citations straight to the exact chat it came from.

The crucial part: every byte stays on your machine. The LLM endpoint is just an OpenAI-compatible base_url, so you can point it at whatever local model you like. And if you don't run Ollama at all, the archive, search and viewer work exactly the same.

Privacy is the whole point

No server. No accounts. No API keys. No telemetry. Your database, logs and personal exports are git-ignored by design and never leave your device. Chatrove is built for your own trusted data, by you, on your hardware.

How to run it

There's no build step. On Windows, you double-click a launcher and the viewer opens in your browser. On macOS/Linux, you run it with Python. Pick what you need: just the offline viewer, or add the local-AI tools.

It's open-source — and I'd love your feedback

Chatrove is MIT-licensed. If you value your data and want to keep your AI brainstorming safe, give it a try, and I warmly welcome any stars, forks, issues or PRs.

⭐ Repo: https://github.com/vuhuutam459-max/chatrove

One genuine question I keep asking people: how do you currently keep the "good" prompts and important snippets your AI generates? Do you just leave them in the browser history, or copy them into Notion / Obsidian? I'd love to hear your workflow in the comments.

Let's own our data. 🚀

— Max