@kaitranntt/ccs 7.1.1-dev.3 → 7.1.1-dev.4
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 +31 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -255,6 +255,37 @@ See [docs/websearch.md](./docs/websearch.md) for detailed configuration and trou
|
|
|
255
255
|
|
|
256
256
|
<br>
|
|
257
257
|
|
|
258
|
+
## Remote CLIProxy
|
|
259
|
+
|
|
260
|
+
CCS v7.x supports connecting to remote CLIProxyAPI instances, enabling:
|
|
261
|
+
- **Team sharing**: One CLIProxyAPI server for multiple developers
|
|
262
|
+
- **Cost optimization**: Centralized API key management
|
|
263
|
+
- **Network isolation**: Keep API credentials on a secure server
|
|
264
|
+
|
|
265
|
+
### Quick Setup
|
|
266
|
+
|
|
267
|
+
Configure via dashboard (**Settings > CLIProxy Server**) or CLI flags:
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
ccs gemini --proxy-host 192.168.1.100 --proxy-port 8317
|
|
271
|
+
ccs codex --proxy-host proxy.example.com --proxy-protocol https
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
### CLI Flags
|
|
275
|
+
|
|
276
|
+
| Flag | Description |
|
|
277
|
+
|------|-------------|
|
|
278
|
+
| `--proxy-host` | Remote proxy hostname or IP |
|
|
279
|
+
| `--proxy-port` | Remote proxy port (default: 8317 for HTTP, 443 for HTTPS) |
|
|
280
|
+
| `--proxy-protocol` | `http` or `https` (default: http) |
|
|
281
|
+
| `--proxy-auth-token` | Bearer token for authentication |
|
|
282
|
+
| `--local-proxy` | Force local mode, ignore remote config |
|
|
283
|
+
| `--remote-only` | Fail if remote unreachable (no fallback) |
|
|
284
|
+
|
|
285
|
+
See [Remote Proxy documentation](https://docs.ccs.kaitran.ca/features/remote-proxy) for detailed setup.
|
|
286
|
+
|
|
287
|
+
<br>
|
|
288
|
+
|
|
258
289
|
## Documentation
|
|
259
290
|
|
|
260
291
|
| Topic | Link |
|