aquaman-plugin 0.11.0 → 0.11.2

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 CHANGED
@@ -46,6 +46,8 @@ openclaw aquaman setup # 2. store your API keys
46
46
  openclaw # 3. done — proxy starts automatically
47
47
  ```
48
48
 
49
+ The `aquaman` proxy binary is bundled as an npm dependency — no separate download or install needed.
50
+
49
51
  > **Using npm?** `npm install -g aquaman-proxy && aquaman setup` does
50
52
  > the same thing. Use this if you prefer managing packages with npm.
51
53
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "aquaman-plugin",
3
3
  "name": "Aquaman — API Key Protection",
4
- "version": "0.11.0",
4
+ "version": "0.11.2",
5
5
  "description": "Protect your API keys, tokens, and secrets — they stay in your vault (Keychain, 1Password, HashiCorp Vault, Bitwarden, and more), never in the agent's memory. Block dangerous API endpoints before credentials are injected. Works with 25+ services across 6 auth modes.",
6
6
  "author": "tech4242",
7
7
  "repository": "https://github.com/tech4242/aquaman",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aquaman-plugin",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "description": "Protect API keys and secrets for OpenClaw — credentials stay in your vault, never in the agent's memory",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -8,7 +8,15 @@
8
8
  "clean": "echo 'Nothing to clean'"
9
9
  },
10
10
  "openclaw": {
11
- "extensions": ["./index.ts"]
11
+ "extensions": ["./index.ts"],
12
+ "compat": {
13
+ "pluginApi": ">=2026.4.7",
14
+ "minGatewayVersion": "2026.4.7"
15
+ },
16
+ "build": {
17
+ "openclawVersion": "2026.4.24",
18
+ "pluginSdkVersion": "2026.4.24"
19
+ }
12
20
  },
13
21
  "keywords": [
14
22
  "aquaman",
@@ -31,7 +39,7 @@
31
39
  "license": "MIT",
32
40
  "dependencies": {
33
41
  "undici": "^7.0.0",
34
- "aquaman-proxy": "0.11.0"
42
+ "aquaman-proxy": "0.11.2"
35
43
  },
36
44
  "peerDependencies": {
37
45
  "openclaw": ">=2026.4.7"
package/src/commands.ts CHANGED
@@ -76,9 +76,7 @@ export async function addCommand(
76
76
  success: true,
77
77
  message: `To add a credential for ${service}/${key}:\n\n` +
78
78
  `Run: openclaw aquaman credentials add ${service} ${key}\n` +
79
- `Or in terminal: aquaman credentials add ${service} ${key}\n\n` +
80
- `Or configure via environment variables:\n` +
81
- ` export AQUAMAN_${service.toUpperCase()}_${key.toUpperCase()}=<your-key>`
79
+ `Or in terminal: aquaman credentials add ${service} ${key}`
82
80
  };
83
81
  }
84
82