cctally 1.22.1 → 1.22.3
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 +18 -0
- package/bin/_cctally_cache_report.py +1133 -880
- package/bin/_cctally_codex.py +518 -0
- package/bin/_cctally_dashboard.py +3 -3
- package/bin/_cctally_diff.py +240 -0
- package/bin/_cctally_doctor.py +479 -0
- package/bin/_cctally_five_hour.py +1688 -0
- package/bin/_cctally_forecast.py +1979 -0
- package/bin/_cctally_milestones.py +433 -0
- package/bin/_cctally_percent_breakdown.py +199 -0
- package/bin/_cctally_pricing_check.py +393 -0
- package/bin/_cctally_project.py +714 -0
- package/bin/_cctally_record.py +5 -3
- package/bin/_cctally_reporting.py +749 -0
- package/bin/_cctally_setup.py +172 -13
- package/bin/_cctally_statusline.py +630 -0
- package/bin/_cctally_sync_week.py +5 -4
- package/bin/_cctally_weekrefs.py +450 -0
- package/bin/_lib_cache_report.py +938 -0
- package/bin/_lib_pricing_debug.py +182 -0
- package/bin/_lib_subscription_weeks.py +2 -2
- package/bin/cctally +426 -9569
- package/package.json +15 -1
package/bin/_cctally_record.py
CHANGED
|
@@ -109,8 +109,10 @@ What stays in bin/cctally:
|
|
|
109
109
|
``_build_alert_payload_five_hour``, ``eprint``,
|
|
110
110
|
``get_claude_session_entries``, ``_FIVE_HOUR_JITTER_FLOOR_SECONDS``,
|
|
111
111
|
``_RESET_PCT_DROP_THRESHOLD`` — boundary helpers, already-extracted
|
|
112
|
-
subsystems, or constants
|
|
113
|
-
|
|
112
|
+
subsystems, or constants reached through the cctally namespace
|
|
113
|
+
(``_RESET_PCT_DROP_THRESHOLD`` now lives in ``bin/_cctally_weekrefs.py``,
|
|
114
|
+
re-exported on the cctally ns). All accessed via the same shim/``c.X``
|
|
115
|
+
pattern.
|
|
114
116
|
|
|
115
117
|
§5.6 audit on this extraction's monkeypatch surface:
|
|
116
118
|
- ``cmd_record_usage`` — patched via ``monkeypatch.setitem(ns, …)``
|
|
@@ -381,7 +383,7 @@ _logged_window_key_coerce_failure = False
|
|
|
381
383
|
# _cctally_core.HOOK_TICK_LOG_DIR / _PATH / _ROTATED_PATH / _ROTATE_BYTES
|
|
382
384
|
# _cctally_core.HOOK_TICK_THROTTLE_PATH / _LOCK_PATH
|
|
383
385
|
# c._FIVE_HOUR_JITTER_FLOOR_SECONDS — _lib_five_hour.* re-export
|
|
384
|
-
# c._RESET_PCT_DROP_THRESHOLD — bin/
|
|
386
|
+
# c._RESET_PCT_DROP_THRESHOLD — bin/_cctally_weekrefs.py constant (re-exported on cctally ns)
|
|
385
387
|
# c.HOOK_TICK_DEFAULT_THROTTLE_SECONDS
|
|
386
388
|
|
|
387
389
|
|