codexuse-cli 3.1.5 → 3.5.6
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 +17 -3
- package/dist/index.js +2279 -868
- package/dist/index.js.map +1 -1
- package/dist/server/{NodeSqliteClient-BMOt9qz2.mjs → NodeSqliteClient-C3G_wOtl.mjs} +3 -3
- package/dist/server/{SqlClient-CB8oPtuH.mjs → SqlClient-DExl4DLk.mjs} +11 -160
- package/dist/server/{SqlError-3qccgSvc.mjs → SqlError-CJg2cz5q.mjs} +2 -2
- package/dist/server/{SqliteClient-ChChXcv_.mjs → SqliteClient-DG8tJKWU.mjs} +3 -3
- package/dist/server/index.mjs +8273 -6051
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,17 @@ npm install -g codexuse-cli
|
|
|
7
7
|
|
|
8
8
|
Commands:
|
|
9
9
|
```bash
|
|
10
|
+
codexuse account-pool status [--runtime=desktop|daemon] [--state-dir=/abs/path] [--port=NNNN]
|
|
11
|
+
codexuse account-pool enable
|
|
12
|
+
codexuse account-pool disable
|
|
13
|
+
codexuse account-pool routing <least-used|round-robin>
|
|
14
|
+
codexuse account-pool profiles <list|set|add|remove|reset> [names...]
|
|
15
|
+
codexuse account-pool models <list|add|remove|reset> [model-ids...]
|
|
16
|
+
codexuse account-pool reasoning <list|add|remove|reset> [values...]
|
|
17
|
+
codexuse account-pool fast-mode <list|add|remove|reset> [values...]
|
|
18
|
+
codexuse account-pool keys <list|create|revoke> [id]
|
|
19
|
+
codexuse account-pool sessions list [--runtime=desktop|daemon] [--state-dir=/abs/path]
|
|
20
|
+
|
|
10
21
|
codexuse profile list
|
|
11
22
|
codexuse profile list --no-usage
|
|
12
23
|
codexuse profile list --compact
|
|
@@ -25,7 +36,7 @@ codexuse sync status
|
|
|
25
36
|
codexuse sync pull
|
|
26
37
|
codexuse sync push
|
|
27
38
|
|
|
28
|
-
codexuse daemon start --telegram-bot-token=<token> [--project-path=/abs/path]
|
|
39
|
+
codexuse daemon start [--port=NNNN] [--telegram-bot-token=<token>] [--project-path=/abs/path]
|
|
29
40
|
```
|
|
30
41
|
|
|
31
42
|
Notes:
|
|
@@ -36,11 +47,14 @@ Notes:
|
|
|
36
47
|
- On headless/SSH, login defaults to device auth. Override with `--login=browser`.
|
|
37
48
|
- Use `--skip-login` if you already ran `codex login`.
|
|
38
49
|
- First CLI run bootstraps storage migration automatically.
|
|
39
|
-
-
|
|
50
|
+
- Accounts Pool settings are shared with the desktop app on the same machine.
|
|
51
|
+
- Accounts Pool API keys and live sessions are runtime-specific (`desktop` vs `daemon`) because each runtime has its own pool store.
|
|
40
52
|
- `profile autoroll` uses live rate-limit usage and switches when current usage is above threshold.
|
|
41
53
|
- `profile autoroll` defaults to saved desktop auto-roll switch threshold when available (else 95%).
|
|
42
54
|
- `profile autoroll --watch` keeps polling at `--interval` seconds (default `30`).
|
|
43
|
-
- `daemon start` launches the bundled headless Projects/chat server
|
|
55
|
+
- `daemon start` launches the bundled headless Projects/chat server and can also serve Accounts Pool.
|
|
44
56
|
- `daemon start` requires Bun on PATH because the bundled server runs on Bun.
|
|
57
|
+
- Use `--port=NNNN` when another local client should keep one stable Accounts Pool base URL.
|
|
45
58
|
- Set token via `--telegram-bot-token=...` or `CODEXUSE_TELEGRAM_BOT_TOKEN`.
|
|
59
|
+
- Telegram remote control is only enabled when a bot token is provided.
|
|
46
60
|
- `--project-path=/abs/path` auto-registers that path (if needed) and sets it as the default project for new Telegram chats.
|