From 314ef7a505b9cef3a36cae7caacb00ef417bbb79 Mon Sep 17 00:00:00 2001 From: AgentSeal Date: Tue, 28 Apr 2026 00:38:29 +0200 Subject: [PATCH] Release 0.9.2: fix Cursor cost tracking for v3 format and NULL timestamps --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caa32b2..567d847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.9.2 - 2026-04-28 + +### Fixed +- **Cursor provider reported $0 on newer Cursor versions.** Cursor v3 stores zero token counts in bubbles. Now estimates tokens from text length when counts are zero. Fixes #159. +- **Cursor provider dropped rows with NULL `createdAt`.** The SQL filter silently excluded bubbles without a timestamp. Now includes them with a fallback timestamp. Fixes #163. +- **AgentKv entries with plain string content were skipped.** Not all agentKv content is a JSON array; plain strings are now counted toward usage. +- **Subagent transcripts were not discovered.** Transcripts inside `subagents/` subdirectories are now picked up by the cursor-agent provider. + ## 0.9.1 - 2026-04-25 ### Added diff --git a/package.json b/package.json index 95083ac..bc8593e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeburn", - "version": "0.9.1", + "version": "0.9.2", "description": "See where your AI coding tokens go - by task, tool, model, and project", "type": "module", "main": "./dist/cli.js",