SoulPrint: Local Tool for Searching Claude and ChatGPT History Together

SoulPrint is a local-first application that imports conversation exports from Claude (.json) and ChatGPT (.zip) into a single canonical archive on your machine, allowing you to search across both AI assistant histories together. The tool is built with Python/Flask/SQLite, runs entirely locally, and is licensed under Apache-2.0.
Key Features
- Import: Drop your export file and the provider is auto-detected. The tool handles duplicates and your data never leaves localhost.
- Search: Full-text search across all providers simultaneously with BM25 ranking, highlighted snippets, and results that link directly to exact messages.
- Ask: Provides grounded answers that cite specific messages from your history. If it can't find evidence, it says so to avoid hallucination.
- Clip: Select text in any conversation and save it as a note with automatic citation linking back to the source.
- Distill: Select conversations across providers and compress them into a handoff briefing that ends with "Please continue from this context." You can paste this into a new Claude or ChatGPT chat to continue where you left off.
- Export: Creates a Memory Passport with manifest, provenance index, and validation. Your archive is a SQLite file that you can open with any viewer.
Technical Details
The tool includes 595 tests and is the developer's first repository. Gemini support is planned for the future. The developer is also planning cross-model comparison features to show where Claude and ChatGPT gave different answers on the same topic.
The cross-provider approach differentiates SoulPrint from other tools, allowing users to see their Claude and ChatGPT history side by side with clear provenance. As the developer notes: "Their job is to keep you inside their platform. SoulPrint's job is the opposite."
📖 Read the full source: r/ClaudeAI
👀 See Also
ClaudeAI Brainstorming Mode Gets Visual Companion for Mockups and UI Approval
A user discovers a new 'Visual companion' feature in ClaudeAI brainstorming mode that serves mockups on a local web server, enabling back-and-forth UI tweaks before building.

Altimate Code: Open-Source Agentic Data Engineering Harness
Altimate Code is an open-source harness that provides deterministic data engineering tools for AI agents, addressing issues like hallucinated SQL and missing schema context. It includes column-level lineage, SQL anti-pattern detection, and dbt integration, with benchmarks showing 74.4% performance on ADE-bench.

Exploring the Claude Code Guidelines: A Minimalist Approach in 65 Lines
The Claude Code extension encapsulates essential AI coding principles in just 65 lines of Markdown, emphasizing 'Think Before Coding'. Despite its simplicity, it has gained notable traction among developers.

Cortex: A Local Memory Layer for OpenClaw Agents with Ebbinghaus Decay
Cortex is an open-source memory tool built to solve context compaction issues in OpenClaw agents. It implements Ebbinghaus forgetting curves for fact decay, imports from files first, and runs as a single 19MB Go binary with SQLite.