cctally 1.82.0 → 1.83.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +70 -0
  2. package/README.md +52 -74
  3. package/bin/_cctally_alerts.py +8 -1
  4. package/bin/_cctally_cache.py +963 -149
  5. package/bin/_cctally_config.py +43 -4
  6. package/bin/_cctally_core.py +933 -759
  7. package/bin/_cctally_dashboard.py +157 -47
  8. package/bin/_cctally_dashboard_cache_report.py +13 -6
  9. package/bin/_cctally_dashboard_conversation.py +1 -0
  10. package/bin/_cctally_dashboard_envelope.py +186 -8
  11. package/bin/_cctally_dashboard_share.py +60 -20
  12. package/bin/_cctally_dashboard_sources.py +427 -128
  13. package/bin/_cctally_db.py +605 -128
  14. package/bin/_cctally_doctor.py +413 -28
  15. package/bin/_cctally_five_hour.py +12 -5
  16. package/bin/_cctally_journal.py +2050 -156
  17. package/bin/_cctally_journal_repair.py +519 -0
  18. package/bin/_cctally_milestone_history.py +142 -56
  19. package/bin/_cctally_milestones.py +179 -111
  20. package/bin/_cctally_parser.py +42 -0
  21. package/bin/_cctally_project.py +24 -18
  22. package/bin/_cctally_quota.py +139 -25
  23. package/bin/_cctally_record.py +279 -108
  24. package/bin/_cctally_rederive.py +1052 -0
  25. package/bin/_cctally_reporting.py +58 -53
  26. package/bin/_cctally_setup.py +1 -0
  27. package/bin/_cctally_source_analytics.py +4 -1
  28. package/bin/_cctally_statusline.py +11 -11
  29. package/bin/_cctally_store.py +1039 -31
  30. package/bin/_cctally_sync_week.py +17 -8
  31. package/bin/_cctally_tui.py +421 -54
  32. package/bin/_cctally_update.py +133 -8
  33. package/bin/_cctally_weekrefs.py +14 -0
  34. package/bin/_lib_aggregators.py +10 -6
  35. package/bin/_lib_cache_report.py +101 -9
  36. package/bin/_lib_codex_pools.py +82 -0
  37. package/bin/_lib_conversation_query.py +126 -33
  38. package/bin/_lib_dashboard_sources.py +126 -1
  39. package/bin/_lib_diff_kernel.py +28 -15
  40. package/bin/_lib_doctor.py +342 -4
  41. package/bin/_lib_journal.py +924 -2
  42. package/bin/_lib_jsonl.py +43 -14
  43. package/bin/_lib_pricing.py +140 -21
  44. package/bin/_lib_readme_refresh.py +401 -0
  45. package/bin/_lib_rederive.py +395 -0
  46. package/bin/_lib_share.py +58 -2
  47. package/bin/cctally +56 -8
  48. package/dashboard/static/assets/{index-DJP4gEB7.js → index-3bgCMVHb.js} +52 -52
  49. package/dashboard/static/assets/index-D27EIHEI.css +1 -0
  50. package/dashboard/static/dashboard.html +2 -2
  51. package/package.json +6 -1
  52. package/dashboard/static/assets/index-Dk1nplOz.css +0 -1
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
6
6
  <link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
7
7
  <title>cctally dashboard</title>
8
- <script type="module" crossorigin src="/static/assets/index-DJP4gEB7.js"></script>
9
- <link rel="stylesheet" crossorigin href="/static/assets/index-Dk1nplOz.css">
8
+ <script type="module" crossorigin src="/static/assets/index-3bgCMVHb.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/static/assets/index-D27EIHEI.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cctally",
3
- "version": "1.82.0",
3
+ "version": "1.83.0",
4
4
  "description": "Claude Code usage tracker and local dashboard for Pro/Max subscription limits - weekly cost-per-percent trend, quota forecasts, threshold alerts. ccusage-compatible.",
5
5
  "homepage": "https://github.com/omrikais/cctally",
6
6
  "repository": {
@@ -36,6 +36,7 @@
36
36
  "bin/_cctally_five_hour.py",
37
37
  "bin/_cctally_forecast.py",
38
38
  "bin/_cctally_journal.py",
39
+ "bin/_cctally_journal_repair.py",
39
40
  "bin/_cctally_milestone_history.py",
40
41
  "bin/_cctally_milestones.py",
41
42
  "bin/_cctally_parser.py",
@@ -44,6 +45,7 @@
44
45
  "bin/_cctally_project.py",
45
46
  "bin/_cctally_quota.py",
46
47
  "bin/_cctally_record.py",
48
+ "bin/_cctally_rederive.py",
47
49
  "bin/_cctally_refresh.py",
48
50
  "bin/_cctally_reporting.py",
49
51
  "bin/_cctally_setup.py",
@@ -72,6 +74,7 @@
72
74
  "bin/_lib_codex_conversation_query.py",
73
75
  "bin/_lib_codex_conversation_watch.py",
74
76
  "bin/_lib_codex_hooks.py",
77
+ "bin/_lib_codex_pools.py",
75
78
  "bin/_lib_conversation.py",
76
79
  "bin/_lib_conversation_anon.py",
77
80
  "bin/_lib_conversation_dispatch.py",
@@ -99,7 +102,9 @@
99
102
  "bin/_lib_pricing_check.py",
100
103
  "bin/_lib_pricing_debug.py",
101
104
  "bin/_lib_quota.py",
105
+ "bin/_lib_readme_refresh.py",
102
106
  "bin/_lib_record.py",
107
+ "bin/_lib_rederive.py",
103
108
  "bin/_lib_render.py",
104
109
  "bin/_lib_semver.py",
105
110
  "bin/_lib_share.py",