@voiceclaw/voiceclaw-plugin 1.1.3 → 1.1.4

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.
@@ -101,6 +101,10 @@ export const voiceClawPlugin = {
101
101
  startAccount: async (ctx) => {
102
102
  const account = ctx.account;
103
103
  const logger = pluginLogger;
104
+ // Capture the inbound handler from OpenClaw
105
+ if (ctx.processInbound) {
106
+ handleInbound = ctx.processInbound;
107
+ }
104
108
  logger.info(`VoiceClaw: Starting account "${account.accountId}"...`);
105
109
  try {
106
110
  const sessionToken = await resolveToken(account.accountId, account, logger);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voiceclaw/voiceclaw-plugin",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "OpenClaw channel plugin for VoiceClaw — relay messages between your AI agent and the VoiceClaw iOS/macOS app via Siri",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",