openclaw-overlay-plugin 0.7.37 → 0.7.38

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/HOOK.md +9 -0
  2. package/package.json +5 -1
package/HOOK.md ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ name: openclaw-overlay-hooks
3
+ description: Background automation for the OpenClaw Overlay Network.
4
+ metadata: '{"openclaw": {"events": ["gateway:start"]}}'
5
+ ---
6
+
7
+ # Overlay Hooks
8
+ This file ensures compatibility with the OpenClaw hook pack installer.
9
+ Background tasks are handled programmatically in index.ts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-overlay-plugin",
3
- "version": "0.7.37",
3
+ "version": "0.7.38",
4
4
  "description": "Openclaw BSV Overlay — agent discovery, service marketplace, and micropayments on the BSV blockchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,6 +12,7 @@
12
12
  "src/",
13
13
  "dist/",
14
14
  "SKILL.md",
15
+ "HOOK.md",
15
16
  "README.md"
16
17
  ],
17
18
  "bin": {
@@ -68,6 +69,9 @@
68
69
  "openclaw": {
69
70
  "extensions": [
70
71
  "./index.ts"
72
+ ],
73
+ "hooks": [
74
+ "./index.ts"
71
75
  ]
72
76
  }
73
77
  }