Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ All notable changes to cctrace are documented here. Format follows

## [Unreleased]

## [0.7.0] - 2026-07-11

### Added

- **Tab title includes the session id** — the browser tab now reads
`<project> · <session-prefix> · cctrace` once the session id is known,
so multiple live UIs (or saved snapshots) of the same project are
distinguishable at a glance. Previously only the project name appeared.
- **Session view tails like tail -f** — opening or refreshing a live session
lands on the newest turn; re-renders stick to the bottom while you're
there and never yank the scroll while you're reading history (new activity
Expand Down Expand Up @@ -334,7 +340,8 @@ Initial public release.
- Partial redaction of sensitive headers in captured output.
- Automatic port fallback when the default UI port is busy.

[Unreleased]: https://github.com/thevibeworks/cctrace/compare/v0.6.1...HEAD
[Unreleased]: https://github.com/thevibeworks/cctrace/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/thevibeworks/cctrace/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/thevibeworks/cctrace/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/thevibeworks/cctrace/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/thevibeworks/cctrace/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thevibeworks/cctrace",
"version": "0.6.1",
"version": "0.7.0",
"description": "TLS-intercepting HTTP tracer for Claude Code — captures every API call (messages, OAuth, usage/credits, MCP) with a live categorized web UI",
"type": "module",
"bin": {
Expand Down
4 changes: 4 additions & 0 deletions src/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,10 @@ export function getLiveHtml(port: number, meta: PageMeta = {}): string {
const sid = currentSessionId();
if (sid === ctxSid) return;
ctxSid = sid;
var t = '';
if (META.project) t += META.project;
if (sid) { if (t) t += ' \\u00b7 '; t += sid.slice(0, 8); }
document.title = t ? t + ' \\u00b7 cctrace' : (IS_SNAPSHOT ? 'cctrace' : 'cctrace live');
let html = '';
if (META.project) {
html += '<span class="ctx-proj" title="' + escapeHtml(META.projectPath || META.project) + '">' + escapeHtml(META.project) + '</span>';
Expand Down
Loading