cctally 1.76.0 → 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 +11 -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 +18 -7
- package/bin/_cctally_db.py +207 -5
- package/bin/_cctally_doctor.py +37 -7
- package/bin/_cctally_parser.py +1 -1
- package/bin/_cctally_quota.py +23 -24
- 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 +3 -3
- package/bin/_lib_doctor.py +53 -4
- 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-CsDAxBT5.js +0 -80
- package/dashboard/static/assets/index-yftBNnLR.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ 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
|
+
|
|
8
19
|
## [1.76.0] - 2026-07-20
|
|
9
20
|
|
|
10
21
|
### Added
|