cctally 1.75.1 → 1.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/bin/_cctally_cache.py +918 -143
- package/bin/_cctally_core.py +12 -1
- package/bin/_cctally_dashboard.py +49 -13
- package/bin/_cctally_dashboard_conversation.py +40 -17
- package/bin/_cctally_dashboard_sources.py +43 -10
- package/bin/_cctally_db.py +207 -5
- package/bin/_cctally_doctor.py +51 -7
- package/bin/_cctally_parser.py +1 -1
- package/bin/_cctally_quota.py +54 -3
- package/bin/_cctally_statusline.py +0 -2
- package/bin/_cctally_transcript.py +4 -4
- package/bin/_cctally_tui.py +6 -34
- package/bin/_lib_codex_conversation_query.py +19 -3
- package/bin/_lib_conversation_query.py +8 -3
- package/bin/_lib_conversation_retention.py +58 -15
- package/bin/_lib_doctor.py +102 -4
- package/bin/_lib_jsonl.py +23 -6
- package/bin/_lib_statusline.py +0 -26
- package/bin/cctally +3 -0
- package/dashboard/static/assets/index-CvcCeA4L.css +1 -0
- package/dashboard/static/assets/index-DLNXAevv.js +87 -0
- package/dashboard/static/dashboard.html +2 -2
- package/package.json +1 -1
- package/dashboard/static/assets/index-fZRxsSf5.js +0 -80
- package/dashboard/static/assets/index-yftBNnLR.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [1.77.0] - 2026-07-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- The dashboard Conversations workspace now browses and reads qualified Claude and Codex conversations through one source-aware reader, with a `Claude | Codex | All` rail selector, collision-safe permalinks and reading state, Codex-native reasoning/tool/thread/live-tail rendering, and source-labelled mixed-provider comparisons and exports that compare only compatible metrics. (#321)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Conversation prose, normalized Codex events, browse rollups, and full-text indexes now live in an independently synchronized `conversations.db`. Core Claude/Codex accounting and quota refreshes use only the compact `cache.db`, so a large, rebuilding, locked, or missing transcript store no longer delays dashboard accounting freshness. Existing transcript state is safely re-derived from local JSONL after upgrade. (#320)
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Read-only accounting attachment from `conversations.db` now enables SQLite URI handling explicitly, so conversation routes work on Python/SQLite builds that otherwise treat the `file:…?mode=ro` URI as a literal path. (#321)
|
|
18
|
+
|
|
19
|
+
## [1.76.0] - 2026-07-20
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- `cctally doctor` now reports `db.reclaimable` when at least 25% of `cache.db` pages are free, with a direct `cctally db vacuum --db cache` remediation. (#315)
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- Codex dashboard Weekly cycles and `$ / 1%` accounting now keep the separately-metered GPT-5.3-Codex-Spark quota pool distinct from the standard seven-day Codex pool, preventing brief Spark sessions from creating phantom standard weeks.
|
|
26
|
+
- Dashboard Codex Weekly cost deltas now use the shared fractional-ratio contract instead of rendering 100× too large, and the Codex **$/1% Trend** table once again aligns Used%, $/1%, and vs-prior values under their matching columns.
|
|
27
|
+
- Claude dashboard quota now keeps updating automatically while Claude Code uses a bracketed context variant such as `opus[1m]`; context-window metadata no longer suppresses the valid account-wide 5-hour and 7-day observations supplied to the status line.
|
|
28
|
+
- Conversation-retention pruning now commits each whole Claude session or Codex conversation separately while retaining its maintenance locks, bounding first-prune WAL growth without exposing partially deleted conversations; a 9.37 GB production-shaped benchmark reduced peak WAL from 889.7 MiB to 28.8 MiB with identical deleted-row counts and FTS integrity. (#315)
|
|
29
|
+
|
|
8
30
|
## [1.75.1] - 2026-07-20
|
|
9
31
|
|
|
10
32
|
### Fixed
|