subfleet 0.0.1__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.
subfleet/__init__.py ADDED
@@ -0,0 +1,15 @@
1
+ """subfleet — cross-account usage/quota + auth-stability monitor.
2
+
3
+ Covers multiple Codex CODEX_HOME lanes (distinct ChatGPT accounts) and Claude
4
+ Code subscription lanes. It makes invisible quota and authentication state
5
+ observable before a session loses work.
6
+
7
+ Design rules:
8
+ - Server responses are ground truth; gauges and local expiry claims lie.
9
+ - Never fabricate a number: anything unreachable is "unknown" plus the last
10
+ observed error, clearly labeled with its observation time.
11
+ - Never writes auth.json: a narrowly gated repair lets the vendor CLI refresh
12
+ its own expired token, while revoked credentials always require re-login.
13
+ """
14
+
15
+ __version__ = "0.1.0"