Claude File History: VS Code Extension for Tracking Claude Code Sessions

Claude File History Extension for VS Code
A new VS Code extension called Claude File History addresses a common pain point for developers using Claude Code: losing conversation context when closing sessions. The extension tracks every Claude Code session that has interacted with your files, creating a searchable history of past conversations.
Key Features
- Tracks every Claude Code session that touched your files
- Find any past conversation in your project history
- Preview what was discussed in each session
- Resume conversations with a double-click
The extension is available on GitHub at https://github.com/albinstman/claude-file-history. This type of tool is particularly useful for developers who frequently use AI coding assistants like Claude Code, as it helps maintain context across multiple coding sessions and prevents the loss of valuable conversation history when windows are closed.
VS Code extensions that integrate with AI coding assistants typically work by monitoring file changes and capturing the interaction history between the developer and the AI assistant. This allows developers to reference previous suggestions, understand the evolution of code solutions, and continue conversations that might have been interrupted.
📖 Read the full source: r/ClaudeAI
👀 See Also

Fine-tuned Qwen3-0.6B model outperforms 120B teacher on structured function calling
Distil Labs published an end-to-end pipeline that fine-tunes a Qwen3-0.6B model to achieve 79.5% exact match on IoT smart home function calling, outperforming a 120B teacher model by 29 points. The pipeline uses production traces to generate synthetic training data without manual annotation.

Beagle SCM: A Source Code Management System That Stores AST Trees
Beagle is an experimental source code management system that stores abstract syntax trees instead of binary blobs, using a CRDT-ish data format called BASON and backing storage with key-value databases like RocksDB.

Code-Graph-MCP: Open Source MCP Server Reduces Claude Code Token Usage by 40-60%
code-graph-mcp is an MCP server that indexes codebases into an AST knowledge graph, replacing multiple grep/read calls with single structured queries. The developer reports 40-60% total session token savings and 80% fewer tool calls per navigation task.

Forge: A Memory System for Claude Code Built with Claude Code
A developer built Forge, a TypeScript monorepo MCP server that automatically captures decisions, constraints, and rejections from Claude Code conversations. It uses a six-stage pipeline to classify, extract, and persist structured data in an event-sourced SQLite model.