usage-cli 0.29.32__py3-none-any.whl
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.
- adapters/__init__.py +5 -0
- adapters/agy.py +68 -0
- adapters/claude.py +215 -0
- adapters/codex.py +209 -0
- adapters/rate_limits.py +76 -0
- adapters/registry.py +17 -0
- adapters/types.py +139 -0
- agy_disk_cache.py +135 -0
- agy_loader.py +416 -0
- agy_quota_probe.py +748 -0
- agy_window_keeper.py +185 -0
- analyzer/__init__.py +5 -0
- analyzer/aggregator.py +139 -0
- analyzer/blocks.py +80 -0
- analyzer/diagnoser.py +638 -0
- analyzer/insights.py +277 -0
- analyzer/persona_loader.py +199 -0
- analyzer/reporter.py +989 -0
- analyzer/subscription.py +108 -0
- burn_rate.py +75 -0
- cache_quarantine.py +50 -0
- codex_disk_cache.py +227 -0
- codex_events.py +136 -0
- codex_fork_replay.py +111 -0
- codex_loader.py +1426 -0
- codex_paths.py +20 -0
- critter_frames.py +26 -0
- discussion_bridge.py +1196 -0
- discussion_cli.py +844 -0
- discussion_session.py +622 -0
- discussion_usage.py +13 -0
- discussion_window.py +955 -0
- disk_cache_common.py +132 -0
- disk_cache_lifecycle.py +39 -0
- doctor.py +452 -0
- fsevents_watch.py +207 -0
- history_disk_cache.py +110 -0
- history_loader.py +416 -0
- i18n.py +88 -0
- jsonl_limits.py +17 -0
- jsonl_utils.py +40 -0
- login_item.py +154 -0
- main.py +387 -0
- menubar.py +1201 -0
- menubar_actions.py +204 -0
- menubar_agy.py +193 -0
- menubar_chrome.py +156 -0
- menubar_menu.py +169 -0
- menubar_notify.py +102 -0
- menubar_popover.py +233 -0
- menubar_prefs.py +118 -0
- menubar_refresh.py +285 -0
- menubar_state.py +1200 -0
- menubar_title.py +157 -0
- menubar_update.py +123 -0
- panel_window.py +78 -0
- panel_window_state.py +159 -0
- panels/__init__.py +186 -0
- panels/base.py +83 -0
- panels/dynamic_height.py +140 -0
- panels/payload.py +178 -0
- panels/web_panel.py +513 -0
- panels/window_drag.py +56 -0
- prefs.py +44 -0
- pricing.py +452 -0
- project_resolver.py +112 -0
- service_status.py +383 -0
- session_hooks.py +1154 -0
- setup_app.py +171 -0
- setup_hook.py +1011 -0
- statusline_settings.py +160 -0
- talent_market_bridge.py +243 -0
- time_utils.py +24 -0
- tui.py +288 -0
- tui_sprite.py +206 -0
- ui/__init__.py +5 -0
- ui/html_report.py +923 -0
- ui/report_scripts.py +251 -0
- ui/report_styles.py +370 -0
- ui/tables.py +888 -0
- update_checker.py +156 -0
- update_gate.py +66 -0
- update_release_notes.py +49 -0
- usage_cli-0.29.32.data/data/share/usage/i18n.json +2427 -0
- usage_cli-0.29.32.dist-info/METADATA +223 -0
- usage_cli-0.29.32.dist-info/RECORD +109 -0
- usage_cli-0.29.32.dist-info/WHEEL +5 -0
- usage_cli-0.29.32.dist-info/entry_points.txt +3 -0
- usage_cli-0.29.32.dist-info/licenses/LICENSE +663 -0
- usage_cli-0.29.32.dist-info/top_level.txt +80 -0
- usage_cli.py +827 -0
- usage_client.py +487 -0
- usage_diagnosis_snapshot.py +143 -0
- usage_dir_sweeper.py +100 -0
- usage_lang.py +79 -0
- usage_logging.py +75 -0
- usage_notifications.py +96 -0
- usage_rate.py +97 -0
- usage_session_resume.py +913 -0
- usage_statusline.py +810 -0
- usage_statusline_agy.py +397 -0
- usage_statusline_forwarder.py +88 -0
- usage_terse_mode.py +223 -0
- usage_terse_reminder.py +151 -0
- win_login_item.py +53 -0
- window_keeper.py +264 -0
- windows_watch.py +443 -0
- wintray.py +2014 -0
- wintray_menu.py +136 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
adapters
|
|
2
|
+
agy_disk_cache
|
|
3
|
+
agy_loader
|
|
4
|
+
agy_quota_probe
|
|
5
|
+
agy_window_keeper
|
|
6
|
+
analyzer
|
|
7
|
+
burn_rate
|
|
8
|
+
cache_quarantine
|
|
9
|
+
codex_disk_cache
|
|
10
|
+
codex_events
|
|
11
|
+
codex_fork_replay
|
|
12
|
+
codex_loader
|
|
13
|
+
codex_paths
|
|
14
|
+
critter_frames
|
|
15
|
+
discussion_bridge
|
|
16
|
+
discussion_cli
|
|
17
|
+
discussion_session
|
|
18
|
+
discussion_usage
|
|
19
|
+
discussion_window
|
|
20
|
+
disk_cache_common
|
|
21
|
+
disk_cache_lifecycle
|
|
22
|
+
doctor
|
|
23
|
+
fsevents_watch
|
|
24
|
+
history_disk_cache
|
|
25
|
+
history_loader
|
|
26
|
+
i18n
|
|
27
|
+
jsonl_limits
|
|
28
|
+
jsonl_utils
|
|
29
|
+
login_item
|
|
30
|
+
main
|
|
31
|
+
menubar
|
|
32
|
+
menubar_actions
|
|
33
|
+
menubar_agy
|
|
34
|
+
menubar_chrome
|
|
35
|
+
menubar_menu
|
|
36
|
+
menubar_notify
|
|
37
|
+
menubar_popover
|
|
38
|
+
menubar_prefs
|
|
39
|
+
menubar_refresh
|
|
40
|
+
menubar_state
|
|
41
|
+
menubar_title
|
|
42
|
+
menubar_update
|
|
43
|
+
panel_window
|
|
44
|
+
panel_window_state
|
|
45
|
+
panels
|
|
46
|
+
prefs
|
|
47
|
+
pricing
|
|
48
|
+
project_resolver
|
|
49
|
+
service_status
|
|
50
|
+
session_hooks
|
|
51
|
+
setup_app
|
|
52
|
+
setup_hook
|
|
53
|
+
statusline_settings
|
|
54
|
+
talent_market_bridge
|
|
55
|
+
time_utils
|
|
56
|
+
tui
|
|
57
|
+
tui_sprite
|
|
58
|
+
ui
|
|
59
|
+
update_checker
|
|
60
|
+
update_gate
|
|
61
|
+
update_release_notes
|
|
62
|
+
usage_cli
|
|
63
|
+
usage_client
|
|
64
|
+
usage_diagnosis_snapshot
|
|
65
|
+
usage_dir_sweeper
|
|
66
|
+
usage_lang
|
|
67
|
+
usage_logging
|
|
68
|
+
usage_notifications
|
|
69
|
+
usage_rate
|
|
70
|
+
usage_session_resume
|
|
71
|
+
usage_statusline
|
|
72
|
+
usage_statusline_agy
|
|
73
|
+
usage_statusline_forwarder
|
|
74
|
+
usage_terse_mode
|
|
75
|
+
usage_terse_reminder
|
|
76
|
+
win_login_item
|
|
77
|
+
window_keeper
|
|
78
|
+
windows_watch
|
|
79
|
+
wintray
|
|
80
|
+
wintray_menu
|