@alfe.ai/openclaw 0.0.31 → 0.0.32

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 CHANGED
@@ -3194,10 +3194,7 @@ const plugin = {
3194
3194
  for (const tool of tools) api.registerTool(tool);
3195
3195
  log.info(`Registered ${String(tools.length)} integration tools: ${tools.map((t) => t.name).join(", ")}`);
3196
3196
  }
3197
- if (api.registrationMode === "cli-metadata") {
3198
- log.debug("CLI metadata mode — skipping IPC connection init");
3199
- return;
3200
- }
3197
+ if (api.registrationMode && api.registrationMode !== "full") return;
3201
3198
  if (globalThis.__alfeOpenclawPluginActivated === true) {
3202
3199
  log.debug("Alfe OpenClaw Plugin already activated — skipping duplicate");
3203
3200
  return;
package/dist/plugin2.js CHANGED
@@ -3196,10 +3196,7 @@ const plugin = {
3196
3196
  for (const tool of tools) api.registerTool(tool);
3197
3197
  log.info(`Registered ${String(tools.length)} integration tools: ${tools.map((t) => t.name).join(", ")}`);
3198
3198
  }
3199
- if (api.registrationMode === "cli-metadata") {
3200
- log.debug("CLI metadata mode — skipping IPC connection init");
3201
- return;
3202
- }
3199
+ if (api.registrationMode && api.registrationMode !== "full") return;
3203
3200
  if (globalThis.__alfeOpenclawPluginActivated === true) {
3204
3201
  log.debug("Alfe OpenClaw Plugin already activated — skipping duplicate");
3205
3202
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "OpenClaw plugin for Alfe — connects to local gateway daemon via IPC for integration management",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",