aquaman-proxy 0.10.0 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +6 -11
  2. package/package.json +10 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # aquaman-proxy
2
2
 
3
- The proxy daemon and CLI for [aquaman](https://github.com/tech4242/aquaman) — credential isolation for OpenClaw.
3
+ The proxy daemon and CLI for [aquaman](https://github.com/tech4242/aquaman) — API key protection for OpenClaw. Credentials stay in your vault, never in the agent's memory.
4
4
 
5
5
  ```
6
6
  Agent / OpenClaw Gateway Aquaman Proxy
@@ -34,18 +34,13 @@ This package is the right side — a reverse proxy on a Unix domain socket that
34
34
  ## Quick Start
35
35
 
36
36
  ```bash
37
- npm install -g aquaman-proxy
38
- aquaman setup # stores keys, installs OpenClaw plugin, applies policy defaults
39
- openclaw # proxy starts automatically via plugin
37
+ npm install -g aquaman-proxy # 1. install the proxy CLI
38
+ aquaman setup # 2. store your API keys, install plugin
39
+ openclaw # 3. done — proxy starts automatically
40
40
  ```
41
41
 
42
- Standalone (without OpenClaw):
43
-
44
- ```bash
45
- aquaman init
46
- aquaman credentials add anthropic api_key
47
- aquaman daemon # listens on ~/.aquaman/proxy.sock
48
- ```
42
+ > **Installed via ClawHub?** The proxy is already bundled with the plugin.
43
+ > Run `openclaw aquaman setup` to store your keys.
49
44
 
50
45
  Troubleshooting: `aquaman doctor`
51
46
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aquaman-proxy",
3
- "version": "0.10.0",
4
- "description": "Credential isolation proxy daemon for OpenClaw",
3
+ "version": "0.11.0",
4
+ "description": "API key protection proxy for OpenClaw — credentials stay in your vault, never in the agent's memory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -29,10 +29,16 @@
29
29
  "keywords": [
30
30
  "aquaman",
31
31
  "openclaw",
32
- "openclaw-plugin",
33
32
  "security",
34
33
  "credentials",
35
- "proxy"
34
+ "vault",
35
+ "1password",
36
+ "api-key",
37
+ "secrets",
38
+ "keychain",
39
+ "bitwarden",
40
+ "proxy",
41
+ "api-protection"
36
42
  ],
37
43
  "author": "tech4242",
38
44
  "license": "MIT",