cctally 1.96.2 → 1.98.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 +41 -0
- package/bin/_cctally_dashboard.py +595 -46
- package/bin/_cctally_dashboard_envelope.py +57 -23
- package/bin/_cctally_dashboard_share.py +25 -5
- package/bin/_cctally_dashboard_sources.py +123 -36
- package/bin/_cctally_db.py +10 -0
- package/bin/_cctally_doctor.py +15 -10
- package/bin/_cctally_journal_repair.py +7 -6
- package/bin/_cctally_parser.py +47 -22
- package/bin/_cctally_tui.py +515 -63
- package/bin/_lib_alert_axes.py +8 -3
- package/bin/_lib_dashboard_sources.py +837 -102
- package/bin/_lib_journal_router.py +14 -0
- package/bin/_lib_share.py +191 -36
- package/bin/_lib_snapshot_cache.py +12 -0
- package/bin/cctally +48 -1
- package/dashboard/static/assets/index-CC8TTZUC.css +1 -0
- package/dashboard/static/assets/index-CChXFhs_.js +97 -0
- package/dashboard/static/dashboard.html +2 -2
- package/package.json +1 -1
- package/dashboard/static/assets/index-BRFMIN18.js +0 -97
- package/dashboard/static/assets/index-Crj7bzyj.css +0 -1
package/bin/_lib_alert_axes.py
CHANGED
|
@@ -55,13 +55,18 @@ AXIS_REGISTRY: "tuple[AlertAxisDescriptor, ...]" = (
|
|
|
55
55
|
"project_budget", "PROJECT", "Project budget", "project_budget_milestones"
|
|
56
56
|
),
|
|
57
57
|
# Per-vendor Codex budget alerts (calendar-period; calendar-period-codex-budgets
|
|
58
|
-
# feature).
|
|
59
|
-
#
|
|
58
|
+
# feature). #556 S3 §4.3: the chip reads "BUDGET", the same as the Claude
|
|
59
|
+
# budget axis, because it names the METRIC. Attribution is the row's source
|
|
60
|
+
# chip, which under All reads "Codex" — a chip reading "CODEX" beside a
|
|
61
|
+
# source chip reading "Codex" said the same thing twice and named neither
|
|
62
|
+
# the metric nor anything the source chip did not already say. The two
|
|
63
|
+
# BUDGET chips stay visually distinct through `chip--codex_budget`, which
|
|
64
|
+
# keeps its own colour. As of #143 it shares the unified vendor-tagged
|
|
60
65
|
# `budget_milestones` table with the Claude `budget` axis; the envelope
|
|
61
66
|
# mapper's `WHERE vendor=?` filter does the row-level split (keyed on the
|
|
62
67
|
# resolved period-window start instant period_start_at, threshold).
|
|
63
68
|
AlertAxisDescriptor(
|
|
64
|
-
"codex_budget", "
|
|
69
|
+
"codex_budget", "BUDGET", "Codex budget", "budget_milestones", vendor="codex"
|
|
65
70
|
),
|
|
66
71
|
)
|
|
67
72
|
|