@alfe.ai/openclaw-secrets 0.1.7 → 0.1.8

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @alfe.ai/openclaw-secrets@0.1.7 build /home/runner/work/alfe/alfe/packages/openclaw-secrets
2
+ > @alfe.ai/openclaw-secrets@0.1.8 build /home/runner/work/alfe/alfe/packages/openclaw-secrets
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @alfe.ai/openclaw-secrets
2
2
 
3
+ ## 0.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Remove required apiUrl/agentApiKey from openclaw.plugin.json config schema — OpenClaw was rejecting the plugin before code ran because no config was provided. Plugin now uses resolveConfig() internally.
8
+
3
9
  ## 0.1.7
4
10
 
5
11
  ### Patch Changes
@@ -6,19 +6,7 @@
6
6
  "entry": "./dist/index.js",
7
7
  "configSchema": {
8
8
  "type": "object",
9
- "required": [
10
- "apiUrl",
11
- "agentApiKey"
12
- ],
13
- "properties": {
14
- "apiUrl": {
15
- "type": "string",
16
- "description": "Base URL of the Alfe API host (same as ALFE_API_URL used by @alfe.ai/agent-api-client, e.g. https://api.alfe.ai). The client prepends /agent/secrets/* automatically — pass the host root, not the agent subpath."
17
- },
18
- "agentApiKey": {
19
- "type": "string",
20
- "description": "Agent API key (Bearer). agentId and tenantId are resolved server-side from this token — do NOT pass them in config."
21
- }
22
- }
9
+ "additionalProperties": false,
10
+ "properties": {}
23
11
  }
24
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-secrets",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "OpenClaw plugin — per-scope (org/team/project/agent) encrypted secret store. Agents encrypt/decrypt locally with AES-256-GCM; KMS data keys are fetched via the Alfe secrets service.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,8 +12,8 @@
12
12
  },
13
13
  "license": "UNLICENSED",
14
14
  "dependencies": {
15
- "@alfe.ai/config": "0.0.8",
16
- "@alfe.ai/agent-api-client": "0.0.12"
15
+ "@alfe.ai/agent-api-client": "0.0.12",
16
+ "@alfe.ai/config": "0.0.8"
17
17
  },
18
18
  "devDependencies": {
19
19
  "vitest": "^4.0.18"