squeezr-ai 1.16.24 → 1.17.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 +5 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,13 +23,12 @@ squeezr setup # configures env vars, auto-start, and CA trust
|
|
|
23
23
|
squeezr start
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
> **WSL users:** After `squeezr setup` or `squeezr update`, close the terminal and open a new one so the environment variables take effect.
|
|
27
|
-
|
|
28
26
|
`squeezr setup` handles everything automatically:
|
|
29
|
-
- Sets `ANTHROPIC_BASE_URL`, `GEMINI_API_BASE_URL`, `
|
|
27
|
+
- Sets `ANTHROPIC_BASE_URL`, `GEMINI_API_BASE_URL`, `NODE_EXTRA_CA_CERTS`
|
|
28
|
+
- Installs a shell wrapper (PowerShell on Windows, bash/zsh on Linux/macOS/WSL) that auto-refreshes env vars after `squeezr start/setup/update` — no need to restart the terminal
|
|
30
29
|
- Registers auto-start (launchd on macOS, systemd on Linux, Task Scheduler/NSSM on Windows)
|
|
31
30
|
- **Windows:** imports the MITM CA into the Windows Certificate Store (user-level, no admin required) so Rust-based CLIs like Codex trust the proxy's TLS certificates
|
|
32
|
-
- **macOS/Linux:** generates a CA bundle at `~/.squeezr/mitm-ca/bundle.crt` for `SSL_CERT_FILE`
|
|
31
|
+
- **macOS/Linux/WSL:** generates a CA bundle at `~/.squeezr/mitm-ca/bundle.crt` for `SSL_CERT_FILE`
|
|
33
32
|
|
|
34
33
|
## How it works
|
|
35
34
|
|
|
@@ -188,8 +187,8 @@ squeezr version # print version
|
|
|
188
187
|
|
|
189
188
|
## Requirements
|
|
190
189
|
|
|
191
|
-
- Node.js 18+
|
|
192
|
-
- For Codex MITM: `HTTPS_PROXY=http://localhost:8081` (set
|
|
190
|
+
- Node.js 18+ (compatible with Node.js 24)
|
|
191
|
+
- For Codex MITM: set `HTTPS_PROXY=http://localhost:8081` in the terminal where you run Codex (not set globally to avoid interfering with other tools)
|
|
193
192
|
- For local compression: [Ollama](https://ollama.ai) with `qwen2.5-coder:1.5b`
|
|
194
193
|
|
|
195
194
|
## License
|
package/package.json
CHANGED