2-Prompt System to Carry Context Between Claude Chats Without Token Waste

A Reddit user posted a practical system to solve the problem of hitting Claude's chat length limit mid-project. The solution uses two prompts: one for context extraction from the old chat, another for initialization in the new chat.
The Problem
Long Claude conversations slow down, hit length limits, or get expensive on API. Common workarounds—manual summarization, copy-pasting entire chats, or starting fresh—lose critical decisions, waste tokens, or require re-explaining.
The System
Prompt 1: Context Extraction (paste in old chat)
Instructs Claude to compress the entire conversation into a structured 9-section summary: Objective, Key Context, Decisions Made, Work Completed, Current State, Next Steps, Open Questions/Blockers, Critical Data/Assets, and Style & Preferences. The output must be placed inside one clean code block. Target length: 300–600 words, preserving specifics over generalities.
Prompt 2: Chat Initialization (paste in new chat)
You paste the extracted context block and instruct the new chat to treat it as source of truth. It asks Claude to verify understanding, flag any gaps, and resume from Next Steps rather than restarting.
The exact prompts are provided in the source. For example, the extraction prompt's output structure uses these headers:
- Objective
- Key Context
- Decisions Made (with reasons)
- Work Completed
- Current State
- Next Steps (mark immediate next with →)
- Open Questions / Blockers
- Critical Data / Assets
- Style & Preferences
The initialization prompt includes: "Treat the context as established. Do not re-frame or restart. Maintain all decisions and preferences listed." and asks for a confirmation reply with the objective, immediate next action, and any gaps.
Who It's For
Developers using Claude (API or web) who need to continue long-running projects without losing context or burning tokens on redundant explanations.
📖 Read the full source: r/ClaudeAI
👀 See Also

RUNE Protocol: Save AI Session Memory Across Platforms
RUNE (Relational User Notation for Entities) is an open-source protocol that saves your AI relationship to an encrypted .rune file, solving the cold-start problem where AI assistants forget you between sessions. Created with Claude Opus 4.6, it works across Claude and GPT platforms.

Root Cause of Claude Code VS Code Extension Session Title Corruption Identified
A developer has identified the architectural root cause for session title corruption in Claude Code's VS Code extension, affecting 20+ GitHub issues. The problem stems from the extension reading titles via a raw string search in session files, leading to three failure modes.

Fable 5 in Claude Code: Day One Cost Analysis — $210 API-equivalent, $0 Paid
A developer switched to claude-fable-5 in Claude Code and measured token usage across 742 replies. API-equivalent cost: $210.15. Actual paid: $0 during the plan window until June 22.

GrapeRoot Pro Adds Undo Shield to Prevent Claude Code from Deleting Your Project
After Reddit reports of Claude Code deleting entire projects, GrapeRoot Pro introduces an Undo Shield that watches Claude's session graph and blocks destructive commands like rm -rf on heavily edited files.