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

Miasma: A tool to trap AI web scrapers with poisoned data
Miasma is a server tool that sends poisoned training data and self-referential links to AI web scrapers, creating an endless loop. It runs with minimal memory footprint and can be configured via CLI options including port, host, and link prefix.

Pleng: Self-Hosted Cloud Platform with AI-Driven Infrastructure Management
Pleng is an AGPL-3.0 licensed, self-hosted cloud platform that uses an AI agent (currently Claude) to manage infrastructure via Telegram bot commands. It deploys from GitHub repos or local directories with automated Traefik routing, Let's Encrypt SSL, and basic analytics.

Orc: Multi-Agent Coding Orchestration Tool Adds Planning and Notification Features
Orc is an open-source tool that orchestrates AI coding agents across projects with a local TUI interface. The latest release adds planning as a first-class phase, notification systems for human intervention, and natural language lifecycle hooks.

skillcheck: A linter for SKILL.md files that catches cross-agent compatibility issues
skillcheck is a Python tool that validates SKILL.md files against the agentskills.io specification, with unique features including description quality scoring, warnings about Claude-only fields, and file reference validation that aren't available in existing validators.