@bman654/clodex 1.3.0 → 2.1.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 +1 -1
- package/dist/chunk-QLGIKUKC.js +1171 -0
- package/dist/chunk-QLGIKUKC.js.map +1 -0
- package/dist/claude-wrapper.js +4 -27
- package/dist/claude-wrapper.js.map +1 -1
- package/dist/cli.js +447 -886
- package/dist/cli.js.map +1 -1
- package/docs/background-agents.md +3 -0
- package/package.json +1 -1
- package/dist/chunk-ZN5X7YFE.js +0 -544
- package/dist/chunk-ZN5X7YFE.js.map +0 -1
package/README.md
CHANGED
|
@@ -153,7 +153,7 @@ ANTHROPIC_BASE_URL=http://127.0.0.1:17645/anthropic
|
|
|
153
153
|
OPENAI_BASE_URL=http://127.0.0.1:17645/openai/v1
|
|
154
154
|
```
|
|
155
155
|
|
|
156
|
-
Use any API key locally; network mode requires the server password. Proxy mode prints `HTTPS_PROXY`, `HTTP_PROXY`, and `
|
|
156
|
+
Use any API key locally; network mode requires the server password. Proxy mode prints `HTTPS_PROXY`, `HTTP_PROXY`, `NODE_EXTRA_CA_CERTS`, and adjusted `NO_PROXY` / `no_proxy` values to export. The adjusted bypass lists preserve unrelated hosts while ensuring `api.anthropic.com` reaches the selective proxy. Do **not** set `ANTHROPIC_BASE_URL` in that mode.
|
|
157
157
|
|
|
158
158
|
Several `clodex server` instances can run at once — each advertises itself in `~/.clodex/server-runtime.json`, and `clodex-claude` prefers a proxy-mode server (newest first) when bridging (see [docs/background-agents.md](docs/background-agents.md)). Pass `--no-discovery` to keep a server out of that file, e.g. a dedicated endpoint you point another tool at.
|
|
159
159
|
|