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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

## Unreleased

v0.5.1 release candidate notes:
v0.5.2 release candidate notes:

### Fixed

- Fixed Claude Code JSONL metrics for assistant messages that include thinking,
text, and a parallel `tool_use` batch so the report keeps one assistant turn,
multiple tool calls, cache token attribution, and failed `tool_result`
counting aligned. (#243)

## v0.5.1 - 2026-05-19

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<a href="https://goreportcard.com/report/github.com/luoyuctl/agenttrace"><img src="https://goreportcard.com/badge/github.com/luoyuctl/agenttrace" alt="Go Report Card"></a>
<img src="https://img.shields.io/badge/go-1.25+-00ADD8.svg" alt="Go">
<img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License">
<img src="https://img.shields.io/badge/Homebrew-v0.5.1-2bbc8a.svg" alt="Homebrew">
<img src="https://img.shields.io/badge/Homebrew-v0.5.2-2bbc8a.svg" alt="Homebrew">
</p>

<p align="center">
Expand Down Expand Up @@ -64,7 +64,7 @@ agenttrace
That local run found:

```text
AGENTTRACE v0.5.1
AGENTTRACE v0.5.2
```

| Signal | What agenttrace found |
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<a href="https://goreportcard.com/report/github.com/luoyuctl/agenttrace"><img src="https://goreportcard.com/badge/github.com/luoyuctl/agenttrace" alt="Go Report Card"></a>
<img src="https://img.shields.io/badge/go-1.25+-00ADD8.svg" alt="Go">
<img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License">
<img src="https://img.shields.io/badge/Homebrew-v0.5.1-2bbc8a.svg" alt="Homebrew">
<img src="https://img.shields.io/badge/Homebrew-v0.5.2-2bbc8a.svg" alt="Homebrew">
</p>

<p align="center">
Expand Down
4 changes: 2 additions & 2 deletions homebrew/Formula/agenttrace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class Agenttrace < Formula
desc "TUI observability for AI coding agent sessions, cost, latency, and anomalies"
homepage "https://github.com/luoyuctl/agenttrace"
url "https://github.com/luoyuctl/agenttrace.git", branch: "master"
version "0.5.1"
version "0.5.2"
license "MIT"

depends_on "go" => :build
Expand All @@ -12,6 +12,6 @@ def install
end

test do
assert_match "agenttrace v0.5.1", shell_output("#{bin}/agenttrace --version")
assert_match "agenttrace v0.5.2", shell_output("#{bin}/agenttrace --version")
end
end
2 changes: 1 addition & 1 deletion internal/engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/luoyuctl/agenttrace/internal/i18n"
)

const Version = "0.5.1"
const Version = "0.5.2"

// Severity constants for anomaly severity (internal, not i18n).
const (
Expand Down
2 changes: 1 addition & 1 deletion site/demo-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<main>
<header>
<div><div class="brand">agenttrace</div><h1>AI agent session overview</h1><p>Static report generated from local coding-agent traces.</p><p>Static sample data: this local-first snapshot is a representative public artifact, not a full current generated report; current demo output may include incident timelines, baseline comparison fields, and tool authority summaries. No hosted tracing or uploaded logs.</p></div>
<div class="meta">v0.5.1<br>1761 Sessions<br><code>agenttrace --overview -f html</code></div>
<div class="meta">v0.5.2<br>1761 Sessions<br><code>agenttrace --overview -f html</code></div>
</header>
<div class="grid" aria-label="summary metrics">
<div class="metric"><span>Sessions</span><strong>1761</strong><p>1411 Healthy / 334 Warning / 16 Critical</p></div>
Expand Down
4 changes: 2 additions & 2 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"applicationCategory": "DeveloperApplication",
"applicationSubCategory": "AI agent session observability",
"operatingSystem": "macOS, Linux, Windows",
"softwareVersion": "0.5.1",
"softwareVersion": "0.5.2",
"description": "Local-first TUI and report generator for reviewing AI coding agent cost, tokens, health, latency, failures, baseline deltas, incident timelines, and tool authority evidence across historical sessions.",
"keywords": "AI coding agent observability, Claude Code logs, Codex CLI logs, Gemini CLI sessions, Qwen Code sessions, Cline task history, Aider chat history, Cursor exports, Hermes Agent sessions, OpenCode storage, OpenClaw sessions, Pi sessions, Oh My Pi sessions, Kimi CLI traces, Copilot-style logs, generic JSON/JSONL traces, token cost tracking, local-first TUI",
"featureList": [
Expand Down Expand Up @@ -97,7 +97,7 @@ <h1>Inspect local agent logs from a terminal TUI.</h1>
<div class="hero-visual" aria-label="agenttrace real local run dashboard preview">
<div class="window-bar">
<span></span><span></span><span></span>
<strong>agenttrace v0.5.1</strong>
<strong>agenttrace v0.5.2</strong>
</div>
<img src="assets/readme-real-overview.png" alt="agenttrace overview from a real local run with sessions, token cost, latency, and health" />
</div>
Expand Down