aquaman-plugin 0.8.0 → 0.9.1
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 +3 -2
- package/index.ts +2 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Agent / OpenClaw Gateway Aquaman Proxy
|
|
|
25
25
|
│ (hash-chained log)
|
|
26
26
|
▼
|
|
27
27
|
api.anthropic.com
|
|
28
|
+
api.mistral.ai
|
|
28
29
|
api.telegram.org
|
|
29
30
|
slack.com/api ...
|
|
30
31
|
```
|
|
@@ -42,7 +43,7 @@ openclaw # proxy starts automatically
|
|
|
42
43
|
> `aquaman setup` auto-detects your credential backend. macOS defaults to Keychain,
|
|
43
44
|
> Linux defaults to encrypted file. Override with `--backend`:
|
|
44
45
|
> `aquaman setup --backend keepassxc`
|
|
45
|
-
> Options: `keychain`, `encrypted-file`, `keepassxc`, `1password`, `vault`, `systemd-creds`
|
|
46
|
+
> Options: `keychain`, `encrypted-file`, `keepassxc`, `1password`, `vault`, `systemd-creds`, `bitwarden`
|
|
46
47
|
|
|
47
48
|
Existing plaintext credentials are migrated automatically during setup.
|
|
48
49
|
Run again anytime to migrate new credentials: `aquaman migrate openclaw --auto`
|
|
@@ -55,7 +56,7 @@ Troubleshooting: `aquaman doctor`
|
|
|
55
56
|
|
|
56
57
|
| Key | Type | Default | Description |
|
|
57
58
|
|-----|------|---------|-------------|
|
|
58
|
-
| `backend` | `"keychain"` \| `"1password"` \| `"vault"` \| `"encrypted-file"` \| `"keepassxc"` \| `"systemd-creds"` | `"keychain"` | Credential store |
|
|
59
|
+
| `backend` | `"keychain"` \| `"1password"` \| `"vault"` \| `"encrypted-file"` \| `"keepassxc"` \| `"systemd-creds"` \| `"bitwarden"` | `"keychain"` | Credential store |
|
|
59
60
|
| `services` | `string[]` | `["anthropic", "openai"]` | Services to proxy |
|
|
60
61
|
|
|
61
62
|
> Advanced settings (audit, vault) go in `~/.aquaman/config.yaml`.
|
package/index.ts
CHANGED
|
@@ -67,6 +67,8 @@ const FALLBACK_HOST_MAP = new Map<string, string>([
|
|
|
67
67
|
['api.github.com', 'github'],
|
|
68
68
|
['api.x.ai', 'xai'],
|
|
69
69
|
['gateway.ai.cloudflare.com', 'cloudflare-ai'],
|
|
70
|
+
['api.mistral.ai', 'mistral'],
|
|
71
|
+
['api-inference.huggingface.co', 'huggingface'],
|
|
70
72
|
['slack.com', 'slack'],
|
|
71
73
|
['*.slack.com', 'slack'],
|
|
72
74
|
['discord.com', 'discord'],
|
package/openclaw.plugin.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"properties": {
|
|
15
15
|
"backend": {
|
|
16
16
|
"type": "string",
|
|
17
|
-
"enum": ["keychain", "1password", "vault", "encrypted-file", "keepassxc", "systemd-creds"],
|
|
17
|
+
"enum": ["keychain", "1password", "vault", "encrypted-file", "keepassxc", "systemd-creds", "bitwarden"],
|
|
18
18
|
"default": "keychain",
|
|
19
19
|
"description": "Credential storage backend"
|
|
20
20
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aquaman-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Credential isolation plugin for OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"openclaw": ">=2026.1.0",
|
|
30
|
-
"aquaman-proxy": "0.
|
|
30
|
+
"aquaman-proxy": "0.9.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependenciesMeta": {
|
|
33
33
|
"aquaman-proxy": {
|