@eyeclaw/eyeclaw 2.0.10 → 2.0.11

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/package.json +1 -1
  2. package/src/client.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyeclaw/eyeclaw",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "EyeClaw channel plugin for OpenClaw - Connect your local OpenClaw instance to EyeClaw platform",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
package/src/client.ts CHANGED
@@ -87,6 +87,9 @@ export class EyeClawClient {
87
87
  private handleChannelMessage(message: Record<string, unknown>): void {
88
88
  const { type } = message
89
89
 
90
+ // Debug: log all message types
91
+ this.logger.debug(`📩 Channel message: ${JSON.stringify(message)}`)
92
+
90
93
  switch (type) {
91
94
  case 'connected':
92
95
  this.sessionId = message.session_id as string