Claude-replay – Replay your Claude Code sessions
Session replay TUI for Claude Code learning, but limited to existing session logs.
Share Claude Code sessions across a team through an orphan git branch (npm: claude-git-sessions)
Git plumbing ops store sessions in orphan branches without touching your working tree.
Teams using Claude Code for collaborative development
- Session files carry the author's absolute paths. On pull, ccgs rewrites the working dir back to your path so resume actually works — surgically editing only the structural cwd field, not a blind find-and-replace that would happily corrupt the transcript.
- Everything goes through git plumbing (hash-object/commit-tree/update-ref) against a throwaway index. It never touches your working tree, index, or current branch, and it's fine with a dirty tree. It will not git checkout something behind your back.
To try it without installing: `npx claude-git-sessions`. This also incidentally allows you to move a directory and carry the claude code transcripts with it (just push first, then move the directory, then pull)
IMPORTANT CAVEAT: Unless you have a very good security hygiene, your Claude Code sessions are likely full of sensitive information such as environment secrets. Use with caution and avoid using on public repositories. Branches used by ccgs are prefixed by `@ccgs/` so you can easily filter them out.
This project was written by and with Claude Code. This Show HN was not.
(Reposted with URL fixed)
Session replay TUI for Claude Code learning, but limited to existing session logs.
Branch-aware session resuming that Claude Code should've built in.
Branch-aware session resume beats starting fresh every checkout.
No merge conflicts by design since every save creates a unique file.
Git-backed shared memory solves AI team context drift better than vector DB wrappers.
Claude Code session memory via git notes and semantic search—solves real multi-session context collapse.