Claude Sessions: Lightweight Desktop App for Browsing Claude Code History

Claude Sessions: A Minimalist Tool for Claude Code History
Claude Sessions is a lightweight desktop application built specifically for browsing Claude Code session history. The developer created it as an alternative to claude-devtools, which they found overkill for their use case of frequently revisiting old prompts and responses from small, focused coding sessions.
What It Does
- Displays all sessions across all project folders, organized by project
- Includes search functionality within messages
- Preserves session names from /rename commands
- Handles sessions with 500k+ tokens without performance lag
- Shows compaction summaries
- Supports keyboard navigation
- Runs completely locally — reads data from ~/.claude/projects directory
What It Doesn't Do
The developer intentionally excluded several features to keep the tool focused:
- No cost tracking
- No analytics or dashboards
- No timeline visualization
Technical Details
The application addresses specific pain points the developer experienced with existing solutions. claude-devtools, while feature-rich with cost tracking and timeline views, struggled with large sessions and contained more functionality than needed for simple conversation browsing. Claude Sessions is designed as a stripped-down alternative that prioritizes speed and simplicity for developers who primarily need to reference past Claude Code conversations.
📖 Read the full source: r/ClaudeAI
👀 See Also

Open Source Dashboard Reveals Actual Claude Code Compute Costs
A developer reverse-engineered Claude Code's rate limit formula to build a local dashboard that shows real-time usage percentage, actual dollar costs, burn rate, peak hours, and which skills/hooks are firing. The tool revealed a $100/month plan consumed $13,286 in equivalent API compute in one month.

mnemos: A Persistent Memory Layer for AI Coding Agents (Go, MCP-Native, No Python)
mnemos is a Go-based MCP-native memory layer for AI coding agents. The author built a verifier to measure lift: +40% aggregate on read-side scenarios, but only 53% write-side capture rate after iterative fixes.

Savecraft MCP Server Provides Claude with Accurate Magic: The Gathering Data
Savecraft is an open-source MCP server that parses MTG Arena Player.log locally, syncs game state, and gives Claude access to 12 expert reference modules built on real Magic: The Gathering data. The tool prevents Claude from hallucinating card names and rules by providing access to actual Arena data, draft recommendations from 17Lands, and the complete Scryfall database.

agent-recall: Local SQLite MCP for Persistent Claude Code Memory
agent-recall is an MCP server that gives Claude Code persistent memory across sessions using a local SQLite file. It provides 9 MCP tools for saving entities, relationships, and observations, with LLM-summarized briefings at session start instead of raw data dumps.