@bman654/clodex 2.8.5 → 2.9.0
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 +59 -16
- package/dist/cli.js +338 -116
- package/dist/cli.js.map +1 -1
- package/docs/background-agents.md +4 -0
- package/package.json +1 -1
|
@@ -14,6 +14,10 @@ This page explains how to bridge **every** Claude Code process on your machine
|
|
|
14
14
|
- For your own terminal sessions, run **`clodex-claude`** instead of `claude` — same auto-discovery, no port or CA path to hardcode anywhere.
|
|
15
15
|
- Set **`CLODEX_REQUIRE_SERVER=1`** in an isolated routed profile when bypassing Clodex must be impossible. `clodex-claude` then exits with an error if no advertised server passes its process and TCP checks. The default remains fail-open for ordinary installations.
|
|
16
16
|
- A live standalone server has already snapshotted its credentials and account selection. If a wrapper launch sets `CLODEX_OAUTH_ACCOUNT` or a nonblank `CLODEX_KEY_*`, `clodex-claude` warns that the variable is ignored and still launches through that server. Restart the server with the selector, or save the provider credential and refresh its models, before launching without the process-only variable. With no live server these variables pass through unchanged.
|
|
17
|
+
- Provider timeout and retry variables are also server-owned. Set
|
|
18
|
+
`CLODEX_UPSTREAM_IDLE_TIMEOUT_MS`, `CLODEX_UPSTREAM_TOTAL_TIMEOUT_MS`, and
|
|
19
|
+
`CLODEX_UPSTREAM_MAX_RETRIES` when starting `clodex server`; setting them only on a later
|
|
20
|
+
`clodex-claude` invocation does not reconfigure the running server.
|
|
17
21
|
- Proxy-mode wrapper launches remove Anthropic entries from the union of `NO_PROXY` and `no_proxy`, while preserving unrelated bypasses. The manual server output prints the same adjusted values for users who export the proxy settings themselves.
|
|
18
22
|
|
|
19
23
|
## Setup steps
|