@quantiya/codevibe-gemini-plugin 1.0.3 → 1.0.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.
@@ -48,10 +48,14 @@ PLUGIN_DIR="$(dirname "$SCRIPT_DIR")"
48
48
  case "$1" in
49
49
  login|logout|status|reset-device)
50
50
  CORE_CLI="$PLUGIN_DIR/node_modules/@quantiya/codevibe-core/bin/codevibe.js"
51
+ # Also check hoisted location (when installed via @quantiya/codevibe meta-package)
52
+ if [ ! -f "$CORE_CLI" ]; then
53
+ CORE_CLI="$PLUGIN_DIR/../codevibe-core/bin/codevibe.js"
54
+ fi
51
55
  if [ -f "$CORE_CLI" ]; then
52
56
  exec node "$CORE_CLI" "$1"
53
57
  else
54
- echo "Error: codevibe-core not found. Run 'npm install' in the plugin directory first."
58
+ echo "Error: codevibe-core not found. Try reinstalling: npm install -g @quantiya/codevibe"
55
59
  exit 1
56
60
  fi
57
61
  ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-gemini-plugin",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Mobile companion for Gemini CLI - monitor and control your Gemini CLI sessions from your iPhone",
5
5
  "main": "dist/server.js",
6
6
  "bin": {