minivibe 0.2.14 → 0.2.15

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/agent/agent.js +1 -1
  2. package/package.json +1 -1
package/agent/agent.js CHANGED
@@ -681,7 +681,7 @@ function handleLocalMessage(clientWs, msg) {
681
681
  // Log important message types from CLI
682
682
  const sessionPrefix = msg.sessionId ? `[${msg.sessionId.slice(0, 8)}]` : '';
683
683
  if (msg.type === 'claude_message') {
684
- // Content is nested in msg.message.content (not msg.content)
684
+ // Content is nested in msg.message.content
685
685
  const rawContent = msg.message?.content || msg.content;
686
686
  const sender = msg.message?.sender || 'claude';
687
687
  // Handle both string and object content (e.g., encrypted)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minivibe",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "CLI wrapper for Claude Code with mobile remote control via MiniVibe iOS app",
5
5
  "author": "MiniVibe <hello@minivibeapp.com>",
6
6
  "homepage": "https://github.com/minivibeapp/minivibe",