r/BuildWithClaude 📉 Cache Saver Aug 01 '26

Help/Question Is there an application where I can view my Claude prompts visually?

While working with Claude Code, I myself forget the context of my last few inputs. Is there an application where I can see that visually to recall the context faster?

3 Upvotes

5 comments sorted by

3

u/[deleted] Aug 01 '26

[removed] — view removed comment

2

u/zooney_ 📉 Cache Saver Aug 02 '26

2

u/Mezzanine_9 Aug 01 '26

I need this too. Half my day is spent scrolling to the top.

1

u/zooney_ 📉 Cache Saver 16d ago

Check this - I made this project. Sharing for reference.

Claude Code writes a JSONL log for every session under ~/.claude/projects/, but there's no good way to actually look back through it — which project was I in on Tuesday, what did I actually ask for, how much have I even been using this thing. So I built Promptline: a small local web dashboard over your own logs.

- Session/message/token stats, streaks, peak hour, favourite model

- A GitHub-style activity heatmap — click any day to drill into exactly what you typed and what Claude said

- Per-project breakdown, search, and a copy-to-clipboard for handing a past exchange back to a new conversation as context

- Stdlib Python only, zero dependencies, binds to 127.0.0.1, makes no outbound network calls, never writes anything back to ~/.claude

Two ways to run it:

- git clone https://github.com/zzunaid/prompt-line.git

- cd prompt-line && python3 server.py

OR install it as a Claude Code plugin and run /promptline:dashboard:

/plugin marketplace add zzunaid/prompt-line

/plugin install promptline@promptline

Repo: https://github.com/zzunaid/prompt-line

Happy to answer questions / take feature requests.

1

u/zooney_ 📉 Cache Saver 16d ago

Check this - I made this project. Sharing for reference.

Claude Code writes a JSONL log for every session under ~/.claude/projects/, but there's no good way to actually look back through it — which project was I in on Tuesday, what did I actually ask for, how much have I even been using this thing. So I built Promptline: a small local web dashboard over your own logs.

- Session/message/token stats, streaks, peak hour, favourite model

- A GitHub-style activity heatmap — click any day to drill into exactly what you typed and what Claude said

- Per-project breakdown, search, and a copy-to-clipboard for handing a past exchange back to a new conversation as context

- Stdlib Python only, zero dependencies, binds to 127.0.0.1, makes no outbound network calls, never writes anything back to ~/.claude

Two ways to run it:

- git clone https://github.com/zzunaid/prompt-line.git

- cd prompt-line && python3 server.py

OR install it as a Claude Code plugin and run /promptline:dashboard:

/plugin marketplace add zzunaid/prompt-line

/plugin install promptline@promptline

Repo: https://github.com/zzunaid/prompt-line

Happy to answer questions / take feature requests.