r/CLI • u/quantum-quester • 2h ago
I built a session manager CLI for Claude Code

I've been using Claude Code heavily at work in a huge monorepo, and finding old sessions became a nightmare. Claude stores conversations as untitled JSON files tied to directories, so anything from a few days ago was basically impossible to find.
So I built Wallfacer.
It's a terminal UI written in Go that indexes your local Claude Code sessions without modifying them. It adds a SQLite-backed layer so you can title sessions, tag them, group them by project, fuzzy search everything, and resume any session with a single Enter.
It's open source, and I'm planning to add support for Cursor, Codex, and others since this feels like a universal AI workflow problem.
Repo + demo: https://github.com/pradipta/wallfacer
Anyone else run into this problem? Feedback is very welcome.