Free Wizard Migrates ChatGPT History to Claude Projects — Key Lessons on Token Limits and RAG

A developer built a free migration wizard that moves ChatGPT conversation history into Claude Projects, addressing the common pain point of years of context locked in ChatGPT. The tool is available at quitgpt-memory-kit.vercel.app and requires no code — it was built using Claude itself.
Key Technical Lessons
- Token limits are per-file, not per-size: A clean 26MB JSON file can still trigger "knowledge exceeds maximum" errors. The fix isn't compression or summarization — it's splitting the data by topic into 4-5 separate files, each fitting within the limit.
- Claude uses RAG for large Project files: It doesn't read the entire file at once. Therefore, queries must be specific: "What did we discuss about the Q2 launch strategy" works much better than "what did we talk about last month."
What the Wizard Does
The step-by-step wizard handles the export from ChatGPT and imports it into Claude Projects, automatically classifying and organizing conversations. The author is open to questions about the classification logic or handling large exports.
Who It's For
Developers using AI coding agents who have accumulated history in ChatGPT and want to leverage Claude's project memory without losing context.
📖 Read the full source: r/ClaudeAI
👀 See Also
Claudy: A native macOS wrapper for Claude Code with multi-session, auto account switching, and draft commits
Claudy is a native macOS app built with SwiftUI + SwiftData that wraps Claude Code, adding multi-session management, automatic account switching on rate limits, draft commits for mid-session checkpoints, and a marketplace for Skills, MCPs, and Commands.

Kios: An iOS Reader for Self-Hosted Kobo/Calibre Libraries with Progress Sync
Kios is an iOS app that reads books from self-hosted Kobo/Calibre servers and syncs reading progress via the Kobo protocol, OPDS 1.2/2.0, and kosync. Built with Claude Code.

Claude for Creative Work: MCP Connectors for Blender, Adobe, Ableton, and More
Anthropic released a set of MCP connectors allowing Claude to interface with creative tools including Blender, Autodesk Fusion, Adobe Creative Cloud, Ableton Live, and Splice, enabling natural-language control, scripting, and pipeline automation.

Open source PR review agent PrixAI detects all 10/10 planted bugs at 6x lower cost than CodeRabbit
A Reddit user built PrixAI, an open source PR review agent that uses local/cheap inference models to match CodeRabbit's features at 6x less cost, detecting all 10 intentionally planted issues in a test PR.