@openape/proxy 0.4.3 → 0.4.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 +10 -0
- package/dist/index.cjs +560 -138
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +538 -138
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -31,6 +31,16 @@ openape-proxy --config config.toml
|
|
|
31
31
|
openape-proxy --config config.toml --dry-run # Log only, no blocking
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
## Daemon mode (long-running, with secret injection)
|
|
35
|
+
|
|
36
|
+
Run as a long-lived per-agent daemon that injects credentials into outgoing HTTPS requests. The agent's process never sees plaintext credentials — the proxy holds them in its own memory and adds them to matching requests after they leave the agent.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
sudo -u agent_iurio openape-proxy --global --port 18789 < ~/.secrets-iurio.toml
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
See [`docs/proxy-secrets.md`](../../docs/proxy-secrets.md) for the trust model and the full setup runbook.
|
|
43
|
+
|
|
34
44
|
## Configuration
|
|
35
45
|
|
|
36
46
|
Configuration uses TOML format:
|