@alfe.ai/openclaw-secrets 0.1.4 → 0.1.5

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.4 build /home/runner/work/alfe/alfe/packages/openclaw-secrets
2
+ > @alfe.ai/openclaw-secrets@0.1.5 build /home/runner/work/alfe/alfe/packages/openclaw-secrets
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @alfe.ai/openclaw-secrets
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 6921672: Fix plugin install and activation issues
8
+
9
+ - openclaw-memory-cloud: Add `openclaw.extensions`, refactor to use AgentApiClient instead of raw MemoryClient
10
+ - openclaw-secrets: Add missing `openclaw.extensions` field
11
+ - openclaw-google-chat: Fix poller not starting — registrationMode guard was blocking registerService
12
+ - agent-api-client: Add memory API methods, include Atlassian OAuth clientId/clientSecret in credentials
13
+ - All plugins: Remove registrationMode guard from activate() — OpenClaw handles mode filtering via registerService lifecycle
14
+
15
+ - Updated dependencies [6921672]
16
+ - @alfe.ai/agent-api-client@0.0.11
17
+
3
18
  ## 0.1.4
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,18 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-secrets",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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",
7
7
  "types": "dist/index.d.ts",
8
+ "openclaw": {
9
+ "extensions": [
10
+ "./dist/index.js"
11
+ ]
12
+ },
8
13
  "license": "UNLICENSED",
9
14
  "dependencies": {
10
- "@alfe.ai/agent-api-client": "0.0.10"
15
+ "@alfe.ai/agent-api-client": "0.0.11"
11
16
  },
12
17
  "devDependencies": {
13
18
  "vitest": "^4.0.18"