@alfe.ai/openclaw-chat 0.0.26 → 0.0.27
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/plugin2.cjs +1 -4
- package/dist/plugin2.js +1 -4
- package/package.json +1 -1
package/dist/plugin2.cjs
CHANGED
|
@@ -814,10 +814,7 @@ const plugin = {
|
|
|
814
814
|
const alfeChannel = createAlfeChannelPlugin();
|
|
815
815
|
api.registerChannel(alfeChannel);
|
|
816
816
|
log.info(`Registered channel: ${alfeChannel.id}`);
|
|
817
|
-
if (api.registrationMode
|
|
818
|
-
log.debug("CLI metadata mode — skipping persistent resource init");
|
|
819
|
-
return;
|
|
820
|
-
}
|
|
817
|
+
if (api.registrationMode && api.registrationMode !== "full") return;
|
|
821
818
|
globalThis.__alfeChatPluginActivated = true;
|
|
822
819
|
if (!alreadyActivated) {
|
|
823
820
|
log.info("Chat plugin registering...");
|
package/dist/plugin2.js
CHANGED
|
@@ -817,10 +817,7 @@ const plugin = {
|
|
|
817
817
|
const alfeChannel = createAlfeChannelPlugin();
|
|
818
818
|
api.registerChannel(alfeChannel);
|
|
819
819
|
log.info(`Registered channel: ${alfeChannel.id}`);
|
|
820
|
-
if (api.registrationMode
|
|
821
|
-
log.debug("CLI metadata mode — skipping persistent resource init");
|
|
822
|
-
return;
|
|
823
|
-
}
|
|
820
|
+
if (api.registrationMode && api.registrationMode !== "full") return;
|
|
824
821
|
globalThis.__alfeChatPluginActivated = true;
|
|
825
822
|
if (!alreadyActivated) {
|
|
826
823
|
log.info("Chat plugin registering...");
|