codexuse-cli 3.9.1 → 3.9.7
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/README.md +8 -4
- package/dist/index.js +1353 -460
- package/dist/index.js.map +1 -1
- package/dist/server/index.mjs +2544 -709
- package/dist/server/{open-DX6_a9Ta.mjs → open-BWXrZXJl.mjs} +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,8 +24,8 @@ codexuse profile list --compact
|
|
|
24
24
|
codexuse profile current
|
|
25
25
|
codexuse profile add <name> [--skip-login] [--device-auth] [--login=browser|device]
|
|
26
26
|
codexuse profile refresh <name> [--skip-login] [--device-auth] [--login=browser|device]
|
|
27
|
-
codexuse profile switch <name>
|
|
28
|
-
codexuse profile autoroll [--threshold=50-100] [--dry-run] [--watch] [--interval=seconds]
|
|
27
|
+
codexuse profile switch <name> [--restart-codex]
|
|
28
|
+
codexuse profile autoroll [--switch-left=0-50] [--threshold=50-100] [--dry-run] [--watch] [--interval=seconds] [--restart-codex|--no-restart-codex]
|
|
29
29
|
codexuse profile delete <name>
|
|
30
30
|
codexuse profile rename <old> <new>
|
|
31
31
|
|
|
@@ -49,8 +49,12 @@ Notes:
|
|
|
49
49
|
- First CLI run bootstraps storage migration automatically.
|
|
50
50
|
- Accounts Pool settings are shared with the desktop app on the same machine.
|
|
51
51
|
- Accounts Pool API keys and live sessions are runtime-specific (`desktop` vs `daemon`) because each runtime has its own pool store.
|
|
52
|
-
- `profile autoroll`
|
|
53
|
-
- `profile autoroll`
|
|
52
|
+
- `profile autoroll` requires Pro.
|
|
53
|
+
- `profile autoroll` uses live rate-limit usage and switches when current remaining usage is at or below the `% left` threshold.
|
|
54
|
+
- `profile autoroll` defaults to saved desktop auto-roll switch threshold when available (else 5% left).
|
|
55
|
+
- Prefer `--switch-left=NN`; `--threshold=NN` remains as the legacy used-percent alias.
|
|
56
|
+
- `profile autoroll` honors the saved desktop "restart official Codex after auto-switch" setting; override with `--restart-codex` or `--no-restart-codex`.
|
|
57
|
+
- `profile switch <name> --restart-codex` restarts official Codex after a manual switch.
|
|
54
58
|
- `profile autoroll --watch` keeps polling at `--interval` seconds (default `30`).
|
|
55
59
|
- `daemon start` launches the bundled headless Projects/chat server and can also serve Accounts Pool.
|
|
56
60
|
- `daemon start` requires Bun on PATH because the bundled server runs on Bun.
|