openclaw-overlay-plugin 0.7.49 → 0.7.50
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/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -593,7 +593,7 @@ export default function register(api) {
|
|
|
593
593
|
// Register a skill-style wake handler
|
|
594
594
|
api.registerHook({
|
|
595
595
|
id: "openclaw-overlay-wake",
|
|
596
|
-
|
|
596
|
+
event: "gateway:start",
|
|
597
597
|
handler: async (ctx) => {
|
|
598
598
|
// Auto-check for registration on startup
|
|
599
599
|
(async () => {
|
package/index.ts
CHANGED
|
@@ -643,7 +643,7 @@ export default function register(api: any) {
|
|
|
643
643
|
// Register a skill-style wake handler
|
|
644
644
|
api.registerHook({
|
|
645
645
|
id: "openclaw-overlay-wake",
|
|
646
|
-
|
|
646
|
+
event: "gateway:start",
|
|
647
647
|
handler: async (ctx: any) => {
|
|
648
648
|
// Auto-check for registration on startup
|
|
649
649
|
(async () => {
|
package/package.json
CHANGED