HackerTrans
トップ新着トレンドコメント過去質問紹介求人

Chronologos

no profile record

投稿

Show HN: LightJJ – Web-Based UI for Jujutsu VCS

github.com
3 ポイント·投稿者 Chronologos·4 か月前·1 コメント

Show HN: A Fast CLI for global fuzzy-search on Claude Code sessions

github.com
1 ポイント·投稿者 Chronologos·5 か月前·0 コメント

Show HN: Cc-sessions – Fast CLI to list and resume Claude Code sessions

github.com
2 ポイント·投稿者 Chronologos·5 か月前·3 コメント

コメント

Chronologos
·5 か月前·議論
it reads the session files that claude writes locally, so works on a single local machine only, and breaks if you move a repos around on the same machine.
Chronologos
·5 か月前·議論
I built this because Claude Code stores sessions in per-project directories (~/.claude/projects/*/), but there's no built-in way to see all your sessions across projects or quickly jump back into one.

cc-sessions solves this by: - Scanning all project directories in parallel (Rust + rayon) - Showing sessions sorted by last modified with relative timestamps - Interactive fzf picker with transcript preview (-i flag) - Project filtering (-p dotfiles) - Fork mode to branch off from any session (-f flag)

Technical details: ~350 lines of Rust, no chrono dependency (hand-rolled ISO 8601 parser to keep the binary small), reads from Claude's sessions-index.json files rather than parsing the .jsonl transcripts directly.

Requires fzf and jaq for the interactive preview.